/* ═══════════════════════════════════════
   NAV — service pages (matches all pages)
═══════════════════════════════════════ */
nav{position:fixed;top:0;left:0;right:0;z-index:100;height:68px;padding:0 40px;display:flex;align-items:center;justify-content:space-between;background:rgba(14,28,31,0.92);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);transition:background 0.3s}
@media(max-width:768px){nav{padding:0 20px}}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-logo img{width:36px;height:36px;border-radius:50%;display:block}
.nav-logo-text{font-size:15px;font-weight:700;color:var(--offwhite);letter-spacing:-0.03em;white-space:nowrap}
.nav-logo-text span{color:var(--teal-light)}
.nav-links{display:flex;align-items:center;gap:32px;list-style:none}
@media(max-width:960px){.nav-links{display:none}}
.nav-links a{font-size:13.5px;font-weight:400;color:var(--muted);text-decoration:none;letter-spacing:0.01em;transition:color 0.2s}
.nav-links a:hover,.nav-links a.active{color:var(--offwhite)}
.nav-cta{font-size:13px;font-weight:600;color:var(--offwhite);background:var(--teal);padding:9px 20px;border-radius:6px;text-decoration:none;white-space:nowrap;transition:background 0.2s,transform 0.15s}
.nav-cta:hover{background:var(--teal-mid);transform:translateY(-1px)}
@media(max-width:960px){.nav-cta{display:none}}

/* Hamburger */
.hamburger{display:none;flex-direction:column;justify-content:center;gap:5px;cursor:pointer;padding:6px;background:none;border:none;z-index:200;flex-shrink:0}
.hamburger span{display:block;width:22px;height:2px;background:var(--offwhite);border-radius:2px;transition:transform 0.35s cubic-bezier(0.16,1,0.3,1),opacity 0.2s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
@media(max-width:960px){.hamburger{display:flex}}

/* Mobile overlay */
.mobile-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:98;opacity:0;transition:opacity 0.3s}
.mobile-overlay.open{display:block;opacity:1}

/* Slide-in drawer */
.mobile-menu{position:fixed;top:0;right:0;bottom:0;width:min(320px,85vw);background:#0e1c1f;border-left:1px solid rgba(255,255,255,0.08);z-index:99;transform:translateX(100%);transition:transform 0.35s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column;overflow-y:auto}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid rgba(255,255,255,0.07);height:68px;flex-shrink:0}
.mobile-menu-logo{display:flex;align-items:center;gap:9px;text-decoration:none}
.mobile-menu-logo img{width:30px;height:30px;border-radius:50%}
.mobile-menu-logo span{font-size:14px;font-weight:700;color:#f0f4f4;letter-spacing:-0.03em}
.mobile-menu-logo span em{color:#3dbdcc;font-style:normal}
.mobile-close{width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,0.1);background:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#7a9ea3;transition:color 0.2s,border-color 0.2s}
.mobile-close:hover{color:#f0f4f4;border-color:rgba(255,255,255,0.25)}
.mobile-close svg{width:16px;height:16px;stroke:currentColor;stroke-width:2;fill:none}
.mobile-menu-links{display:flex;flex-direction:column;padding:16px 0;flex:1}
.mobile-menu-links a{font-family:'Inter',sans-serif;font-size:15px;font-weight:500;color:#7a9ea3;text-decoration:none;padding:14px 24px;border-bottom:1px solid rgba(255,255,255,0.04);transition:color 0.2s,background 0.2s;display:flex;align-items:center;justify-content:space-between}
.mobile-menu-links a:hover,.mobile-menu-links a.active{color:#f0f4f4;background:rgba(255,255,255,0.03)}
.mobile-menu-links a svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none;opacity:0.4}
.mobile-menu-footer{padding:20px 24px;border-top:1px solid rgba(255,255,255,0.07);flex-shrink:0}
.mobile-menu-footer a{display:block;text-align:center;background:#1e7d8c;color:#f0f4f4;font-family:'Inter',sans-serif;font-size:14px;font-weight:700;padding:13px;border-radius:8px;text-decoration:none;transition:background 0.2s}
.mobile-menu-footer a:hover{background:#2a9aac}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',sans-serif;background:#0e1c1f;color:#f0f4f4;overflow-x:hidden}
:root{--midnight:#0e1c1f;--surface1:#152428;--surface2:#1d3338;--surface3:#243e44;--teal-deep:#1a4a52;--teal:#1e7d8c;--teal-mid:#2a9aac;--teal-light:#3dbdcc;--teal-mist:#e6f4f6;--teal-pale:#f0f8f9;--offwhite:#f0f4f4;--muted:#7a9ea3;--muted2:#4d7278;--border:rgba(255,255,255,0.07);--border-s:rgba(255,255,255,0.12);--fs:'Inter',sans-serif}
::-webkit-scrollbar{width:4px}::-webkit-scrollbar-track{background:var(--midnight)}::-webkit-scrollbar-thumb{background:var(--teal);border-radius:2px}
.container{max-width:1200px;margin:0 auto;padding:0 40px}
@media(max-width:768px){.container{padding:0 20px}}

/* NAV */

@media(max-width:768px){}

@media(max-width:1000px){}

/* REVEAL */
.reveal{opacity:0;transform:translateY(28px);transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}
.rd1{transition-delay:0.1s}.rd2{transition-delay:0.2s}.rd3{transition-delay:0.3s}.rd4{transition-delay:0.4s}.rd5{transition-delay:0.5s}

/* HERO */
.page-hero{padding:140px 0 80px;background:var(--midnight);position:relative;overflow:hidden}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(30,125,140,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(30,125,140,0.04) 1px,transparent 1px);background-size:64px 64px}
.hero-glow{position:absolute;top:-100px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(30,125,140,0.1) 0%,transparent 70%);pointer-events:none}
.hero-breadcrumb{font-size:12px;color:var(--muted2);margin-bottom:20px}
.hero-breadcrumb a{color:var(--muted2);text-decoration:none;transition:color 0.2s}
.hero-breadcrumb a:hover{color:var(--teal-light)}
.hero-breadcrumb span{margin:0 8px;opacity:0.4}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(30,125,140,0.15);border:1px solid rgba(61,189,204,0.2);color:var(--teal-light);font-size:12px;font-weight:500;letter-spacing:0.1em;text-transform:uppercase;padding:6px 14px;border-radius:20px;margin-bottom:24px}
.hero-h1{font-size:clamp(38px,5vw,68px);font-weight:700;line-height:1.08;letter-spacing:-0.04em;color:var(--offwhite);margin-bottom:20px;max-width:700px}
.hero-h1 em{color:var(--teal-light);font-style:normal}
.hero-sub{font-size:17px;font-weight:300;color:var(--muted);line-height:1.75;max-width:560px;margin-bottom:36px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.btn-primary{font-size:14px;font-weight:600;background:var(--teal);color:var(--offwhite);padding:14px 28px;border-radius:7px;text-decoration:none;transition:background 0.2s,transform 0.15s;display:inline-flex;align-items:center;gap:8px}
.btn-primary:hover{background:var(--teal-mid);transform:translateY(-2px)}
.btn-primary svg{width:14px;height:14px;stroke-width:2.5;fill:none}
.btn-outline{font-size:14px;font-weight:600;background:transparent;color:var(--muted);border:1px solid var(--border-s);padding:14px 28px;border-radius:7px;text-decoration:none;transition:color 0.2s,border-color 0.2s,transform 0.15s;display:inline-flex;align-items:center;gap:8px}
.btn-outline:hover{color:var(--offwhite);border-color:var(--muted);transform:translateY(-2px)}

/* SHARED TYPOGRAPHY */
.section-eyebrow{font-size:11px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:var(--teal-light);margin-bottom:16px;display:flex;align-items:center;gap:10px}
.section-eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--teal-light)}
.section-h2{font-size:clamp(28px,3.5vw,48px);font-weight:700;line-height:1.12;letter-spacing:-0.035em;color:var(--offwhite);margin-bottom:16px}
.section-h2.dark{color:#0e1c1f}
.section-sub{font-size:16px;font-weight:300;color:var(--muted);line-height:1.75;max-width:520px}
.section-sub.dark{color:var(--muted2)}

/* INCLUDES */
.includes-section{padding:100px 0;background:var(--offwhite)}
.includes-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;margin-top:48px}
@media(max-width:900px){.includes-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.includes-grid{grid-template-columns:1fr}}
.include-item{background:white;padding:28px 24px;border:1px solid rgba(30,125,140,0.08);transition:background 0.2s,transform 0.2s;position:relative;overflow:hidden}
.include-item::before{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--teal);transform:scaleX(0);transform-origin:left;transition:transform 0.3s}
.include-item:hover{background:var(--teal-pale);transform:translateY(-3px)}
.include-item:hover::before{transform:scaleX(1)}
.include-icon{width:40px;height:40px;border-radius:10px;background:var(--teal-mist);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.include-icon svg{width:18px;height:18px;stroke:var(--teal);stroke-width:1.8;fill:none}
.include-name{font-size:15px;font-weight:600;color:#0e1c1f;margin-bottom:6px}
.include-desc{font-size:13px;color:var(--muted2);line-height:1.65}

/* TECH */
.tech-section{padding:80px 0;background:var(--surface1)}
.tech-grid{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.tech-chip{font-size:13px;font-weight:500;color:var(--teal-light);background:rgba(61,189,204,0.1);border:1px solid rgba(61,189,204,0.2);padding:8px 16px;border-radius:20px;transition:background 0.2s,border-color 0.2s}
.tech-chip:hover{background:rgba(61,189,204,0.18);border-color:rgba(61,189,204,0.4)}

/* PROCESS */
.process-section{padding:100px 0;background:var(--midnight)}
.process-inner{display:grid;grid-template-columns:1fr 1.8fr;gap:80px;align-items:start}
@media(max-width:900px){.process-inner{grid-template-columns:1fr;gap:40px}}
.process-steps{display:flex;flex-direction:column}
.process-step{display:grid;grid-template-columns:52px 1fr;gap:20px;padding:28px 0;border-bottom:1px solid var(--border)}
.process-step:last-child{border-bottom:none}
.step-num{font-size:12px;font-weight:700;color:var(--teal);letter-spacing:0.08em;padding-top:2px}
.step-title{font-size:16px;font-weight:600;color:var(--offwhite);margin-bottom:6px;letter-spacing:-0.02em}
.step-desc{font-size:14px;font-weight:300;color:var(--muted);line-height:1.75}

/* TYPES / VARIANTS */
.types-section{padding:100px 0;background:var(--offwhite)}
.types-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;margin-top:48px}
@media(max-width:900px){.types-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.types-grid{grid-template-columns:1fr}}
.type-card{background:white;padding:28px 24px;border:1px solid rgba(30,125,140,0.08);transition:background 0.2s,border-color 0.2s}
.type-card:hover{background:var(--teal-pale);border-color:rgba(30,125,140,0.2)}
.type-name{font-size:15px;font-weight:600;color:#0e1c1f;margin-bottom:8px}
.type-desc{font-size:13px;color:var(--muted2);line-height:1.65}

/* FAQ */
.faq-section{padding:100px 0;background:var(--surface1)}
.faq-inner{display:grid;grid-template-columns:1fr 1.8fr;gap:80px;align-items:start}
@media(max-width:900px){.faq-inner{grid-template-columns:1fr;gap:40px}}
.faq-list{display:flex;flex-direction:column;gap:2px}
.faq-item{border:1px solid var(--border);border-radius:10px;overflow:hidden;transition:border-color 0.2s}
.faq-item.open{border-color:var(--border-s)}
.faq-q{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;cursor:pointer;gap:16px;font-size:15px;font-weight:500;color:var(--offwhite);background:var(--surface2);transition:background 0.2s;user-select:none}
.faq-q:hover{background:var(--surface3)}
.faq-item.open .faq-q{background:var(--teal-deep)}
.faq-chevron{width:18px;height:18px;flex-shrink:0;transition:transform 0.3s;stroke:var(--muted)}
.faq-item.open .faq-chevron{transform:rotate(180deg);stroke:var(--teal-light)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.35s cubic-bezier(0.16,1,0.3,1);background:var(--surface1)}
.faq-item.open .faq-a{max-height:300px}
.faq-a-inner{padding:20px 22px;font-size:14px;font-weight:300;color:var(--muted);line-height:1.8}

/* CTA */
.service-cta{padding:120px 0;background:var(--teal-deep);position:relative;overflow:hidden}
.cta-glow{position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(61,189,204,0.1) 0%,transparent 65%);pointer-events:none}
.cta-inner{position:relative;z-index:1;text-align:center;max-width:640px;margin:0 auto}
.cta-h2{font-size:clamp(32px,4vw,52px);font-weight:700;color:var(--offwhite);line-height:1.12;letter-spacing:-0.035em;margin-bottom:16px}
.cta-sub{font-size:16px;font-weight:300;color:rgba(240,244,244,0.65);line-height:1.75;margin-bottom:40px}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.btn-white{font-size:15px;font-weight:700;background:var(--offwhite);color:var(--teal-deep);padding:16px 32px;border-radius:8px;text-decoration:none;transition:transform 0.15s,background 0.2s;display:inline-flex;align-items:center;gap:8px}
.btn-white:hover{background:white;transform:translateY(-2px)}
.btn-white svg{width:15px;height:15px;fill:none;stroke-width:2.5}
.btn-white-outline{font-size:15px;font-weight:700;background:transparent;color:var(--offwhite);border:1.5px solid rgba(240,244,244,0.3);padding:16px 32px;border-radius:8px;text-decoration:none;transition:transform 0.15s,border-color 0.2s;display:inline-flex;align-items:center;gap:8px}
.btn-white-outline:hover{border-color:rgba(240,244,244,0.6);transform:translateY(-2px)}

/* FOOTER */
footer{background:#080f11;padding:56px 0 36px;border-top:1px solid var(--border)}
.footer-inner{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
@media(max-width:900px){.footer-inner{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-inner{grid-template-columns:1fr}}
.footer-brand-desc{font-size:13px;color:var(--muted2);line-height:1.7;margin-top:14px;max-width:240px}
.footer-col-title{font-size:13px;font-weight:700;color:var(--offwhite);letter-spacing:0.04em;margin-bottom:18px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:13px;color:var(--muted2);text-decoration:none;transition:color 0.2s}
.footer-links a:hover{color:var(--teal-light)}
.footer-bottom{border-top:1px solid var(--border);padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-copy{font-size:12px;color:var(--muted2)}

@media (max-width: 900px) {  }

/* ── MOBILE LAYOUT FIXES ── */
@media (max-width: 600px) {
  .page-hero { padding: 120px 0 60px; }
  .hero-h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: 1fr 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-h2 { font-size: 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-white, .btn-white-outline { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .includes-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
}


@media(max-width:400px){.container{padding:0 14px}}
/* ═══════════════════════════════════════
   SERVICE PAGE MOBILE LAYOUT
═══════════════════════════════════════ */
@media(max-width:960px) {
  .page-hero{padding:108px 0 64px}
  .hero-h1{font-size:clamp(26px,5vw,42px)}
}
@media(max-width:600px) {
  .page-hero{padding:96px 0 48px}
  .hero-h1{font-size:24px;line-height:1.25}
  .hero-sub{font-size:14px;line-height:1.7}
  .hero-btns{flex-direction:column;gap:10px}
  .hero-btns a{width:100%;text-align:center;justify-content:center}
  .includes-grid{grid-template-columns:1fr 1fr;gap:10px}
  .include-item{padding:16px 12px}
  .include-icon{width:34px;height:34px}
  .include-name{font-size:12px}
  .process-inner{grid-template-columns:1fr!important;gap:24px}
  .faq-inner{grid-template-columns:1fr!important;gap:0}
  .types-grid{grid-template-columns:1fr 1fr;gap:10px}
  .type-card{padding:20px 14px}
  .cta-h2{font-size:24px}
  .cta-sub{font-size:14px}
  .cta-btns{flex-direction:column;align-items:stretch;gap:10px}
  .cta-btns a{text-align:center;justify-content:center}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px}
}
@media(max-width:400px) {
  .includes-grid{grid-template-columns:1fr}
  .types-grid{grid-template-columns:1fr}
  .hero-h1{font-size:22px}
}


/* Why this matters section */
.why-matters-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
@media(max-width:900px){.why-matters-grid{grid-template-columns:1fr;gap:40px}}

/* Cookie banner */
#cookie-banner{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);opacity:0;z-index:9999;width:min(680px,calc(100vw - 32px));background:#152428;border:1px solid rgba(61,189,204,0.2);border-radius:14px;padding:20px 24px;display:none;align-items:center;gap:20px;flex-wrap:wrap;box-shadow:0 8px 40px rgba(0,0,0,0.4)}
#cookie-banner.hiding{animation:cookieDown 0.3s ease forwards}
@keyframes cookieDown{to{opacity:0;transform:translateX(-50%) translateY(24px)}}
.cookie-text{flex:1;min-width:200px;font-size:13px;font-weight:300;color:#7a9ea3;line-height:1.6}
.cookie-text a{color:var(--teal-light);text-decoration:none}.cookie-text a:hover{text-decoration:underline}
.cookie-btns{display:flex;gap:10px;flex-shrink:0}
.cookie-accept{font-family:'Inter',sans-serif;font-size:13px;font-weight:600;background:#1e7d8c;color:#f0f4f4;border:none;padding:9px 20px;border-radius:8px;cursor:pointer;transition:background 0.2s;white-space:nowrap}
.cookie-accept:hover{background:#2a9aac}
.cookie-reject{font-family:'Inter',sans-serif;font-size:13px;font-weight:500;background:transparent;color:#7a9ea3;border:1px solid rgba(255,255,255,0.1);padding:9px 20px;border-radius:8px;cursor:pointer;transition:all 0.2s;white-space:nowrap}
.cookie-reject:hover{color:#f0f4f4;border-color:rgba(255,255,255,0.25)}
@media(max-width:520px){#cookie-banner{bottom:0;left:0;right:0;transform:none!important;width:100%;border-radius:14px 14px 0 0;flex-direction:column;align-items:flex-start;gap:12px;padding:20px 20px 28px}.cookie-btns{width:100%;display:grid;grid-template-columns:1fr 1fr;gap:10px}.cookie-accept,.cookie-reject{width:100%;text-align:center;padding:12px 16px;font-size:14px}}@media(max-width:520px){#cookie-banner.hiding{animation:cookieDownMobile 0.3s ease forwards}}@keyframes cookieDownMobile{to{opacity:0;transform:translateY(100%)}}
