    :root {
      --bg: #ffffff;
      --bg-soft: #f3f6fc;
      --surface: #ffffff;
      --surface-2: #eef3fb;
      --border: rgba(15,23,42,0.10);
      --text: #0f1b33;
      --muted: #5a6478;
      --brand: #2f80e0;
      --brand-2: #1b52c4;
      --accent: #10a9bd;
      --maple: #10a9bd;
      --grad: linear-gradient(120deg, #1b52c4 0%, #1f7fd6 50%, #17b3c7 100%);
      --radius: 18px;
      --shadow: 0 20px 45px -22px rgba(20,40,90,0.28);
      --maxw: 1180px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--bg); color: var(--text); line-height: 1.6;
      overflow-x: hidden; -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, .logo, .num { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
    a { color: inherit; text-decoration: none; }
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
    .grad-text { color: var(--brand); }

    .bg-orbs { display: none; }
    .bg-orbs-disabled { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
    .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.14; }
    .orb.a { width: 520px; height: 520px; background: #2f80e0; top: -120px; left: -80px; }
    .orb.b { width: 480px; height: 480px; background: #1b52c4; top: 30%; right: -140px; opacity: 0.10; }
    .orb.c { width: 420px; height: 420px; background: #1fc8d8; bottom: -160px; left: 30%; opacity: 0.10; }

    /* Announcement bar */
    .announce {
      background: #1b52c4;
      border-bottom: 1px solid rgba(255,255,255,.14); font-size: .85rem; color: #ffffff;
    }
    .announce .container { display: flex; align-items: center; justify-content: center; gap: 10px; height: 40px; text-align: center; }
    .announce .leaf { color: var(--maple); font-size: 1rem; }
    .announce strong { font-weight: 600; }

    /* Nav */
    header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(233,239,249,0.85); border-bottom: 1px solid var(--border); transition: border-color .3s, background .3s, box-shadow .3s; }
    header.scrolled { border-color: var(--border); background: rgba(227,234,247,0.94); box-shadow: 0 8px 26px -18px rgba(20,40,90,0.55); }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; color: var(--text); }
    .logo img { height: 58px; width: auto; display: block; }
    footer .logo img { height: 84px; }
    .nav-links { display: flex; gap: 28px; align-items: center; }
    .nav-links a { color: #3c4762; font-size: .95rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--brand); }
    /* Buttons keep their own text colour even inside the nav (higher specificity than .nav-links a) */
    .nav-links a.btn-primary { color: #fff; }
    .nav-links a.btn-ghost { color: var(--text); }

    /* Services dropdown */
    .nav-item { position: relative; }
    .nav-item .drop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
    .nav-item .drop-toggle .chev { width: 15px; height: 15px; stroke: currentColor; transition: transform .25s; }
    .nav-item:hover .drop-toggle .chev, .nav-item.open .drop-toggle .chev { transform: rotate(180deg); }
    .dropdown {
      position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
      width: 620px; max-width: calc(100vw - 40px); background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
      padding: 8px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s; z-index: 60;
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    }
    .dropdown .dd-all { grid-column: 1 / -1; }
    .dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
    .nav-item:hover .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .dropdown a { display: flex !important; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 11px; color: var(--text) !important; transition: background .18s; }
    .dropdown a:hover { background: var(--surface-2); }
    .dropdown a .di { width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; background: rgba(47,128,224,.12); border: 1px solid var(--border); }
    .dropdown a .di svg { width: 18px; height: 18px; stroke: var(--brand); }
    .dropdown a .dt { display: flex; flex-direction: column; line-height: 1.25; }
    .dropdown a .dt strong { font-weight: 600; font-size: .92rem; }
    .dropdown a .dt small { color: var(--muted); font-size: .76rem; }
    .dropdown .dd-all { justify-content: center; margin-top: 4px; border-top: 1px solid var(--border); border-radius: 0 0 11px 11px; color: var(--brand) !important; font-weight: 600; font-size: .88rem; }
    .btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font-family: inherit; font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: 12px; transition: transform .2s, box-shadow .2s, background .2s; }
    .btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 30px -10px rgba(47,128,224,.6); }
    .btn-primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(47,128,224,.8); }
    .btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
    .btn-ghost:hover { background: var(--surface-2); transform: translateY(-2px); }
    .menu-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

    /* Hero */
    .hero { padding: 74px 0 60px; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
    .badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--muted); font-size: .82rem; font-weight: 500; margin-bottom: 24px; }
    .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(31,200,216,.18); }
    .hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.06; font-weight: 700; margin-bottom: 20px; }
    .hero p.lead { color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); margin-bottom: 30px; max-width: 560px; }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-meta { display: flex; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
    .hero-meta div { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; }
    .hero-meta svg { width: 18px; height: 18px; stroke: var(--accent); }
    .hero-visual { position: relative; }
    .hero-form { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 30px 28px; box-shadow: 0 30px 60px -30px rgba(20,40,90,.45); }
    .hero-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
    .hero-form .hf-sub { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
    .hero-form form { display: flex; flex-direction: column; gap: 12px; }
    .hero-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-form input, .hero-form textarea, .hero-form select { font-family: inherit; background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 13px 14px; color: var(--text); font-size: .93rem; width: 100%; transition: border-color .2s, box-shadow .2s; }
    .hero-form input:focus, .hero-form textarea:focus, .hero-form select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,128,224,.14); }
    .hero-form textarea { resize: vertical; }
    .hero-form .btn-primary { margin-top: 2px; }
    .hf-trust { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .78rem; margin-top: 2px; }
    .hf-trust svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }
    .hero-flag { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: .8rem; font-weight: 600; margin-bottom: 16px; }
    .hero-flag .leaf { color: var(--maple); }

    /* Trust bar */
    .trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); }
    .trust .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 24px; flex-wrap: wrap; }
    .trust span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }
    .trust .items { display: flex; gap: 30px; flex-wrap: wrap; }
    .trust .items div { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; }
    .trust .items svg { width: 18px; height: 18px; stroke: var(--accent); }

    section { padding: 88px 0; }
    section[id], .card[id] { scroll-margin-top: 110px; }
    .sec-head { text-align: center; max-width: 660px; margin: 0 auto 54px; }
    .eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 600; color: var(--brand); margin-bottom: 14px; }
    .sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
    .sec-head p { color: var(--muted); }

    /* Stats */
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; text-align: center; }
    .stat .num { font-size: 2.4rem; font-weight: 700; }
    .stat .lbl { color: var(--muted); font-size: .9rem; margin-top: 6px; }

    /* Services */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; overflow: hidden; transition: transform .3s, background .3s; }
    .card::before { content: ''; position: absolute; inset: 0; padding: 1px; border-radius: var(--radius); background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
    .card:hover { transform: translateY(-6px); background: var(--surface-2); }
    .card:hover::before { opacity: 1; }
    .card .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(47,128,224,.14); border: 1px solid var(--border); }
    .card .ico svg { width: 26px; height: 26px; stroke: var(--brand); }
    .card h3 { font-size: 1.28rem; margin-bottom: 10px; }
    .card p { color: var(--muted); font-size: .96rem; margin-bottom: 14px; }
    .card ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
    .card ul li { font-size: .78rem; color: var(--text); background: var(--bg); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }
    .card .num-tag { position: absolute; top: 22px; right: 26px; font-family: 'Space Grotesk'; font-size: .8rem; color: var(--muted); opacity: .5; }

    /* Process */
    .process { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
    .step .n { width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: #fff; font-family: 'Space Grotesk'; font-weight: 700; display: grid; place-items: center; margin-bottom: 18px; }
    .step h3 { font-size: 1.12rem; margin-bottom: 8px; }
    .step p { color: var(--muted); font-size: .9rem; }

    /* Why */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; }
    .why-item .check { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: rgba(31,200,216,.14); display: grid; place-items: center; }
    .why-item .check svg { width: 20px; height: 20px; stroke: var(--accent); }
    .why-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
    .why-item p { color: var(--muted); font-size: .9rem; }

    /* Industries */
    .ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .ind { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: transform .25s, background .25s; }
    .ind:hover { transform: translateY(-4px); background: var(--surface-2); }
    .ind .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(47,128,224,.14); }
    .ind .ic svg { width: 22px; height: 22px; stroke: var(--brand); }
    .ind h3 { font-size: 1.02rem; }
    .ind p { color: var(--muted); font-size: .85rem; }

    /* About */
    .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
    .about-wrap h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 20px; }
    .about-wrap p { color: var(--muted); margin-bottom: 18px; }
    .about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
    .about-points div { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
    .about-points svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }
    .about-visual { position: relative; border-radius: var(--radius); padding: 34px; background: var(--bg-soft); border: 1px solid var(--border); }
    .about-visual .float-card { background: rgba(255,255,255,.75); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; backdrop-filter: blur(6px); margin-bottom: 14px; box-shadow: 0 8px 20px -16px rgba(20,40,90,.5); }
    .about-visual .float-card:last-child { margin-bottom: 0; }
    .about-visual .fc-title { font-weight: 600; display: flex; align-items: center; gap: 10px; }
    .about-visual .fc-title .d { width: 10px; height: 10px; border-radius: 50%; }
    .about-visual .fc-sub { color: var(--muted); font-size: .85rem; margin-top: 4px; padding-left: 20px; }

    /* Testimonials */
    .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .test { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; }
    .test .stars { color: #1fc8d8; letter-spacing: 2px; margin-bottom: 14px; }
    .test p { font-size: .98rem; margin-bottom: 22px; }
    .test .who { display: flex; align-items: center; gap: 12px; }
    .test .av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: grid; place-items: center; font-family: 'Space Grotesk'; }
    .test .who h4 { font-size: .95rem; }
    .test .who small { color: var(--muted); font-size: .82rem; }

    /* Portfolio */
    .pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .pf-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
    .pf-card:hover { transform: translateY(-6px); border-color: var(--brand); box-shadow: 0 22px 44px -24px rgba(20,40,90,.5); }
    .pf-thumb { height: 168px; display: grid; place-items: center; color: #fff; }
    .pf-thumb svg { width: 46px; height: 46px; stroke: #fff; opacity: .95; }
    /* Screenshot thumbnails: show the top of the page, gently zoom on hover */
    .pf-thumb.shot { height: 210px; padding: 0; overflow: hidden; background: var(--surface-2); position: relative; }
    .pf-thumb.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .45s ease; }
    .pf-card:hover .pf-thumb.shot img { transform: scale(1.05); }
    .pf-body { padding: 22px 24px; }
    .pf-tag { display: inline-block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); background: rgba(47,128,224,.10); border: 1px solid rgba(47,128,224,.20); padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
    .pf-body h3 { font-size: 1.16rem; margin-bottom: 6px; }
    .pf-body p { color: var(--muted); font-size: .92rem; }

    /* FAQ */
    .faq-wrap { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .faq summary { cursor: pointer; list-style: none; padding: 22px 24px; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .3s; }
    .faq summary .plus::before, .faq summary .plus::after { content: ''; position: absolute; background: var(--brand); border-radius: 2px; }
    .faq summary .plus::before { top: 11px; left: 3px; right: 3px; height: 2px; }
    .faq summary .plus::after { left: 11px; top: 3px; bottom: 3px; width: 2px; transition: opacity .3s; }
    .faq[open] summary .plus::after { opacity: 0; }
    .faq p { padding: 0 24px 22px; color: var(--muted); }
    /* Active (open) FAQ turns dark blue */
    .faq { transition: background .3s, border-color .3s; }
    .faq[open] { background: #0c2559; border-color: rgba(255,255,255,.14); }
    .faq[open] summary { color: #ffffff; }
    .faq[open] p { color: #c2cfec; }
    .faq[open] summary .plus::before, .faq[open] summary .plus::after { background: #6aa8ff; }

    /* CTA banner */
    .cta-banner { background: #eaf1fb; border: 1px solid var(--border); border-radius: 26px; padding: 52px 48px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
    .cta-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
    .cta-copy p { color: var(--muted); margin-bottom: 22px; }
    .cta-copy p a { color: var(--brand); font-weight: 600; }
    .cta-points { display: flex; flex-direction: column; gap: 10px; }
    .cta-points div { display: flex; align-items: center; gap: 10px; font-size: .93rem; font-weight: 500; }
    .cta-points svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }
    .cta-form { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 24px 50px -28px rgba(20,40,90,.45); }
    .cta-form h3 { font-size: 1.25rem; margin-bottom: 4px; }
    .cta-form input, .cta-form select { font-family: inherit; background: var(--bg); border: 1px solid var(--border); border-radius: 11px; padding: 13px 14px; color: var(--text); font-size: .93rem; width: 100%; transition: border-color .2s, box-shadow .2s; }
    .cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(47,128,224,.14); }

    /* Contact */
    .contact-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 26px; padding: 56px 48px; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .contact-grid h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 16px; }
    .contact-grid > div > p { color: var(--muted); margin-bottom: 28px; }
    .contact-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-list a, .contact-list .li { display: flex; align-items: center; gap: 14px; color: var(--text); font-weight: 500; }
    .contact-list .ci { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; border: 1px solid var(--border); flex-shrink: 0; }
    .contact-list .ci svg { width: 20px; height: 20px; stroke: var(--brand); }
    .contact-list small { display: block; color: var(--muted); font-weight: 400; font-size: .8rem; }
    form { display: flex; flex-direction: column; gap: 14px; }
    form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    form input, form textarea, form select { font-family: inherit; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--text); font-size: .95rem; transition: border-color .2s; width: 100%; }
    form input:focus, form textarea:focus, form select:focus { outline: none; border-color: var(--brand); }
    form textarea { resize: vertical; min-height: 110px; }

    footer { border-top: 1px solid var(--border); padding: 60px 0 30px; background: var(--bg-soft); }
    .foot-grid { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; margin-bottom: 40px; }
    /* Services column: list flows into two columns */
    .foot-col.wide { display: grid; grid-template-columns: 1fr 1fr; column-gap: 26px; align-content: start; }
    .foot-col.wide h4 { grid-column: 1 / -1; }
    .foot-grid p { color: var(--muted); font-size: .92rem; margin-top: 16px; max-width: 300px; }
    .foot-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 16px; }
    .foot-col a { display: block; color: var(--text); margin-bottom: 10px; font-size: .94rem; opacity: .85; transition: opacity .2s; }
    .foot-col a:hover { opacity: 1; }
    .socials { display: flex; gap: 12px; margin-top: 20px; }
    .socials a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; transition: background .2s, transform .2s; }
    .socials a:hover { background: var(--surface-2); transform: translateY(-2px); }
    .socials svg { width: 18px; height: 18px; fill: var(--muted); transition: fill .2s; }
    .socials a[aria-label="Facebook"] svg { fill: #1877F2; }
    .socials a[aria-label="LinkedIn"] svg { fill: #0A66C2; }
    .socials a[aria-label="Instagram"] svg { fill: #E4405F; }
    .socials a[aria-label="Facebook"]:hover { background: #1877F2; }
    .socials a[aria-label="LinkedIn"]:hover { background: #0A66C2; }
    .socials a[aria-label="Instagram"]:hover { background: #E4405F; }
    .socials a:hover svg { fill: #ffffff; }
    .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted); font-size: .88rem; flex-wrap: wrap; gap: 10px; }
    .foot-bottom .leaf { color: var(--maple); }

    /* Light-theme depth so surfaces lift off the white background */
    .stat, .card, .why-item, .step, .ind, .test, .contact-card, .cta-banner { box-shadow: 0 14px 34px -24px rgba(20,40,90,.40); }
    .card:hover, .ind:hover { box-shadow: 0 22px 44px -24px rgba(20,40,90,.50); }
    .stars { color: #f5b301; }

    /* Footer link icons */
    .foot-col a { display: flex; align-items: center; gap: 10px; }
    .foot-col a svg { width: 16px; height: 16px; stroke: var(--brand); flex-shrink: 0; }

    /* Dark sections — deep LOGO-BLUE, re-scoping theme vars so all children flip automatically */
    .dark-section {
      --bg: #0a1f4d; --bg-soft: #0d2657; --surface: #163576; --surface-2: #1d4088;
      --border: rgba(255,255,255,0.14); --text: #eef2fb; --muted: #aebbde;
      --brand: #6aa8ff; --accent: #2ad5e8;
      background: #0c2559;
      color: var(--text);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .dark-section .card, .dark-section .why-item, .dark-section .test, .dark-section .step, .dark-section .ind, .dark-section .stat { box-shadow: none; }
    .dark-section .eyebrow { color: var(--accent); }

    /* Colourful service cards — logo blue→teal spectrum, one hue per card */
    #services .card { --c: var(--brand); }            /* fallback for any card */
    #services .card:nth-child(1)  { --c: #1b52c4; }
    #services .card:nth-child(2)  { --c: #2464cf; }
    #services .card:nth-child(3)  { --c: #2f80e0; }
    #services .card:nth-child(4)  { --c: #1f7fd6; }
    #services .card:nth-child(5)  { --c: #1a8ed6; }
    #services .card:nth-child(6)  { --c: #1499d0; }
    #services .card:nth-child(7)  { --c: #12a3c9; }
    #services .card:nth-child(8)  { --c: #10a9bd; }
    #services .card:nth-child(9)  { --c: #14b0c2; }
    #services .card:nth-child(10) { --c: #17b3c7; }
    #services .card:nth-child(11) { --c: #1fc0cf; }
    #services .card {
      background: color-mix(in srgb, var(--c) 8%, #fff);
      border-color: color-mix(in srgb, var(--c) 26%, transparent);
    }
    #services .card::before { background: var(--c); }
    #services .card .ico {
      background: color-mix(in srgb, var(--c) 15%, #fff);
      border-color: color-mix(in srgb, var(--c) 30%, transparent);
    }
    #services .card .ico svg { stroke: var(--c); }
    #services .card .num-tag { color: var(--c); opacity: .55; }
    #services .card ul li {
      color: var(--c);
      background: color-mix(in srgb, var(--c) 9%, #fff);
      border-color: color-mix(in srgb, var(--c) 22%, transparent);
    }
    #services .card:hover { border-color: color-mix(in srgb, var(--c) 40%, transparent); }

    /* Smooth colour transitions for the hover effect */
    #services .card, #services .card h3, #services .card p, #services .card .ico,
    #services .card .ico svg, #services .card .num-tag, #services .card ul li {
      transition: background .3s, color .3s, border-color .3s, stroke .3s, transform .3s;
    }

    /* On hover every card turns dark (keeping its logo-colour accent) */
    #services .card:hover {
      background: color-mix(in srgb, var(--c) 32%, #0a1f49);
      border-color: color-mix(in srgb, var(--c) 48%, transparent);
    }
    #services .card:hover h3 { color: #ffffff; }
    #services .card:hover p { color: #c2cfec; }
    #services .card:hover .ico { background: color-mix(in srgb, var(--c) 42%, transparent); border-color: color-mix(in srgb, var(--c) 55%, transparent); }
    #services .card:hover .ico svg { stroke: #ffffff; }
    #services .card:hover .num-tag { color: #ffffff; opacity: .5; }
    #services .card:hover ul li { color: #eaf1ff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.20); }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: none; }

    @media (max-width: 960px) {
      .hero-grid, .about-wrap, .contact-grid, .cta-banner { grid-template-columns: 1fr; }
      .services-grid, .steps, .ind-grid, .test-grid, .pf-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
    }
    @media (max-width: 620px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }
      .nav-links.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; max-height: calc(100vh - 72px); overflow-y: auto; }
      .nav-links.open .btn { width: 100%; justify-content: center; }
      /* Dropdown becomes an inline expandable list on mobile */
      .nav-item { width: 100%; }
      .nav-item .drop-toggle { justify-content: space-between; width: 100%; }
      .dropdown { position: static; transform: none; width: 100%; opacity: 1; visibility: visible; box-shadow: none; background: var(--surface); margin-top: 12px; display: none; }
      .dropdown::before { display: none; }
      .nav-item.open .dropdown { display: block; transform: none; }
      .services-grid, .steps, .ind-grid, .test-grid, .pf-grid, .why-grid, .foot-grid, .about-points, form .two { grid-template-columns: 1fr; }
      .foot-col.wide { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr 1fr; }
      .contact-card, .cta-banner { padding: 36px 22px; }
      section { padding: 62px 0; }
      .announce .container { font-size: .78rem; }
    }

/* ---- Sub-page (About / Contact) ---- */
.page-hero { padding: 58px 0 34px; text-align: center; }
.page-hero .crumb { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.page-hero .crumb a { color: var(--brand); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 14px 34px -24px rgba(20,40,90,.40); }
.contact-info-card .ci { width: 46px; height: 46px; border-radius: 12px; background: rgba(47,128,224,.10); border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-card .ci svg { width: 22px; height: 22px; stroke: var(--brand); }
.contact-info-card h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: .93rem; }
.contact-info-card a:hover { color: var(--brand); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
@media (max-width: 900px){ .info-grid { grid-template-columns: 1fr; } }

/* About page — Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 32px; box-shadow: 0 14px 34px -24px rgba(20,40,90,.40); }
.mv-card .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(47,128,224,.10); border: 1px solid var(--border); }
.mv-card .ico svg { width: 26px; height: 26px; stroke: var(--brand); }
.mv-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.mv-card p { color: var(--muted); }
@media (max-width: 760px){ .mv-grid { grid-template-columns: 1fr; } }

/* Service detail pages */
.svc-ic { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 22px; background: rgba(47,128,224,.10); border: 1px solid var(--border); }
.svc-ic svg { width: 32px; height: 32px; stroke: var(--brand); }
.card-more { display: inline-block; margin-top: 14px; color: var(--brand); font-weight: 600; font-size: .9rem; transition: color .3s; }
.card-more:hover { text-decoration: underline; }
#services .card:hover .card-more { color: #eaf1ff; }
.pf-link { margin-top: 12px; color: var(--brand); font-weight: 600; font-size: .84rem; word-break: break-all; }
.pf-thumb.shot.logo { background: #ffffff; }
.pf-thumb.shot.logo img { object-fit: contain; object-position: center; padding: 22px; }
.pf-card:hover .pf-thumb.shot.logo img { transform: scale(1.03); }
