/* services-web-design-style.css — page-specific styles */
/* ── SERVICE HERO ── */
        .service-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 24px 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 70% 60% at 50% 40%, rgba(105,191,255,0.18) 0%, transparent 70%),
                radial-gradient(circle at 20% 80%, rgba(104,242,213,0.12) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(188,122,255,0.10) 0%, transparent 40%);
            z-index: 0;
        }

        .service-hero-content {
            position: relative;
            z-index: 1;
            max-width: 860px;
        }

        .service-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.78rem;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 24px;
            padding: 8px 20px;
            border-radius: 999px;
            background: rgba(104,242,213,0.08);
            border: 1px solid rgba(104,242,213,0.22);
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .service-eyebrow-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--teal);
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        .service-hero h1 {
            font-size: clamp(2.6rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.0;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #68f2d5 35%, #69bfff 65%, #bc7aff 100%);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 8s ease infinite, fadeUp 1s ease 0.4s both;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .service-hero-lead {
            font-size: 1.18rem;
            color: #b8cfe0;
            max-width: 640px;
            margin: 0 auto 40px;
            line-height: 1.75;
            animation: fadeUp 1s ease 0.6s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 1s ease 0.8s both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--teal), var(--cyan));
            color: #071019;
            font-weight: 800;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: 0 0 28px rgba(104,242,213,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 44px rgba(104,242,213,0.5);
            color: #071019;
        }

        .btn-ghost {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.18);
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-ghost:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(104,242,213,0.4);
            color: var(--teal);
            transform: translateY(-3px);
        }

        /* ── BROWSER MOCKUP ── */
        .hero-visual-wrap {
            margin-top: 64px;
            animation: fadeUp 1.2s ease 1s both;
        }

        .browser-mockup {
            max-width: 780px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.14);
            box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(105,191,255,0.12);
        }

        .browser-bar {
            background: rgba(255,255,255,0.07);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .browser-dots {
            display: flex;
            gap: 6px;
        }

        .browser-dot {
            width: 10px; height: 10px;
            border-radius: 50%;
        }
        .browser-dot:nth-child(1) { background: #ff5f57; }
        .browser-dot:nth-child(2) { background: #febc2e; }
        .browser-dot:nth-child(3) { background: #28c840; }

        .browser-url {
            flex: 1;
            background: rgba(255,255,255,0.06);
            border-radius: 8px;
            padding: 6px 14px;
            font-size: 0.78rem;
            color: #8fa3b8;
            letter-spacing: 0.02em;
        }

        .browser-screen {
            background: linear-gradient(160deg, #0d1e32 0%, #162d45 50%, #101f35 100%);
            height: 320px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated website wireframe inside browser */
        .wireframe-container {
            width: 100%;
            height: 100%;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .wf-nav {
            height: 32px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            gap: 8px;
        }

        .wf-nav-logo {
            width: 60px; height: 10px;
            background: linear-gradient(90deg, var(--teal), var(--cyan));
            border-radius: 4px;
            opacity: 0.8;
        }

        .wf-nav-links {
            display: flex;
            gap: 6px;
            margin-left: auto;
        }

        .wf-nav-link {
            width: 30px; height: 8px;
            background: rgba(255,255,255,0.12);
            border-radius: 3px;
        }

        .wf-hero-block {
            flex: 1;
            background: linear-gradient(135deg, rgba(104,242,213,0.07), rgba(105,191,255,0.07));
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.07);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 24px;
        }

        .wf-h1 { width: 65%; height: 18px; background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1)); border-radius: 4px; animation: shimmer 2.5s ease infinite; }
        .wf-h1-sub { width: 45%; height: 10px; background: rgba(255,255,255,0.1); border-radius: 4px; animation: shimmer 2.5s ease 0.3s infinite; }
        .wf-btn { width: 100px; height: 28px; background: linear-gradient(90deg, var(--teal), var(--cyan)); border-radius: 999px; opacity: 0.75; animation: shimmer 2.5s ease 0.6s infinite; }

        @keyframes shimmer {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .wf-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .wf-card {
            height: 52px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
        }

        /* ── WHAT WE DELIVER ── */
        .service-section {
            padding: 100px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 14px;
            text-align: center;
        }

        .section-headline {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .section-sub {
            text-align: center;
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        /* Deliverables — staggered horizontal cards */
        .deliverables-stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .deliverable-card {
            display: grid;
            grid-template-columns: 64px 1fr auto;
            align-items: center;
            gap: 24px;
            padding: 28px 32px;
            border-radius: 20px;
            background: var(--panel);
            border: 1px solid var(--border);
            backdrop-filter: blur(18px);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .deliverable-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 3px;
            border-radius: 3px 0 0 3px;
            background: linear-gradient(180deg, var(--teal), var(--cyan));
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .deliverable-card:hover {
            transform: translateX(8px);
            border-color: rgba(104,242,213,0.3);
            box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 30px rgba(104,242,213,0.08);
        }

        .deliverable-card:hover::before {
            opacity: 1;
        }

        .deliverable-icon {
            width: 64px; height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(104,242,213,0.12), rgba(105,191,255,0.12));
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: transform 0.35s ease;
            flex-shrink: 0;
        }

        .deliverable-card:hover .deliverable-icon {
            transform: scale(1.08) rotate(-4deg);
        }

        .deliverable-info h3 {
            font-size: 1.15rem;
            color: #fff;
            margin-bottom: 6px;
        }

        .deliverable-info p {
            color: var(--muted);
            font-size: 0.93rem;
            line-height: 1.6;
            margin: 0;
        }

        .deliverable-arrow {
            font-size: 1.2rem;
            color: var(--teal);
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .deliverable-card:hover .deliverable-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* ── PROCESS SECTION ── */
        .process-section {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            position: relative;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(104,242,213,0.5), rgba(105,191,255,0.5), transparent);
            z-index: 0;
        }

        .process-step-card {
            text-align: center;
            padding: 24px 16px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .process-step-card:hover {
            transform: translateY(-8px);
        }

        .step-number {
            width: 80px; height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, rgba(104,242,213,0.15), rgba(105,191,255,0.15));
            border: 1px solid rgba(104,242,213,0.25);
            color: var(--teal);
            position: relative;
            z-index: 1;
        }

        .process-step-card:nth-child(2) .step-number { background: linear-gradient(135deg, rgba(105,191,255,0.15), rgba(188,122,255,0.15)); border-color: rgba(105,191,255,0.25); color: var(--cyan); }
        .process-step-card:nth-child(3) .step-number { background: linear-gradient(135deg, rgba(188,122,255,0.15), rgba(104,242,213,0.15)); border-color: rgba(188,122,255,0.25); color: var(--purple); }
        .process-step-card:nth-child(4) .step-number { background: linear-gradient(135deg, rgba(104,242,213,0.18), rgba(105,191,255,0.18)); border-color: rgba(104,242,213,0.3); color: var(--teal); }

        .process-step-card h4 {
            font-size: 1rem;
            color: #fff;
            margin-bottom: 8px;
        }

        .process-step-card p {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ── TRUST STATS ── */
        .stats-band {
            padding: 60px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            padding: 48px;
            border-radius: 28px;
            background: var(--panel);
            border: 1px solid var(--border);
            backdrop-filter: blur(18px);
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }

        .stat-item:last-child { border-right: none; }

        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--teal), var(--cyan));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.88rem;
            color: var(--muted);
            letter-spacing: 0.05em;
        }

        /* ── WHAT'S INCLUDED GRID ── */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 48px;
        }

        .included-chip {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 20px;
            border-radius: 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            transition: all 0.3s ease;
            font-size: 0.92rem;
            color: #c8dcea;
        }

        .included-chip:hover {
            background: rgba(104,242,213,0.07);
            border-color: rgba(104,242,213,0.22);
            color: #fff;
            transform: translateY(-3px);
        }

        .chip-check {
            width: 28px; height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(104,242,213,0.2), rgba(105,191,255,0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            color: var(--teal);
            flex-shrink: 0;
        }

        /* ── BIG CTA ── */
        .service-cta {
            padding: 80px 24px 120px;
            text-align: center;
            position: relative;
        }

        .cta-card {
            max-width: 760px;
            margin: 0 auto;
            padding: 64px 48px;
            border-radius: 32px;
            background: linear-gradient(135deg, rgba(104,242,213,0.08), rgba(105,191,255,0.08), rgba(188,122,255,0.06));
            border: 1px solid rgba(104,242,213,0.2);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -60px; left: 50%;
            transform: translateX(-50%);
            width: 300px; height: 200px;
            background: radial-gradient(ellipse, rgba(104,242,213,0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-card h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.15;
        }

        .cta-card p {
            color: var(--muted);
            font-size: 1.05rem;
            margin-bottom: 36px;
        }

        .cta-btn-launch {
            display: inline-block;
            padding: 18px 48px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--teal), var(--cyan), var(--purple));
            background-size: 200% 200%;
            color: #071019;
            font-weight: 800;
            font-size: 1rem;
            letter-spacing: 0.04em;
            transition: all 0.4s ease;
            box-shadow: 0 0 36px rgba(104,242,213,0.35);
            animation: gradientShift 6s ease infinite;
        }

        .cta-btn-launch:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 0 60px rgba(104,242,213,0.55);
            color: #071019;
        }

        /* ── FOOTER SIMPLE ── */
        footer {
            padding: 40px 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--muted);
            font-size: 0.88rem;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--teal); }

        .footer-copyright {
            text-align: center;
            color: #5a7085;
            font-size: 0.84rem;
        }

        /* Reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.65s cubic-bezier(.22,.61,.36,1), transform 0.65s cubic-bezier(.22,.61,.36,1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 860px) {
            .process-track { grid-template-columns: repeat(2, 1fr); }
            .process-track::before { display: none; }
            .included-grid { grid-template-columns: 1fr 1fr; }
            .stats-row { grid-template-columns: 1fr; gap: 0; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .stat-item:last-child { border-bottom: none; }
            .deliverable-card { grid-template-columns: 48px 1fr; }
            .deliverable-arrow { display: none; }
        }

        @media (max-width: 540px) {
            .process-track { grid-template-columns: 1fr; }
            .included-grid { grid-template-columns: 1fr; }
            .stats-row { padding: 28px 20px; }
            .cta-card { padding: 40px 24px; }
        }
    

        /* Performance tuning */
        .service-eyebrow,
        .service-eyebrow-dot,
        .service-hero h1,
        .service-hero-lead,
        .hero-cta-group,
        .hero-visual-wrap,
        .wf-h1,
        .wf-h1-sub,
        .wf-btn,
        .cta-btn-primary,
        .cta-btn-web,
        .cta-btn {
            animation: none !important;
        }

        .service-card,
        .feature-card,
        .web-process-card,
        .web-cta-card,
        .browser-mockup,
        .design-showcase-card,
        .web-stack-card {
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .btn-primary,
        .cta-btn-web {
            box-shadow: 0 10px 24px rgba(104,242,213,0.22) !important;
        }

        main > section {
            content-visibility: auto;
            contain-intrinsic-size: 950px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }