@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─────────────────────────────────────
   EXACT LOGO PALETTE
   blue      #1c74bc — MASTER MIND text + building shapes
   royal     #1074e0 — building gradient highlight
   sky       #08ace4 — building top highlights
   amber     #f4941c — INFRASTRUCTURE text + house/arch
   amber-dk  #dc9814 — amber gradient shadow
───────────────────────────────────── */
:root {
  --blue:        #1c74bc;
  --blue-royal:  #1074e0;
  --blue-sky:    #08ace4;
  --blue-dark:   #0d4f8a;
  --blue-deep:   #06294a;
  --blue-deeper: #041a30;
  --blue-pale:   #e8f2fb;
  --blue-glow:   rgba(28,116,188,.18);

  --amber:       #f4941c;
  --amber-dark:  #dc7c08;
  --amber-light: #f8b054;
  --amber-pale:  #fff7ed;
  --amber-deep:  #7a3a00;

  --sky:         #08ace4;
  --sky-pale:    #e0f5fb;

  --white:       #ffffff;
  --off-white:   #f6f8fa;
  --grey-50:     #eef1f5;
  --grey-100:    #e0e6ed;
  --grey-200:    #c4cedb;
  --grey-300:    #96a8bc;
  --grey-400:    #6a849a;
  --ink:         #0b1c2c;
  --text-body:   #1e3448;
  --text-light:  #456070;
  --text-xlight: #7a98ac;
  --border:      #d8e4ef;
  --border-blue: rgba(28,116,188,.15);
  --border-amber:rgba(244,148,28,.18);

  --border-dark: rgba(255,255,255,.08);
  --text-on-dark: rgba(255,255,255,.78);
  --text-dim:    rgba(255,255,255,.48);
  --text-xdim:   rgba(255,255,255,.24);

  --grad-blue:   linear-gradient(135deg, #1074e0 0%, #06294a 100%);
  --grad-hero:   linear-gradient(160deg, #041a30 0%, #06294a 50%, #0d4f8a 100%);
  --grad-amber:  linear-gradient(135deg, #f4941c 0%, #dc7c08 100%);
  --grad-sky:    linear-gradient(135deg, #08ace4 0%, #1074e0 100%);
  --grad-dual:   linear-gradient(135deg, #1074e0 0%, #08ace4 50%, #f4941c 100%);

  --shadow-sm:   0 2px 8px rgba(6,41,74,.08);
  --shadow-md:   0 6px 24px rgba(6,41,74,.14);
  --shadow-lg:   0 16px 48px rgba(6,41,74,.22);
  --shadow-blue: 0 8px 32px rgba(16,116,224,.28);
  --shadow-amber:0 8px 32px rgba(244,148,28,.28);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Outfit', 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(--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-amber { background:var(--grad-amber); color:#fff; box-shadow:var(--shadow-amber); }
.btn-amber:hover { background:var(--amber-dark); transform:translateY(-2px); box-shadow:0 12px 36px rgba(244,148,28,.42); }
.btn-blue { background:var(--grad-blue); color:#fff; box-shadow:var(--shadow-blue); }
.btn-blue:hover { background:var(--blue-royal); transform:translateY(-2px); }
.btn-outline-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background:rgba(255,255,255,.08); border-color:#fff; transform:translateY(-2px); }
.btn-outline-blue { background:transparent; color:var(--blue); border:1.5px solid var(--blue); }
.btn-outline-blue:hover { background:var(--blue); color:#fff; transform:translateY(-2px); }
.btn-outline-amber { background:transparent; color:var(--amber); border:1.5px solid var(--amber); }
.btn-outline-amber:hover { background:var(--amber); color:#fff; transform:translateY(-2px); }
.arr::after { content:' →'; }

/* ── NAV ── */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:70px; display:flex; align-items:center; padding:0 3rem; justify-content:space-between; background:rgba(4,26,48,.94); 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-dual); opacity:.7; }
.nav.scrolled { background:rgba(4,26,48,.98); box-shadow:0 4px 28px rgba(4,26,48,.6); }
.nav-logo img { height:42px; }
.nav-links { display:flex; align-items:center; gap:2.25rem; }
.nav-links a { font-family:var(--font-display); font-weight:500; font-size:.86rem; color:rgba(255,255,255,.58); 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(--amber); 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(--amber) !important; color:#fff !important; padding:.4rem 1.35rem; border-radius:var(--radius-sm); }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--amber-dark) !important; transform:translateY(-1px); }
.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(--blue-deeper); border-bottom:1px solid var(--border-dark); padding:1.5rem 3rem; gap:.5rem; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-display); font-weight:500; font-size:.92rem; 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(--amber-light); }

/* ── HERO: ARCHITECTURAL FULLSCREEN ── */
.hero { min-height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; background:var(--grad-hero); padding-top:70px; }

/* Subtle grid overlay - blueprint feel */
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(8,172,228,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(8,172,228,.05) 1px, transparent 1px); background-size:60px 60px; pointer-events:none; }

/* Amber accent bar — right edge */
.hero-amber-bar { position:absolute; top:0; right:0; bottom:0; width:5px; background:var(--grad-amber); }

/* Bottom wave clip */
.hero-wave { position:absolute; bottom:-1px; left:0; right:0; }

.hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; padding:4rem 5rem 6rem; max-width:1400px; margin:0 auto; width:100%; position:relative; z-index:1; }

/* Left: oversized bold headline */
.h-overline { display:flex; align-items:center; gap:.75rem; font-family:var(--font-display); font-size:.7rem; font-weight:600; letter-spacing:.32em; text-transform:uppercase; color:var(--amber-light); margin-bottom:1.75rem; animation:fadeLeft .5s both; }
.h-over-dot { width:6px; height:6px; border-radius:50%; background:var(--amber); flex-shrink:0; }
.h-over-line { flex:1; height:1px; background:linear-gradient(90deg, var(--amber-light), transparent); max-width:80px; }

.hero-h1 { font-family:var(--font-display); font-weight:700; font-size:clamp(2.6rem,4.5vw,5rem); line-height:1.05; color:#fff; margin-bottom:1.5rem; letter-spacing:-.02em; animation:fadeLeft .5s .1s both; }
.hero-h1 .amber { color:var(--amber); }
.hero-h1 .sky { color:var(--sky); }

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

/* Credential strip */
.hero-creds { display:flex; gap:1.5rem; flex-wrap:wrap; animation:fadeLeft .5s .4s both; }
.hcred { display:flex; align-items:center; gap:.5rem; font-family:var(--font-display); font-size:.72rem; font-weight:500; color:var(--text-dim); }
.hcred-dot { width:4px; height:4px; background:var(--amber); border-radius:50%; flex-shrink:0; }

/* Right: blueprint SVG */
.hero-visual { animation:fadeRight .7s .2s both; }

@keyframes fadeLeft { from{opacity:0;transform:translateX(-20px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── AMBER HIGHLIGHT BAND ── */
.amber-band { background:var(--grad-amber); padding:2.5rem 0; }
.amber-band-inner { display:grid; grid-template-columns:repeat(4,1fr); }
.ab-cell { text-align:center; padding:1rem; border-right:1px solid rgba(255,255,255,.2); }
.ab-cell:last-child { border-right:none; }
.ab-num { font-family:var(--font-display); font-weight:700; font-size:2.4rem; color:#fff; line-height:1; }
.ab-lbl { font-family:var(--font-display); font-size:.68rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.65); margin-top:.3rem; }

/* ── 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:.6rem; font-family:var(--font-display); font-size:.7rem; font-weight:600; letter-spacing:.28em; text-transform:uppercase; color:var(--amber); margin-bottom:.85rem; }
.ey-dot { width:5px; height:5px; background:var(--amber); border-radius:50%; flex-shrink:0; }
.s-eyebrow-blue { color:var(--blue); }
.s-eyebrow-blue .ey-dot { background:var(--blue); }
.s-eyebrow-sky { color:var(--sky); }
.s-eyebrow-sky .ey-dot { background:var(--sky); }
.s-title { font-family:var(--font-display); font-weight:700; font-size:clamp(1.9rem,3.2vw,2.85rem); line-height:1.1; color:var(--ink); margin-bottom:1rem; letter-spacing:-.02em; }
.s-title .amber { color:var(--amber); }
.s-title .blue { color:var(--blue); }
.s-title .sky { color:var(--sky); }
.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); }

/* ── SERVICES GRID ── */
.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-radius:var(--radius-lg); padding:2.25rem; transition:all .3s; position:relative; overflow:hidden; }
.svc-card::after { content:''; position:absolute; inset:0; border-radius:var(--radius-lg); box-shadow:0 0 0 2px var(--amber); opacity:0; transition:opacity .3s; pointer-events:none; }
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.svc-card:hover::after { opacity:1; }
.svc-ico { width:50px; height:50px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1.2rem; background:var(--amber-pale); transition:background .3s; }
.svc-card:hover .svc-ico { background:var(--blue-pale); }
.svc-name { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.45rem; letter-spacing:-.01em; }
.svc-desc { font-size:.88rem; line-height:1.65; color:var(--text-light); margin-bottom:1.1rem; }
.svc-link { font-family:var(--font-display); font-size:.76rem; font-weight:600; color:var(--amber); display:inline-flex; align-items:center; gap:.35rem; transition:gap .2s,color .2s; }
.svc-card:hover .svc-link { gap:.6rem; color:var(--blue-royal); }

/* ── ABOUT: DARK WITH GLASS CARDS ── */
.about-section { background:var(--blue-deeper); padding:7rem 0; position:relative; overflow:hidden; }
.about-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(8,172,228,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(8,172,228,.04) 1px,transparent 1px); background-size:50px 50px; 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% 0,100% 100%); }
.about-section.alt-next::after { background:var(--white); }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; position:relative; z-index:1; }

/* Glass capability cards */
.glass-list { display:flex; flex-direction:column; gap:.75rem; }
.glass-item { display:flex; align-items:flex-start; gap:1rem; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:1.1rem 1.25rem; transition:all .25s; }
.glass-item:hover { background:rgba(255,255,255,.09); border-color:rgba(244,148,28,.3); }
.gi-ico { font-size:1.2rem; flex-shrink:0; width:36px; height:36px; background:rgba(244,148,28,.1); border:1px solid rgba(244,148,28,.2); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; }
.gi-title { font-family:var(--font-display); font-weight:600; font-size:.93rem; color:#fff; margin-bottom:.15rem; }
.gi-desc { font-size:.85rem; color:var(--text-dim); line-height:1.55; }

/* About stats */
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.ast { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); padding:1.75rem; text-align:center; transition:all .25s; border-top:2px solid transparent; }
.ast:nth-child(1) { border-top-color:var(--amber); }
.ast:nth-child(2) { border-top-color:var(--sky); }
.ast:nth-child(3) { border-top-color:var(--sky); }
.ast:nth-child(4) { border-top-color:var(--amber); }
.ast:hover { background:rgba(255,255,255,.09); transform:translateY(-3px); }
.ast-num { font-family:var(--font-display); font-weight:700; font-size:2.6rem; color:#fff; line-height:1; letter-spacing:-.02em; }
.ast-lbl { font-family:var(--font-display); font-size:.66rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--text-dim); margin-top:.3rem; }

/* ── EXPERTISE AREA: LIGHT ── */
.exp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
.exp-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; transition:all .3s; position:relative; overflow:hidden; }
.exp-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-dual); transform:scaleX(0); transform-origin:left; transition:transform .35s; }
.exp-card:hover { box-shadow:var(--shadow-blue); transform:translateY(-4px); border-color:var(--blue-pale); }
.exp-card:hover::before { transform:scaleX(1); }
.ec-num { font-family:var(--font-display); font-weight:700; font-size:2.5rem; color:rgba(28,116,188,.08); line-height:1; margin-bottom:.4rem; letter-spacing:-.03em; }
.ec-title { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.4rem; letter-spacing:-.01em; }
.ec-desc { font-size:.87rem; color:var(--text-light); line-height:1.65; }

/* ── PROCESS ── */
.process-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:3rem; position:relative; }
.process-row::before { content:''; position:absolute; top:28px; left:12.5%; right:12.5%; height:1px; background:linear-gradient(90deg,var(--amber),var(--sky)); opacity:.25; pointer-events:none; }
.ps { padding:2.5rem 1.5rem; text-align:center; }
.ps-circle { width:56px; height:56px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--blue); margin:0 auto 1.2rem; background:var(--white); position:relative; z-index:1; transition:all .3s; }
.ps:hover .ps-circle { border-color:var(--amber); color:var(--amber); background:var(--amber-pale); }
.ps-title { font-family:var(--font-display); font-weight:700; font-size:.95rem; color:var(--ink); margin-bottom:.4rem; letter-spacing:-.01em; }
.ps-desc { font-size:.85rem; color:var(--text-light); line-height:1.65; }

/* ── COMPLIANCE / CERTS ── */
.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; bottom:0; left:0; right:0; height:3px; background:var(--amber); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.cert-card:hover { border-color:var(--amber); box-shadow:var(--shadow-amber); transform:translateY(-3px); }
.cert-card:hover::before { transform:scaleX(1); }
.cert-name { font-family:var(--font-display); font-weight:700; font-size:1.4rem; color:var(--blue); 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; }

/* ── SERVICES DETAIL ── */
.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:4.5rem; position:relative; z-index:1; }
.sdr-vis-ghost { position:absolute; font-family:var(--font-display); font-weight:700; font-size:6rem; color:rgba(28,116,188,.04); bottom:.5rem; right:1rem; line-height:1; letter-spacing:-.04em; }
.sdr-vis-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(28,116,188,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(28,116,188,.05) 1px,transparent 1px); background-size:30px 30px; }
.sdr-eyebrow { font-family:var(--font-display); font-size:.68rem; font-weight:600; letter-spacing:.26em; text-transform:uppercase; color:var(--amber); margin-bottom:.75rem; }
.sdr-title { font-family:var(--font-display); font-weight:700; font-size:clamp(1.7rem,2.8vw,2.3rem); color:var(--ink); margin-bottom:1rem; line-height:1.08; letter-spacing:-.02em; }
.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:6px; height:6px; border-radius:50%; background:var(--amber); flex-shrink:0; }
.tag-row { display:flex; flex-wrap:wrap; gap:.4rem; }
.stag { background:var(--blue-pale); border:1px solid var(--border-blue); color:var(--blue); padding:.2rem .7rem; border-radius:50px; font-family:var(--font-display); font-size:.68rem; font-weight:600; }
.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); }

/* ── IND GRID ── */
.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(--amber); box-shadow:var(--shadow-amber); 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(--ink); margin-bottom:.35rem; letter-spacing:-.01em; }
.ii-desc { font-size:.85rem; color:var(--text-light); line-height:1.6; }

/* ── CTA ── */
.cta-section { background:var(--blue-deeper); padding:7rem 2.5rem; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(8,172,228,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(8,172,228,.04) 1px,transparent 1px); background-size:50px 50px; pointer-events:none; }
.cta-section::after { content:''; position:absolute; top:-1px; left:0; right:0; height:60px; background:var(--off-white); clip-path:polygon(0 0,100% 100%,0 100%); }
.cta-section.after-white::after { background:var(--white); }
.cta-inner { text-align:center; position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cta-title { font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,4vw,3.4rem); line-height:1.08; color:#fff; margin-bottom:.8rem; letter-spacing:-.02em; }
.cta-title .amber { color:var(--amber); }
.cta-sub { font-size:1rem; color:var(--text-on-dark); margin-bottom:2.25rem; }

/* ── PAGE HERO ── */
.page-hero { background:var(--blue-deeper); padding:9rem 2.5rem 5.5rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(8,172,228,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(8,172,228,.04) 1px,transparent 1px); background-size:50px 50px; 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-dual-bar { position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad-dual); }
.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:.72rem; color:var(--text-xdim); margin-bottom:1.5rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.breadcrumb a { color:var(--text-xdim); transition:color .2s; }
.breadcrumb a:hover { color:var(--amber-light); }
.breadcrumb .sep { color:rgba(255,255,255,.1); }
.page-hero h1 { font-family:var(--font-display); font-weight:700; font-size:clamp(2.8rem,5.5vw,5rem); line-height:1.04; color:#fff; margin-bottom:1rem; letter-spacing:-.03em; }
.page-hero h1 .amber { color:var(--amber); }
.page-hero h1 .sky { color:var(--sky); }
.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.25rem; border-radius:var(--radius); border:1px solid var(--border); transition:all .25s; margin-bottom:1rem; }
.ci-block:hover { border-color:var(--amber); box-shadow:var(--shadow-sm); }
.ci-ico { width:40px; height:40px; background:var(--amber-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:.66rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--amber); margin-bottom:.28rem; }
.ci-val { font-size:.94rem; color:var(--text-body); line-height:1.55; }
.ci-val a { color:var(--blue); transition:color .2s; }
.ci-val a:hover { color:var(--amber); }

/* 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:600; font-size:.95rem; color:var(--ink); transition:color .2s; letter-spacing:-.01em; }
.faq-q:hover { color:var(--amber); }
.faq-tog { width:26px; height:26px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--amber); font-size:1rem; font-weight:700; transition:all .25s; }
.faq-item.open .faq-tog { background:var(--amber); border-color:var(--amber); color:#fff; transform:rotate(45deg); }
.faq-ans { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-ans { max-height:220px; }
.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:90px; }
.pol-nav-ttl { font-family:var(--font-display); font-size:.68rem; font-weight:600; 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(--amber); border-left-color:var(--amber); }
.pol-body h2 { font-family:var(--font-display); font-weight:700; font-size:1.25rem; color:var(--ink); margin:3rem 0 .8rem; padding-bottom:.5rem; border-bottom:2px solid var(--amber-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(--ink); }
.pol-body a { color:var(--blue); }

/* ── FOOTER ── */
footer { background:var(--blue-deeper); border-top:3px solid transparent; border-image:var(--grad-dual) 1; }
.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,.08); margin-bottom:2rem; }
.foot-brand img { height:40px; 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,.52); line-height:1.8; }
.foot-col-ttl { font-family:var(--font-display); font-size:.68rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.42); 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(--amber-light); }
.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,.42); }
.foot-btm a:hover { color:var(--amber-light); }
.foot-btm-links { display:flex; gap:2rem; }
.foot-accent { color:var(--amber-light); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:44px; height:44px; background:var(--amber); border:none; border-radius:var(--radius-sm); cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-amber); 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 { background:var(--amber-dark); 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;gap:3rem;padding:4rem 3rem 6rem;}.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;}.cert-grid{grid-template-columns:1fr 1fr;}.process-row{grid-template-columns:1fr 1fr;}.process-row::before{display:none;}
}
@media(max-width:768px){
  .nav-links{display:none;}.hamburger{display:flex;}.svc-grid{grid-template-columns:1fr;}.amber-band-inner{grid-template-columns:1fr 1fr;}.ab-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.15);}.ab-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.15);}.exp-grid{grid-template-columns:1fr 1fr;}.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;}.hero-inner{padding:3rem 1.5rem 5rem;}
}
@media(max-width:480px){
  .ind-grid,.exp-grid{grid-template-columns:1fr;}.amber-band-inner{grid-template-columns:1fr;}.ab-cell{border-right:none;}.process-row{grid-template-columns:1fr;}
}
