/* =============================================================================
   PÁGINAS DE SERVIÇOS - Premium Design
   ============================================================================= */

/* Hero Section */
.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 70px 24px 80px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0a1520 100%);
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(91, 138, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 185, 74, 0.1) 0%, transparent 50%);
}

.service-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235b8a8a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Pentagrama com parallax fixo */
.service-hero-pentagram {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%235b8a8a' stroke-width='0.5'%3E%3Ccircle cx='100' cy='100' r='95'/%3E%3Ccircle cx='100' cy='100' r='85'/%3E%3Cpath d='M100 5 L123.5 69 L195 69 L137 111 L156 175 L100 138 L44 175 L63 111 L5 69 L76.5 69 Z'/%3E%3Cpath d='M100 15 L120 68 L180 68 L132 105 L148 160 L100 128 L52 160 L68 105 L20 68 L80 68 Z'/%3E%3Cline x1='100' y1='5' x2='100' y2='195'/%3E%3Cline x1='5' y1='100' x2='195' y2='100'/%3E%3Cline x1='25' y1='25' x2='175' y2='175'/%3E%3Cline x1='175' y1='25' x2='25' y2='175'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.service-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-hero-content {
    max-width: 600px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(91, 138, 138, 0.15);
    border: 1px solid rgba(91, 138, 138, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.service-hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--reiko-blue);
}

.service-hero-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--reiko-blue);
}

.service-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.service-hero-title span {
    background: linear-gradient(135deg, var(--reiko-gold) 0%, #e8dea0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-desc {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-btn.primary {
    background: var(--reiko-blue);
    color: var(--white);
}

.service-hero-btn.primary:hover {
    background: #4a7979;
    transform: translateY(-2px);
}

.service-hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-hero-btn svg {
    width: 18px;
    height: 18px;
}

.service-hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}
.service-hero-proof i {
    color: #34d399;
    font-size: 13px;
    flex-shrink: 0;
}
.service-hero-proof a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
    padding-bottom: 1px;
    transition: all 0.2s ease;
}
.service-hero-proof a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 640px) {
    .service-hero-proof { font-size: 12.5px; align-items: flex-start; }
}

/* Hero Visual */
.service-hero-visual {
    position: relative;
}

.service-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 138, 138, 0.2) 0%, transparent 50%);
}

/* Hero Visual Area - Right Side */
.service-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-hero-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.service-hero-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-hero-mockup::after {
    content: '• • •';
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.mockup-content {
    margin-top: 24px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Dashboard Mockup - Sistemas Web */
.mockup-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    animation: floatCard 3s ease-in-out infinite;
}

.mockup-card:nth-child(2) { animation-delay: 0.5s; }
.mockup-card:nth-child(3) { animation-delay: 1s; }

.mockup-card-icon {
    width: 32px;
    height: 32px;
    background: rgba(91, 138, 138, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mockup-card-icon i {
    font-size: 14px;
    color: var(--reiko-blue);
}

.mockup-card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.mockup-card-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mockup-chart {
    grid-column: span 3;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
    padding-top: 20px;
}

.mockup-bar {
    flex: 1;
    background: linear-gradient(to top, var(--reiko-blue), rgba(91, 138, 138, 0.3));
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

.mockup-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.mockup-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.mockup-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.mockup-bar:nth-child(4) { height: 90%; animation-delay: 0.4s; }
.mockup-bar:nth-child(5) { height: 70%; animation-delay: 0.5s; }
.mockup-bar:nth-child(6) { height: 85%; animation-delay: 0.6s; }
.mockup-bar:nth-child(7) { height: 55%; animation-delay: 0.7s; }
.mockup-bar:nth-child(8) { height: 75%; animation-delay: 0.8s; }

/* Mobile Mockup - Apps Mobile */
.mockup-phone {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
}

.mockup-phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
}

.mockup-phone-screen {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    height: 100%;
    padding: 50px 16px 24px;
    display: flex;
    flex-direction: column;
}

.mockup-phone-header {
    text-align: center;
    margin-bottom: 24px;
}

.mockup-phone-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-phone-avatar i {
    font-size: 24px;
    color: white;
}

.mockup-phone-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.mockup-phone-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.mockup-phone-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.mockup-phone-card:nth-child(1) { animation-delay: 0.3s; }
.mockup-phone-card:nth-child(2) { animation-delay: 0.5s; }
.mockup-phone-card:nth-child(3) { animation-delay: 0.7s; }

.mockup-phone-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-phone-card-icon i {
    color: white;
    font-size: 16px;
}

.mockup-phone-card-text {
    flex: 1;
}

.mockup-phone-card-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.mockup-phone-card-desc {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

/* AI Mockup - Inteligência Artificial */
.mockup-ai {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-message {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.mockup-message.user {
    align-self: flex-end;
    background: var(--reiko-blue);
    color: white;
    border-bottom-right-radius: 4px;
}

.mockup-message.bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.1);
    color: var(--gray-300);
    border-bottom-left-radius: 4px;
}

.mockup-message:nth-child(1) { animation-delay: 0.2s; }
.mockup-message:nth-child(2) { animation-delay: 0.8s; }
.mockup-message:nth-child(3) { animation-delay: 1.4s; }
.mockup-message:nth-child(4) { animation-delay: 2s; }

.mockup-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 18px;
    width: fit-content;
}

.mockup-typing span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.mockup-typing span:nth-child(2) { animation-delay: 0.2s; }
.mockup-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Website Mockup - Websites & SEO */
.mockup-browser {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mockup-browser-bar {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-browser-dots {
    display: flex;
    gap: 6px;
}

.mockup-browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-browser-dots span:nth-child(1) { background: #ff5f57; }
.mockup-browser-dots span:nth-child(2) { background: #febc2e; }
.mockup-browser-dots span:nth-child(3) { background: #28c840; }

.mockup-browser-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-browser-url i {
    color: #28c840;
}

.mockup-browser-content {
    padding: 24px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 280px;
}

.mockup-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mockup-site-logo {
    width: 100px;
    height: 24px;
    background: linear-gradient(90deg, var(--reiko-blue), var(--reiko-gold));
    border-radius: 4px;
}

.mockup-site-nav {
    display: flex;
    gap: 16px;
}

.mockup-site-nav span {
    width: 50px;
    height: 8px;
    background: #dee2e6;
    border-radius: 4px;
}

.mockup-site-hero {
    text-align: center;
    padding: 40px 20px;
}

.mockup-site-title {
    width: 200px;
    height: 20px;
    background: #343a40;
    border-radius: 4px;
    margin: 0 auto 12px;
}

.mockup-site-text {
    width: 280px;
    height: 8px;
    background: #adb5bd;
    border-radius: 4px;
    margin: 0 auto 8px;
}

.mockup-site-btn {
    width: 120px;
    height: 36px;
    background: var(--reiko-blue);
    border-radius: 8px;
    margin: 20px auto 0;
}

/* Hosting Mockup - Hospedagem */
.mockup-server {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-server-rack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-server-unit {
    background: linear-gradient(90deg, #2d3748 0%, #1a202c 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: serverPulse 2s ease-in-out infinite;
}

.mockup-server-unit:nth-child(2) { animation-delay: 0.3s; }
.mockup-server-unit:nth-child(3) { animation-delay: 0.6s; }

.mockup-server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-server-icon {
    width: 36px;
    height: 36px;
    background: rgba(91, 138, 138, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-server-icon i {
    color: var(--reiko-blue);
    font-size: 16px;
}

.mockup-server-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.mockup-server-status {
    color: var(--gray-400);
    font-size: 12px;
}

.mockup-server-lights {
    display: flex;
    gap: 6px;
}

.mockup-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.mockup-light.green { background: #28c840; }
.mockup-light.yellow { background: #febc2e; animation-delay: 0.3s; }
.mockup-light.blue { background: #007aff; animation-delay: 0.6s; }

.mockup-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
}

.mockup-metric-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mockup-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--reiko-blue);
}

.mockup-metric-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.mockup-metric-fill {
    height: 100%;
    background: var(--reiko-blue);
    border-radius: 2px;
    animation: fillBar 2s ease-out forwards;
}

/* Floating Stats Cards on Mockup */
.service-hero-stats {
    display: none; /* Hidden - replaced by floating cards */
}

.floating-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 80px;
    left: -40px;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    bottom: 20px;
    right: 20px;
    animation-delay: 2s;
}

.floating-card-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--reiko-blue);
    line-height: 1;
}

.floating-card-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Floating card with icon */
.floating-card.with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(91, 138, 138, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon i {
    font-size: 18px;
    color: var(--reiko-blue);
}

/* ====== POSIÇÕES ESPECÍFICAS POR PÁGINA ====== */

/* APPS MOBILE - Cards posicionados mais próximos do celular */
.mockup-phone ~ .floating-stats .floating-card:nth-child(1) {
    top: 40px;
    right: auto;
    left: 20px;
}

.mockup-phone ~ .floating-stats .floating-card:nth-child(2) {
    top: auto;
    bottom: 180px;
    left: auto;
    right: 80px;
}

.mockup-phone ~ .floating-stats .floating-card:nth-child(3) {
    bottom: 50px;
    left: 30px;
    right: auto;
}

/* WEBSITES & SEO - Browser mockup */
.mockup-browser ~ .floating-stats .floating-card:nth-child(1) {
    top: 130px;
    right: auto;
    left: -80px;
}

.mockup-browser ~ .floating-stats .floating-card:nth-child(2) {
    top: 60px;
    right: -50px;
    left: auto;
    bottom: auto;
}

.mockup-browser ~ .floating-stats .floating-card:nth-child(3) {
    bottom: -30px;
    right: 80px;
    left: auto;
}

/* SISTEMAS WEB - Dashboard mockup */
.service-hero-mockup ~ .floating-stats .floating-card:nth-child(1) {
    top: -20px;
    right: 40px;
    left: auto;
}

.service-hero-mockup ~ .floating-stats .floating-card:nth-child(2) {
    top: 160px;
    left: -60px;
    right: auto;
    bottom: auto;
}

.service-hero-mockup ~ .floating-stats .floating-card:nth-child(3) {
    bottom: 40px;
    right: -40px;
    left: auto;
}

/* HOSPEDAGEM - Server mockup */
.mockup-server ~ .floating-stats .floating-card:nth-child(1) {
    top: 20px;
    left: -50px;
    right: auto;
}

.mockup-server ~ .floating-stats .floating-card:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
    left: auto;
    bottom: auto;
    animation: floatCard 4s ease-in-out infinite 1s;
}

.mockup-server ~ .floating-stats .floating-card:nth-child(3) {
    bottom: 30px;
    left: 20px;
    right: auto;
}

/* INTELIGÊNCIA ARTIFICIAL - AI Chat mockup */
.mockup-ai ~ .floating-stats .floating-card:nth-child(1) {
    top: -10px;
    right: 20px;
    left: auto;
}

.mockup-ai ~ .floating-stats .floating-card:nth-child(2) {
    top: calc(40% + 50px);
    left: -70px;
    right: auto;
    bottom: auto;
}

.mockup-ai ~ .floating-stats .floating-card:nth-child(3) {
    bottom: 20px;
    right: -30px;
    left: auto;
}

.service-hero-stat {
    text-align: center;
}

.service-hero-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--reiko-blue);
    line-height: 1;
}

.service-hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

.service-stat {
    text-align: center;
    padding: 0 16px;
}

.service-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--reiko-blue);
    line-height: 1;
}

.service-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Tech Stack */
.service-hero-tech {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-hero-tech-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-tech-items {
    display: flex;
    gap: 8px;
}

.service-hero-tech-item {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
}

/* Problems Section - Design Premium */
.service-problems {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.service-problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
}

.service-problems::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-problems-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.service-problems-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.service-problems-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50px;
}

.service-problems-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.service-problems-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
}

.service-problems-title span {
    color: #ef4444;
    position: relative;
}

.service-problems-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(239, 68, 68, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.service-problems-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-problem-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #f87171);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow:
        0 20px 40px rgba(239, 68, 68, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05);
}

.service-problem-card:hover::before {
    transform: scaleX(1);
}

.service-problem-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
}

.service-problem-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    border: 1px dashed rgba(239, 68, 68, 0.3);
}

.service-problem-icon svg {
    width: 28px;
    height: 28px;
    color: #ef4444;
}

.service-problem-icon i {
    font-size: 26px;
    color: #ef4444;
}

.service-problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.service-problem-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Solutions Section - Design Premium (Claro para alternar com Features escuro) */
.service-solutions {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafa 100%);
    overflow: hidden;
}

.service-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--reiko-blue), transparent);
}

.service-solutions::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 138, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-solutions-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235b8a8a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.service-solutions-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-solutions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.service-solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--reiko-blue);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(91, 138, 138, 0.1);
    border: 1px solid rgba(91, 138, 138, 0.2);
    border-radius: 50px;
    text-align: center;
}

.service-solutions-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.service-solutions-title span {
    background: linear-gradient(135deg, var(--reiko-gold) 0%, #b8a93d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-solutions-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.service-solution-card {
    position: relative;
    display: flex;
    gap: 24px;
    padding: 36px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reiko-blue), var(--reiko-gold));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--reiko-blue);
    box-shadow:
        0 20px 40px rgba(91, 138, 138, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.05);
}

.service-solution-card:hover::before {
    transform: scaleY(1);
}

.service-solution-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--reiko-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
}

.service-solution-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-solution-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-solution-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 138, 138, 0.15) 0%, rgba(91, 138, 138, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(91, 138, 138, 0.15);
    transition: all 0.3s ease;
}

.service-solution-card:hover .service-solution-icon {
    background: linear-gradient(135deg, rgba(91, 138, 138, 0.25) 0%, rgba(91, 138, 138, 0.1) 100%);
    border-color: rgba(91, 138, 138, 0.3);
}

.service-solution-icon i {
    font-size: 26px;
    color: var(--reiko-blue);
}

.service-solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-solution-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Features Section */
.service-features {
    padding: 100px 24px;
    background: var(--gray-900);
}

.service-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-features-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--reiko-gold);
    margin-bottom: 16px;
    text-align: center;
}

.service-features-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 48px;
    text-align: center;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--reiko-blue);
    transform: translateY(-4px);
}

.service-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 138, 138, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
}

.service-feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--reiko-blue);
}

.service-feature-icon i {
    font-size: 24px;
    color: var(--reiko-blue);
}

.service-feature {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--reiko-blue);
    transform: translateY(-4px);
}

.service-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-feature p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-feature-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Process Section - Design Premium */
.service-process {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--reiko-blue), transparent);
}

.service-process::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 138, 138, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.service-process-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.service-process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--reiko-blue);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(91, 138, 138, 0.1);
    border-radius: 50px;
    text-align: center;
}

.service-process-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.service-process-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.service-process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.service-process-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--reiko-blue) 0%, var(--reiko-gold) 100%);
    border-radius: 3px;
}

.service-process-step {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 16px;
}

.service-process-number {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--reiko-blue);
    border-radius: 50%;
    margin: 0 auto 28px;
    font-size: 26px;
    font-weight: 700;
    color: var(--reiko-blue);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(91, 138, 138, 0.15);
}

.service-process-step:hover .service-process-number {
    background: var(--reiko-blue);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(91, 138, 138, 0.3);
}

.service-process-content {
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-process-step:hover .service-process-content {
    border-color: var(--reiko-blue);
    box-shadow: 0 12px 32px rgba(91, 138, 138, 0.1);
}

.service-process-step h3,
.service-process-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-process-step p,
.service-process-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 200px;
    margin: 0 auto;
}

/* Technologies Section */
.service-tech {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    background: var(--gray-50);
}

.service-tech-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-tech-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.service-tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.service-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.service-tech-item:hover {
    border-color: var(--reiko-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-tech-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-tech-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

/* Tech Logos Grid - Nova versão com ícones */
.service-tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    min-width: 120px;
}

.tech-logo:hover {
    border-color: var(--reiko-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.tech-logo svg {
    width: 40px;
    height: 40px;
}

.tech-logo i {
    font-size: 36px;
}

.tech-logo span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Cores específicas para logos de tecnologias */
.tech-logo--openai svg,
.tech-logo--openai i { color: #10a37f; }

.tech-logo--claude svg,
.tech-logo--claude i { color: #cc785c; }

.tech-logo--langchain svg,
.tech-logo--langchain i { color: #1c3c3c; }

.tech-logo--pinecone svg,
.tech-logo--pinecone i { color: #000000; }

.tech-logo--aws svg,
.tech-logo--aws i { color: #ff9900; }

.tech-logo--gcloud svg,
.tech-logo--gcloud i { color: #4285f4; }

.tech-logo--react svg,
.tech-logo--react i { color: #61dafb; }

.tech-logo--node svg,
.tech-logo--node i { color: #339933; }

.tech-logo--typescript svg,
.tech-logo--typescript i { color: #3178c6; }

.tech-logo--python svg,
.tech-logo--python i { color: #3776ab; }

.tech-logo--nextjs svg,
.tech-logo--nextjs i { color: #000000; }

.tech-logo--vue svg,
.tech-logo--vue i { color: #4fc08d; }

.tech-logo--angular svg,
.tech-logo--angular i { color: #dd0031; }

.tech-logo--postgres svg,
.tech-logo--postgres i { color: #4169e1; }

.tech-logo--mongodb svg,
.tech-logo--mongodb i { color: #47a248; }

.tech-logo--docker svg,
.tech-logo--docker i { color: #2496ed; }

.tech-logo--kubernetes svg,
.tech-logo--kubernetes i { color: #326ce5; }

.tech-logo--flutter svg,
.tech-logo--flutter i { color: #02569b; }

.tech-logo--swift svg,
.tech-logo--swift i { color: #f05138; }

.tech-logo--kotlin svg,
.tech-logo--kotlin i { color: #7f52ff; }

.tech-logo--firebase svg,
.tech-logo--firebase i { color: #ffca28; }

.tech-logo--wordpress svg,
.tech-logo--wordpress i { color: #21759b; }

.tech-logo--php svg,
.tech-logo--php i { color: #777bb4; }

.tech-logo--laravel svg,
.tech-logo--laravel i { color: #ff2d20; }

.tech-logo--mysql svg,
.tech-logo--mysql i { color: #4479a1; }

.tech-logo--redis svg,
.tech-logo--redis i { color: #dc382d; }

.tech-logo--nginx svg,
.tech-logo--nginx i { color: #009639; }

.tech-logo--cloudflare svg,
.tech-logo--cloudflare i { color: #f38020; }

.tech-logo--linux svg,
.tech-logo--linux i { color: #fcc624; }

.tech-logo--cpanel svg,
.tech-logo--cpanel i { color: #ff6c2c; }

.tech-logo--google svg,
.tech-logo--google i { color: #4285f4; }

.tech-logo--analytics svg,
.tech-logo--analytics i { color: #e37400; }

.tech-logo--stripe svg,
.tech-logo--stripe i { color: #635bff; }

.tech-logo--whatsapp svg,
.tech-logo--whatsapp i { color: #25d366; }

.tech-logo--slack svg,
.tech-logo--slack i { color: #4a154b; }

@media (max-width: 768px) {
    .service-tech-logos {
        gap: 12px;
    }

    .tech-logo {
        padding: 16px 20px;
        min-width: 100px;
    }

    .tech-logo svg {
        width: 32px;
        height: 32px;
    }

    .tech-logo i {
        font-size: 28px;
    }

    .tech-logo span {
        font-size: 12px;
    }
}

/* FAQ Section */
.service-faq {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.service-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.service-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-faq-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--reiko-blue);
    margin-bottom: 16px;
}

.service-faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 60px;
}

.service-faq-list,
.service-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-faq-item:hover {
    border-color: var(--reiko-blue);
}

.service-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.service-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.service-faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.service-faq-question svg,
.service-faq-question i {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-faq-question i {
    font-size: 16px;
}

.service-faq-item.active .service-faq-question svg,
.service-faq-item.active .service-faq-question i {
    transform: rotate(180deg);
    color: var(--reiko-blue);
}

.service-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-faq-item.active .service-faq-answer {
    max-height: 500px;
}

.service-faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section */
.service-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0a1520 100%);
    text-align: center;
}

.service-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.service-cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 138, 138, 0.2);
    border-radius: 24px;
    margin: 0 auto 32px;
}

.service-cta-icon svg {
    width: 40px;
    height: 40px;
    color: var(--reiko-blue);
}

.service-cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--reiko-gold);
    margin-bottom: 16px;
}

.service-cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.service-cta-title span {
    background: linear-gradient(135deg, var(--reiko-gold) 0%, #e8dea0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-cta-desc {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta-btn.primary {
    background: var(--reiko-blue);
    color: var(--white);
}

.service-cta-btn.primary:hover {
    background: #4a7979;
    transform: translateY(-2px);
}

.service-cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-cta-btn.secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.service-cta-btn svg,
.service-cta-btn i {
    width: 20px;
    height: 20px;
}

.service-cta-btn i {
    font-size: 20px;
}

/* CTA button without .primary/.secondary class */
.service-cta-btn:not(.primary):not(.secondary) {
    background: #25D366;
    color: var(--white);
}

.service-cta-btn:not(.primary):not(.secondary):hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .service-hero-cta {
        justify-content: center;
    }

    .service-hero-tech {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        justify-content: center;
    }

    .service-problems-grid {
        grid-template-columns: 1fr;
    }

    .service-solutions-grid {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .service-process-timeline::before {
        display: none;
    }

    .service-process-step {
        text-align: left;
        display: flex;
        gap: 24px;
        padding: 0;
    }

    .service-process-number {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-desc {
        font-size: 16px;
    }

    .service-hero-badge {
        padding: 8px 16px;
    }

    .service-hero-badge span {
        font-size: 12px;
    }

    .service-hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .service-hero-stat-value {
        font-size: 28px;
    }

    .service-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .service-hero-tech {
        flex-direction: column;
        gap: 8px;
    }

    .service-hero-tech-items {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Problems */
    .service-problems {
        padding: 60px 20px;
    }

    .service-problems-title {
        font-size: 28px;
    }

    .service-problem-card {
        padding: 24px 20px;
    }

    /* Solutions */
    .service-solutions {
        padding: 60px 20px;
    }

    .service-solutions-title {
        font-size: 28px;
    }

    .service-solution-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }

    .service-solution-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Features */
    .service-features {
        padding: 60px 20px;
    }

    .service-features-title {
        font-size: 28px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-feature-card {
        padding: 24px 20px;
    }

    /* Process */
    .service-process {
        padding: 60px 20px;
    }

    .service-process-title {
        font-size: 28px;
    }

    .service-process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .service-process-number {
        margin: 0 auto;
        width: 56px;
        height: 56px;
    }

    /* Tech */
    .service-tech {
        padding: 48px 20px;
    }

    .service-tech-grid {
        gap: 12px;
    }

    .service-tech-item {
        padding: 16px 20px;
    }

    /* FAQ */
    .service-faq {
        padding: 60px 20px;
    }

    .service-faq-title {
        font-size: 28px;
    }

    .service-faq-question {
        padding: 20px;
    }

    .service-faq-question h3 {
        font-size: 15px;
    }

    .service-faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    /* CTA */
    .service-cta {
        padding: 60px 20px;
    }

    .service-cta-title {
        font-size: 28px;
    }

    .service-cta-desc {
        font-size: 16px;
    }

    .service-cta-icon {
        width: 64px;
        height: 64px;
    }

    .service-cta-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 90px 16px 48px;
    }

    .service-hero-title {
        font-size: 28px;
    }

    .service-hero-badge {
        padding: 6px 12px;
    }

    .service-hero-badge svg {
        width: 16px;
        height: 16px;
    }

    .service-hero-badge span {
        font-size: 11px;
    }

    .service-problems,
    .service-solutions,
    .service-features,
    .service-process,
    .service-faq,
    .service-cta {
        padding: 48px 16px;
    }

    .service-problems-title,
    .service-solutions-title,
    .service-features-title,
    .service-process-title,
    .service-faq-title,
    .service-cta-title {
        font-size: 24px;
    }

    .service-tech {
        padding: 40px 16px;
    }

    .service-tech-item {
        padding: 14px 16px;
    }

    .service-tech-item img {
        width: 36px;
        height: 36px;
    }

    .service-tech-item span {
        font-size: 13px;
    }
}

/* Animations for Mockups */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes serverPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--fill-width, 80%); }
}

/* Responsive for Mockups */
@media (max-width: 1024px) {
    .service-hero-visual {
        order: -1;
    }

    .mockup-phone {
        width: 240px;
        height: 420px;
    }

    .mockup-dashboard {
        grid-template-columns: 1fr 1fr;
    }

    .mockup-chart {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .service-hero-mockup {
        padding: 16px;
    }

    .mockup-content {
        min-height: 250px;
    }

    .mockup-phone {
        width: 220px;
        height: 380px;
    }

    .mockup-phone::before {
        width: 60px;
        height: 20px;
    }

    .mockup-browser-content {
        min-height: 220px;
        padding: 16px;
    }

    .mockup-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero-mockup,
    .mockup-phone,
    .mockup-browser {
        display: none;
    }

    .service-hero-visual {
        display: none;
    }
}

@media (max-width: 1024px) {
    .floating-card {
        padding: 10px 14px;
    }

    .floating-card-value {
        font-size: 20px;
    }

    .floating-card-label {
        font-size: 10px;
    }

    .floating-card:nth-child(1) {
        right: -10px;
    }

    .floating-card:nth-child(2) {
        left: -20px;
    }
}

@media (max-width: 768px) {
    .floating-stats {
        display: none;
    }
}
