@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────
   EXACT LOGO PALETTE
   cyan       #1898cc — globe + "Skyline" primary
   sky        #18a0d4 — bright highlight / arrow
   navy       #085078 — globe shadow / "Ventures LLP"
   deep-navy  #084464 — darkest accent
───────────────────────────────────── */
:root {
  --cyan:        #1898cc;
  --cyan-bright: #18a0d4;
  --cyan-dark:   #1070a0;
  --cyan-pale:   #e8f5fb;
  --cyan-mid:    #a8d8ef;

  --navy:        #085078;
  --navy-mid:    #0c6090;
  --navy-dark:   #063858;
  --navy-deep:   #042840;
  --navy-deeper: #021828;
  --navy-ink:    #011018;

  --white:       #ffffff;
  --off-white:   #f6f9fc;
  --grey-50:     #edf2f7;
  --grey-100:    #dde6ef;
  --grey-200:    #c0d0de;
  --grey-300:    #90a8bc;
  --grey-400:    #607888;
  --text-body:   #1a3040;
  --text-light:  #3a5868;
  --text-xlight: #6a8898;
  --border:      #d4e2ec;
  --border-cyan: rgba(24,152,204,.22);
  --border-navy: rgba(8,80,120,.15);

  --border-dark: rgba(255,255,255,.08);
  --text-on-dark: rgba(255,255,255,.80);
  --text-dim:    rgba(255,255,255,.50);
  --text-xdim:   rgba(255,255,255,.26);

  --grad-cyan:   linear-gradient(135deg, #18a0d4 0%, #1070a0 100%);
  --grad-navy:   linear-gradient(135deg, #085078 0%, #042840 100%);
  --grad-hero:   linear-gradient(160deg, #011018 0%, #021828 40%, #042840 70%, #063858 100%);
  --grad-stripe: linear-gradient(90deg, #1898cc 0%, #18a0d4 50%, #085078 100%);
  --grad-road:   linear-gradient(90deg, #18a0d4, #1898cc, #085078);

  --shadow-sm:   0 2px 8px rgba(2,24,40,.08);
  --shadow-md:   0 6px 24px rgba(2,24,40,.14);
  --shadow-lg:   0 16px 48px rgba(2,24,40,.22);
  --shadow-cyan: 0 8px 32px rgba(24,152,204,.28);
  --shadow-navy: 0 8px 32px rgba(8,80,120,.28);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:      6px;
  --radius-sm:   4px;
  --radius-lg:   12px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font-body); background:var(--white); color:var(--navy-ink); overflow-x:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-display); font-weight:700; font-size:.88rem; letter-spacing:.01em; padding:.78rem 1.9rem; border-radius:var(--radius-sm); border:none; cursor:pointer; transition:all .22s; }
.btn-cyan { background:var(--grad-cyan); color:#fff; box-shadow:var(--shadow-cyan); }
.btn-cyan:hover { filter:brightness(1.08); transform:translateY(-2px); box-shadow:0 12px 36px rgba(24,152,204,.44); }
.btn-navy { background:var(--grad-navy); color:#fff; box-shadow:var(--shadow-navy); }
.btn-navy:hover { filter:brightness(1.1); transform:translateY(-2px); }
.btn-outline-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.32); }
.btn-outline-white:hover { background:rgba(255,255,255,.08); border-color:#fff; transform:translateY(-2px); }
.btn-outline-cyan { background:transparent; color:var(--cyan); border:1.5px solid var(--cyan); }
.btn-outline-cyan:hover { background:var(--cyan); color:#fff; transform:translateY(-2px); }
.arr::after { content:' →'; }

/* ── NAV ── */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:68px; display:flex; align-items:center; padding:0 2.5rem; justify-content:space-between; background:rgba(1,16,24,.95); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid var(--border-dark); transition:all .3s; }
.nav::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--grad-stripe); opacity:.7; }
.nav.scrolled { background:rgba(1,16,24,.99); box-shadow:0 4px 24px rgba(1,16,24,.7); }
.nav-logo img { height:28px; }
.nav-links { display:flex; align-items:center; gap:2.2rem; }
.nav-links a { font-family:var(--font-display); font-weight:600; font-size:.84rem; color:rgba(255,255,255,.56); letter-spacing:.01em; transition:color .2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-6px; left:0; width:0; height:2px; background:var(--grad-cyan); border-radius:1px; transition:width .28s; }
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:var(--cyan) !important; color:#fff !important; padding:.4rem 1.3rem; border-radius:var(--radius-sm); }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--cyan-dark) !important; transform:translateY(-1px); box-shadow:var(--shadow-cyan); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:1px; transition:all .3s; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display:none; flex-direction:column; background:var(--navy-deeper); border-bottom:1px solid var(--border-dark); padding:1.5rem 2.5rem; gap:.5rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-display); font-weight:600; font-size:.9rem; color:rgba(255,255,255,.58); padding:.65rem 0; border-bottom:1px solid var(--border-dark); transition:color .2s; }
.mobile-menu a:hover { color:var(--cyan-bright); }

/* ── HERO: SPLIT DARK LEFT + CONTENT RIGHT ── */
.hero { min-height:100vh; background:var(--grad-hero); display:flex; flex-direction:column; position:relative; overflow:hidden; padding-top:68px; }

/* Road line at very bottom of hero */
.hero-road { position:absolute; bottom:0; left:0; right:0; height:4px; background:var(--grad-road); opacity:.5; }

/* Subtle horizontal rule lines — "highway lines" motif */
.hero-lines { position:absolute; inset:0; background-image:linear-gradient(rgba(24,152,204,.04) 1px, transparent 1px); background-size:100% 60px; pointer-events:none; }

.hero-inner { display:grid; grid-template-columns:1fr 1fr; flex:1; }

/* Left: dark map panel */
.hero-map-panel { position:relative; padding:4rem 3.5rem 4rem 5rem; display:flex; flex-direction:column; justify-content:center; border-right:1px solid rgba(24,152,204,.12); }

/* Right: content panel */
.hero-content { padding:4rem 5rem 4rem 3.5rem; display:flex; flex-direction:column; justify-content:center; }

.h-label { display:flex; align-items:center; gap:.7rem; font-family:var(--font-display); font-size:.68rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--cyan-bright); margin-bottom:1.75rem; animation:fadeUp .5s both; }
.h-label-line { width:32px; height:1.5px; background:var(--grad-cyan); border-radius:1px; }

.hero-h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.4rem,3.8vw,4.4rem); line-height:1.06; color:#fff; margin-bottom:1.5rem; letter-spacing:-.03em; animation:fadeUp .5s .1s both; }
.hero-h1 .cyan { color:var(--cyan-bright); }
.hero-h1 .white { color:#fff; }

.hero-sub { font-size:1rem; line-height:1.8; color:var(--text-on-dark); max-width:440px; margin-bottom:2.5rem; animation:fadeUp .5s .2s both; }
.hero-actions { display:flex; gap:.85rem; flex-wrap:wrap; margin-bottom:3rem; animation:fadeUp .5s .3s both; }

/* Key facts strip below buttons */
.hero-facts { display:flex; flex-direction:column; gap:.75rem; animation:fadeUp .5s .4s both; }
.hf-row { display:flex; align-items:center; gap:.75rem; }
.hf-icon { width:32px; height:32px; background:rgba(24,152,204,.12); border:1px solid rgba(24,152,204,.22); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:.85rem; flex-shrink:0; }
.hf-text { font-family:var(--font-display); font-size:.8rem; font-weight:500; color:rgba(255,255,255,.55); }
.hf-text strong { color:rgba(255,255,255,.82); font-weight:700; }

/* Stat bar below hero */
.hero-stat-bar { background:var(--navy-deep); border-top:1px solid rgba(24,152,204,.15); display:grid; grid-template-columns:repeat(4,1fr); }
.hsb-cell { padding:1.6rem 2rem; border-right:1px solid rgba(255,255,255,.06); text-align:center; }
.hsb-cell:last-child { border-right:none; }
.hsb-num { font-family:var(--font-display); font-weight:800; font-size:1.9rem; color:#fff; line-height:1; letter-spacing:-.03em; }
.hsb-lbl { font-family:var(--font-display); font-size:.64rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--text-dim); margin-top:.25rem; }

@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(-14px)} to{opacity:1;transform:translateX(0)} }
@keyframes truckMove { 0%{offset-distance:0%} 100%{offset-distance:100%} }
@keyframes dashDraw { from{stroke-dashoffset:600} to{stroke-dashoffset:0} }

/* ── LAYOUT ── */
.container { max-width:1280px; margin:0 auto; padding:0 2.5rem; }
.container-narrow { max-width:1060px; margin:0 auto; padding:0 2.5rem; }
.section-pad { padding:7rem 0; }

.s-eyebrow { display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-display); font-size:.68rem; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--cyan); margin-bottom:.85rem; }
.ey-dash { width:20px; height:1.5px; background:var(--cyan); border-radius:1px; flex-shrink:0; }
.s-eyebrow-navy { color:var(--navy); }
.s-eyebrow-navy .ey-dash { background:var(--navy); }
.s-title { font-family:var(--font-display); font-weight:800; font-size:clamp(1.9rem,3.2vw,2.85rem); line-height:1.1; color:var(--navy-ink); margin-bottom:1rem; letter-spacing:-.03em; }
.s-title .cyan { color:var(--cyan); }
.s-title .navy { color:var(--navy); }
.s-sub { font-size:1rem; line-height:1.8; color:var(--text-light); max-width:520px; }
.on-dark .s-title { color:#fff; }
.on-dark .s-sub { color:var(--text-on-dark); }

/* ── SERVICE CARDS ── */
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.svc-card { background:var(--white); border:1px solid var(--border); border-left:4px solid var(--cyan); border-radius:0 var(--radius-lg) var(--radius-lg) 0; padding:2rem; transition:all .3s; }
.svc-card:hover { transform:translateX(4px); box-shadow:var(--shadow-cyan); border-left-color:var(--navy); }
.svc-ico { font-size:1.5rem; margin-bottom:1rem; }
.svc-name { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--navy-ink); margin-bottom:.4rem; letter-spacing:-.01em; }
.svc-desc { font-size:.88rem; line-height:1.65; color:var(--text-light); margin-bottom:1rem; }
.svc-link { font-family:var(--font-display); font-size:.75rem; font-weight:700; color:var(--cyan); display:inline-flex; align-items:center; gap:.35rem; transition:gap .2s; }
.svc-card:hover .svc-link { gap:.6rem; color:var(--navy); }

/* ── ABOUT: DARK NAVY ── */
.about-section { background:var(--navy-deeper); padding:7rem 0; position:relative; overflow:hidden; }
.about-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(24,152,204,.04) 1px, transparent 1px); background-size:100% 55px; pointer-events:none; }
.about-section::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:70px; background:var(--off-white); clip-path:polygon(0 100%,100% 20%,100% 100%); }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; position:relative; z-index:1; }

/* Capability list */
.cap-list { display:flex; flex-direction:column; gap:.7rem; }
.cap-item { display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:start; padding:1rem 1.2rem; background:rgba(24,152,204,.05); border:1px solid rgba(24,152,204,.1); border-radius:var(--radius); transition:all .25s; }
.cap-item:hover { background:rgba(24,152,204,.1); border-color:rgba(24,152,204,.25); }
.cap-ico { width:34px; height:34px; background:rgba(24,152,204,.12); border:1px solid rgba(24,152,204,.2); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.cap-title { font-family:var(--font-display); font-weight:700; font-size:.9rem; color:#fff; margin-bottom:.1rem; }
.cap-desc { font-size:.83rem; color:var(--text-dim); line-height:1.55; }

/* Stats grid dark */
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.as-card { padding:1.75rem; border-radius:var(--radius); text-align:center; transition:transform .25s; }
.as-card:hover { transform:translateY(-4px); }
.as-card:nth-child(1) { background:var(--grad-cyan); box-shadow:var(--shadow-cyan); }
.as-card:nth-child(2) { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); }
.as-card:nth-child(3) { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); }
.as-card:nth-child(4) { background:var(--grad-navy); box-shadow:var(--shadow-navy); }
.as-num { font-family:var(--font-display); font-weight:800; font-size:2.6rem; color:#fff; line-height:1; letter-spacing:-.04em; }
.as-lbl { font-family:var(--font-display); font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.62); margin-top:.3rem; }

/* ── CYAN STAT BAND ── */
.stat-band { background:var(--grad-cyan); padding:3.5rem 0; }
.stat-inner { display:grid; grid-template-columns:repeat(4,1fr); }
.sc-cell { text-align:center; padding:1.5rem 1rem; border-right:1px solid rgba(255,255,255,.2); }
.sc-cell:last-child { border-right:none; }
.sc-num { font-family:var(--font-display); font-weight:800; font-size:2.8rem; color:#fff; line-height:1; letter-spacing:-.04em; }
.sc-lbl { font-family:var(--font-display); font-size:.66rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:.3rem; }

/* ── FEATURES ── */
.feat-row { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:3rem; }
.feat-item { padding:2rem; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); display:flex; gap:1.25rem; transition:all .28s; position:relative; overflow:hidden; }
.feat-item::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--grad-cyan); transform:scaleY(0); transform-origin:top; transition:transform .3s; }
.feat-item:hover { border-color:var(--cyan); box-shadow:var(--shadow-cyan); }
.feat-item:hover::before { transform:scaleY(1); }
.fi-num { font-family:var(--font-display); font-weight:800; font-size:2.2rem; color:rgba(24,152,204,.1); line-height:1; flex-shrink:0; width:52px; }
.fi-title { font-family:var(--font-display); font-weight:700; font-size:.96rem; color:var(--navy-ink); margin-bottom:.35rem; letter-spacing:-.01em; }
.fi-desc { font-size:.88rem; color:var(--text-light); line-height:1.7; }

/* ── TIMELINE ── */
.timeline { position:relative; margin-top:3.5rem; }
.timeline::before { content:''; position:absolute; top:22px; left:0; right:0; height:2px; background:linear-gradient(90deg, var(--cyan), var(--navy-mid)); opacity:.3; }
.tl-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.tl-item { padding:0 1.5rem 0 0; text-align:left; }
.tl-dot { width:14px; height:14px; border-radius:50%; background:var(--cyan); border:3px solid var(--white); box-shadow:0 0 0 2px var(--cyan); margin-bottom:1.2rem; position:relative; z-index:1; }
.tl-year { font-family:var(--font-display); font-weight:800; font-size:1.1rem; color:var(--cyan); margin-bottom:.2rem; letter-spacing:-.02em; }
.tl-title { font-family:var(--font-display); font-weight:700; font-size:.88rem; color:var(--navy-ink); margin-bottom:.25rem; }
.tl-desc { font-size:.82rem; color:var(--text-light); line-height:1.6; }

/* ── INDUSTRIES ── */
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
.ind-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; transition:all .3s; }
.ind-card:hover { border-color:var(--cyan); box-shadow:var(--shadow-cyan); transform:translateY(-3px); }
.ii-ico { font-size:1.85rem; margin-bottom:.75rem; }
.ii-name { font-family:var(--font-display); font-weight:700; font-size:.97rem; color:var(--navy-ink); margin-bottom:.35rem; letter-spacing:-.01em; }
.ii-desc { font-size:.85rem; color:var(--text-light); line-height:1.6; }

/* ── CERT ── */
.cert-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
.cert-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:2rem; position:relative; overflow:hidden; transition:all .28s; }
.cert-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-stripe); }
.cert-card:hover { border-color:var(--cyan); box-shadow:var(--shadow-cyan); transform:translateY(-3px); }
.cert-name { font-family:var(--font-display); font-weight:800; font-size:1.4rem; color:var(--navy); margin-bottom:.2rem; letter-spacing:-.02em; }
.cert-full { font-size:.7rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--text-xlight); margin-bottom:.65rem; }
.cert-desc { font-size:.87rem; color:var(--text-light); line-height:1.65; }

/* ── SERVICE DETAIL ROWS ── */
.svc-detail-row { display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--border); }
.svc-detail-row:last-child { border-bottom:none; }
.sdr-text { padding:4.5rem; }
.sdr-visual { background:var(--off-white); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:.75rem; position:relative; overflow:hidden; min-height:300px; border-left:1px solid var(--border); }
.sdr-vis-ico { font-size:5rem; position:relative; z-index:1; }
.sdr-vis-ghost { position:absolute; font-family:var(--font-display); font-weight:800; font-size:6rem; color:rgba(24,152,204,.04); bottom:.5rem; right:1rem; line-height:1; letter-spacing:-.04em; }
.sdr-vis-lines { position:absolute; inset:0; background-image:linear-gradient(rgba(24,152,204,.05) 1px, transparent 1px); background-size:100% 40px; }
.sdr-eyebrow { font-family:var(--font-display); font-size:.68rem; font-weight:700; letter-spacing:.26em; text-transform:uppercase; color:var(--cyan); margin-bottom:.75rem; }
.sdr-title { font-family:var(--font-display); font-weight:800; font-size:clamp(1.7rem,2.8vw,2.3rem); color:var(--navy-ink); margin-bottom:1rem; line-height:1.1; letter-spacing:-.03em; }
.sdr-desc { font-size:.97rem; line-height:1.8; color:var(--text-light); margin-bottom:1.5rem; }
.sdr-list { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.75rem; }
.sdr-list li { display:flex; align-items:center; gap:.7rem; font-size:.9rem; color:var(--text-body); }
.sdr-list li::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--cyan); flex-shrink:0; }
.tag-row { display:flex; flex-wrap:wrap; gap:.4rem; }
.stag { background:var(--cyan-pale); border:1px solid var(--border-cyan); color:var(--navy); padding:.2rem .7rem; border-radius:2px; font-family:var(--font-display); font-size:.67rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.svc-detail-row:nth-child(even) .sdr-text { order:2; }
.svc-detail-row:nth-child(even) .sdr-visual { order:1; border-left:none; border-right:1px solid var(--border); }

/* ── CTA ── */
.cta-section { background:var(--navy-deeper); padding:7rem 2.5rem; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(24,152,204,.05) 1px, transparent 1px); background-size:100% 55px; pointer-events:none; }
.cta-section::after { content:''; position:absolute; top:-1px; left:0; right:0; height:55px; background:var(--off-white); clip-path:polygon(0 0,100% 55%,100% 0); }
.cta-section.after-white::after { background:var(--white); }
.cta-inner { text-align:center; position:relative; z-index:1; max-width:660px; margin:0 auto; }
.cta-title { font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,4vw,3.4rem); line-height:1.1; color:#fff; margin-bottom:.8rem; letter-spacing:-.04em; }
.cta-title .cyan { color:var(--cyan-bright); }
.cta-sub { font-size:1rem; color:var(--text-on-dark); margin-bottom:2.25rem; }

/* ── PAGE HERO ── */
.page-hero { background:var(--grad-hero); padding:9rem 2.5rem 5.5rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(24,152,204,.04) 1px, transparent 1px); background-size:100% 55px; pointer-events:none; }
.page-hero::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:60px; background:var(--off-white); clip-path:polygon(0 100%,100% 0,100% 100%); }
.page-hero.after-white::after { background:var(--white); }
.ph-stripe { position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-stripe); }
.ph-inner { max-width:1280px; margin:0 auto; position:relative; z-index:1; }
.breadcrumb { display:flex; gap:.4rem; font-family:var(--font-display); font-size:.7rem; color:var(--text-xdim); margin-bottom:1.5rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.breadcrumb a { color:var(--text-xdim); transition:color .2s; }
.breadcrumb a:hover { color:var(--cyan-bright); }
.breadcrumb .sep { color:rgba(255,255,255,.1); }
.page-hero h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.8rem,5.5vw,5rem); line-height:1.06; color:#fff; margin-bottom:1rem; letter-spacing:-.04em; }
.page-hero h1 .cyan { color:var(--cyan-bright); }
.page-hero .ph-sub { font-size:1.05rem; color:var(--text-on-dark); max-width:520px; line-height:1.75; }

/* ── CONTACT ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.ci-block { display:flex; gap:1.1rem; align-items:flex-start; padding:1.2rem; border-radius:var(--radius); border:1px solid var(--border); transition:all .25s; margin-bottom:1rem; }
.ci-block:hover { border-color:var(--cyan); box-shadow:var(--shadow-sm); }
.ci-ico { width:40px; height:40px; background:var(--cyan-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-lbl { font-family:var(--font-display); font-size:.65rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--cyan); margin-bottom:.28rem; }
.ci-val { font-size:.94rem; color:var(--text-body); line-height:1.55; }
.ci-val a { color:var(--navy); transition:color .2s; }
.ci-val a:hover { color:var(--cyan); }

/* FAQ */
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.3rem 0; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:.94rem; color:var(--navy-ink); transition:color .2s; letter-spacing:-.01em; }
.faq-q:hover { color:var(--cyan); }
.faq-tog { width:26px; height:26px; border-radius:var(--radius-sm); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--cyan); font-size:1rem; font-weight:700; transition:all .25s; }
.faq-item.open .faq-tog { background:var(--cyan); border-color:var(--cyan); color:#fff; transform:rotate(45deg); }
.faq-ans { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-ans { max-height:200px; }
.faq-ans p { font-size:.93rem; color:var(--text-light); line-height:1.7; padding-bottom:1.2rem; }

/* ── POLICY ── */
.pol-layout { display:grid; grid-template-columns:200px 1fr; gap:5rem; }
.pol-sidebar { position:sticky; top:88px; }
.pol-nav-ttl { font-family:var(--font-display); font-size:.67rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:var(--text-xlight); margin-bottom:1rem; }
.pol-nav a { display:block; font-size:.85rem; color:var(--text-light); padding:.32rem 0 .32rem .8rem; border-left:2px solid var(--border); transition:all .2s; margin-bottom:.2rem; font-weight:500; }
.pol-nav a:hover { color:var(--cyan); border-left-color:var(--cyan); }
.pol-body h2 { font-family:var(--font-display); font-weight:700; font-size:1.25rem; color:var(--navy-ink); margin:3rem 0 .8rem; padding-bottom:.5rem; border-bottom:2px solid var(--cyan-pale); letter-spacing:-.01em; }
.pol-body p,.pol-body li { font-size:.94rem; line-height:1.8; color:var(--text-light); margin-bottom:.85rem; }
.pol-body ul { margin:.6rem 0 .85rem 1.2rem; }
.pol-body strong { color:var(--navy-ink); }
.pol-body a { color:var(--cyan); }

/* ── FOOTER ── */
footer { background:var(--navy-ink); }
.foot-stripe { height:3px; background:var(--grad-stripe); }
.foot-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:4rem; padding:5rem 0 3.5rem; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:2rem; }
.foot-brand img { height:26px; margin-bottom:1.2rem; }
.foot-brand p { font-size:.87rem; line-height:1.7; color:rgba(255,255,255,.62); margin-bottom:1rem; }
.foot-brand address { font-style:normal; font-size:.82rem; color:rgba(255,255,255,.50); line-height:1.8; }
.foot-col-ttl { font-family:var(--font-display); font-size:.66rem; font-weight:700; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.40); margin-bottom:1.2rem; }
.foot-links { display:flex; flex-direction:column; gap:.55rem; }
.foot-links a { font-size:.87rem; color:rgba(255,255,255,.62); transition:color .2s; }
.foot-links a:hover { color:var(--cyan-bright); }
.foot-btm { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; padding-bottom:2.5rem; }
.foot-btm p,.foot-btm a { font-size:.8rem; color:rgba(255,255,255,.40); }
.foot-btm a:hover { color:var(--cyan-bright); }
.foot-btm-links { display:flex; gap:2rem; }
.foot-accent { color:var(--cyan-bright); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:44px; height:44px; background:var(--grad-cyan); border:none; border-radius:var(--radius-sm); cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-cyan); opacity:0; transform:translateY(12px); transition:opacity .3s,transform .3s; z-index:999; pointer-events:none; }
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover { filter:brightness(1.1); transform:translateY(-3px) !important; }
.back-to-top svg { width:18px; height:18px; stroke:#fff; stroke-width:2.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .hero-inner{grid-template-columns:1fr;}.hero-map-panel{display:none;}.hero-content{padding:4rem 3rem 5rem;}.about-inner{grid-template-columns:1fr;gap:3rem;}.contact-grid{grid-template-columns:1fr;gap:2.5rem;}.pol-layout{grid-template-columns:1fr;}.pol-sidebar{display:none;}.foot-grid{grid-template-columns:1fr 1fr;gap:3rem;}.svc-detail-row{grid-template-columns:1fr;}.sdr-visual{min-height:180px;border-left:none !important;border-right:none !important;border-top:1px solid var(--border);}.svc-detail-row:nth-child(even) .sdr-text,.svc-detail-row:nth-child(even) .sdr-visual{order:unset;}.sdr-text{padding:3rem 2rem;}.tl-grid{grid-template-columns:1fr 1fr;gap:2rem;}.timeline::before{display:none;}.cert-grid{grid-template-columns:1fr 1fr;}.feat-row{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}.hamburger{display:flex;}.svc-grid{grid-template-columns:1fr;}.hero-stat-bar{grid-template-columns:1fr 1fr;}.stat-inner{grid-template-columns:1fr 1fr;}.sc-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);}.sc-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.12);}.ind-grid{grid-template-columns:1fr 1fr;}.cert-grid{grid-template-columns:1fr;}.foot-grid{grid-template-columns:1fr;}.foot-btm{flex-direction:column;text-align:center;}.section-pad{padding:4.5rem 0;}.cta-section{padding:5rem 1.5rem;}.tl-grid{grid-template-columns:1fr;}
}
@media(max-width:480px){
  .ind-grid{grid-template-columns:1fr;}.hero-stat-bar{grid-template-columns:1fr 1fr;}.hsb-cell{border-bottom:1px solid rgba(255,255,255,.06);}.hsb-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.06);}
}
