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

/* ─────────────────────────────────────
   EXACT LOGO PALETTE
   red-orange  #ec4034 — GLOBAL REACH text
   grey        #6c6c70 — Corporation text
   gold        #fcb808 — globe top highlight
   deep-orange #e85818 — globe mid
   warm-orange #f49010 — globe gradient
───────────────────────────────────── */
:root {
  /* Brand */
  --red:         #ec4034;
  --red-dark:    #c8281c;
  --red-light:   #f26258;
  --red-pale:    #fff0ef;
  --orange:      #f49010;
  --orange-dark: #e07808;
  --gold:        #fcb808;
  --gold-dark:   #e0a000;
  --gold-pale:   #fff8e0;
  --grey-brand:  #6c6c70;

  /* Navy deep palette */
  --navy:        #0d1f3c;
  --navy-mid:    #122548;
  --navy-light:  #1a3260;
  --navy-pale:   #e8edf5;
  --navy-glow:   rgba(13,31,60,.15);

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --grey-50:     #f2f4f7;
  --grey-100:    #e4e8ef;
  --grey-200:    #c9d0dc;
  --grey-300:    #a8b3c4;
  --grey-400:    #7a8ca0;
  --ink:         #0a1628;
  --text-body:   #2c3a50;
  --text-light:  #5a6a80;
  --text-xlight: #8898aa;
  --border:      #dde2eb;
  --border-navy: rgba(13,31,60,.12);

  /* Dark-on-dark */
  --border-dark: rgba(255,255,255,.08);
  --text-on-dark: rgba(255,255,255,.75);
  --text-dim:    rgba(255,255,255,.45);
  --text-xdim:   rgba(255,255,255,.22);

  /* Gradients */
  --grad-navy:   linear-gradient(160deg, #0d1f3c 0%, #1a3260 100%);
  --grad-hero:   linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #122548 100%);
  --grad-red:    linear-gradient(135deg, #ec4034, #c8281c);
  --grad-gold:   linear-gradient(135deg, #fcb808, #f49010);
  --grad-globe:  linear-gradient(145deg, #fcb808 0%, #f49010 35%, #e85818 65%, #ec4034 100%);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(10,22,40,.08);
  --shadow-md:   0 6px 24px rgba(10,22,40,.14);
  --shadow-lg:   0 16px 48px rgba(10,22,40,.22);
  --shadow-red:  0 8px 32px rgba(236,64,52,.28);
  --shadow-gold: 0 8px 32px rgba(252,184,8,.25);
  --shadow-card: 0 4px 20px rgba(10,22,40,.08);

  /* Fonts */
  --font-display: 'Raleway', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*,*::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:.5rem; font-family:var(--font-display); font-weight:700; font-size:.88rem; letter-spacing:.03em; padding:.78rem 1.9rem; border-radius:4px; border:none; cursor:pointer; transition:all .25s; }
.btn-red { background:var(--grad-red); color:#fff; box-shadow:var(--shadow-red); }
.btn-red:hover { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 12px 40px rgba(236,64,52,.4); }
.btn-gold { background:var(--grad-gold); color:var(--ink); box-shadow:var(--shadow-gold); }
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-2px); }
.btn-navy { background:var(--navy); color:#fff; }
.btn-navy:hover { background:var(--navy-light); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-outline-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6); transform:translateY(-2px); }
.btn-outline-navy { background:transparent; color:var(--navy); border:1.5px solid var(--navy); }
.btn-outline-navy:hover { background:var(--navy); color:#fff; transform:translateY(-2px); }
.btn-outline-red { background:transparent; color:var(--red); border:1.5px solid var(--red); }
.btn-outline-red:hover { background:var(--red); 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; transition:all .3s; background:rgba(10,22,40,.92); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid var(--border-dark); }
.nav.scrolled { background:rgba(10,22,40,.96); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); box-shadow:0 4px 32px rgba(10,22,40,.4); border-bottom:1px solid var(--border-dark); }
.nav-logo img { height:36px; }
.nav-links { display:flex; align-items:center; gap:2.5rem; }
.nav-links a { font-family:var(--font-display); font-weight:600; font-size:.88rem; color:rgba(255,255,255,.6); letter-spacing:.02em; transition:color .2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-5px; left:0; width:0; height:2px; background:var(--gold); transition:width .28s; border-radius:1px; }
.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(--red) !important; color:#fff !important; padding:.44rem 1.35rem; border-radius:4px; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--red-dark) !important; transform:translateY(-1px); box-shadow:var(--shadow-red); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:1.5px; background:#fff; 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); 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:600; font-size:1rem; color:var(--text-dim); padding:.65rem 0; border-bottom:1px solid var(--border-dark); transition:color .2s; }
.mobile-menu a:hover { color:#fff; }

/* ── HERO: FULL-BLEED SPLIT ── */
.hero { min-height:100vh; display:grid; grid-template-columns:55% 45%; position:relative; overflow:hidden; }
.hero-left { background:var(--grad-hero); padding:10rem 4rem 6rem 5rem; display:flex; flex-direction:column; justify-content:center; position:relative; overflow:hidden; }
/* Diagonal right edge */
.hero-left::after { content:''; position:absolute; top:0; right:-60px; bottom:0; width:120px; background:var(--white); clip-path:polygon(60px 0, 100% 0, 100% 100%, 0 100%); z-index:2; }
.hero-right { background:var(--white); padding:10rem 5rem 6rem 5rem; display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; }

/* Gold accent bar */
.hero-left::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad-globe); z-index:3; }

.h-eyebrow { display:inline-flex; align-items:center; gap:.65rem; font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); margin-bottom:1.5rem; }
.h-eye-line { width:28px; height:2px; background:var(--gold); border-radius:1px; }

.hero-h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.6rem,4.5vw,4.8rem); line-height:1.06; color:#fff; margin-bottom:1.5rem; }
.hero-h1 .gold { color:var(--gold); }
.hero-desc { font-size:1rem; line-height:1.8; color:var(--text-on-dark); max-width:420px; margin-bottom:2.5rem; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; }

/* Trust strip */
.hero-trust { display:flex; gap:1.5rem; flex-wrap:wrap; }
.ht-item { display:flex; align-items:center; gap:.5rem; font-size:.78rem; color:var(--text-dim); font-family:var(--font-display); font-weight:600; }
.ht-icon { font-size:.95rem; }

/* Right side content */
.hero-right-inner { animation:fadeUp .7s .2s both; }
.h-stat-row { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-bottom:2rem; }
.h-stat { background:var(--off-white); border:1.5px solid var(--border); border-radius:8px; padding:1.5rem; border-top:3px solid var(--red); transition:all .28s; }
.h-stat:hover { border-color:var(--red); box-shadow:var(--shadow-card); transform:translateY(-3px); }
.h-stat-num { font-family:var(--font-display); font-weight:800; font-size:2.2rem; color:var(--navy); line-height:1; }
.h-stat-lbl { font-size:.76rem; color:var(--text-xlight); margin-top:.2rem; font-weight:500; text-transform:uppercase; letter-spacing:.1em; }
.h-stat:nth-child(2) { border-top-color:var(--gold); }
.h-stat:nth-child(3) { border-top-color:var(--orange); }
.h-stat:nth-child(4) { border-top-color:var(--navy); }

.hero-quote { background:var(--navy); border-radius:8px; padding:1.75rem; position:relative; overflow:hidden; }
.hero-quote::before { content:'"'; position:absolute; top:-.5rem; left:1rem; font-family:var(--font-display); font-size:5rem; color:var(--gold); opacity:.2; line-height:1; }
.hq-text { font-family:var(--font-display); font-style:italic; font-size:.97rem; color:rgba(255,255,255,.8); line-height:1.7; margin-bottom:.75rem; position:relative; z-index:1; }
.hq-author { font-size:.78rem; color:var(--gold); font-weight:700; letter-spacing:.1em; text-transform:uppercase; }

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

/* Globe SVG */
.globe-wrap { position:absolute; bottom:-60px; right:20px; width:340px; height:340px; opacity:.12; pointer-events:none; }

/* ── TRUST BAR ── */
.trust-bar { background:var(--off-white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.5rem 0; }
.trust-row { display:flex; justify-content:center; gap:3rem; flex-wrap:wrap; align-items:center; }
.tb-item { display:flex; align-items:center; gap:.65rem; font-family:var(--font-display); font-size:.8rem; font-weight:700; color:var(--text-light); letter-spacing:.04em; }
.tb-ico { width:36px; height:36px; border-radius:50%; background:var(--navy-pale); display:flex; align-items:center; justify-content:center; font-size:.95rem; }

/* ── 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; }

/* Section heading */
.s-eyebrow { display:inline-flex; align-items:center; gap:.65rem; font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--red); margin-bottom:1rem; }
.ey-line { width:28px; height:2px; background:var(--red); border-radius:1px; flex-shrink:0; }
.ey-line-gold { background:var(--gold); }
.s-eyebrow-gold { color:var(--gold); }
.s-eyebrow-gold .ey-line { background:var(--gold); }
.s-title { font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,3.5vw,3rem); line-height:1.08; color:var(--ink); margin-bottom:1rem; }
.s-title .navy { color:var(--navy); }
.s-title .red { color:var(--red); }
.s-title .gold { color:var(--gold-dark); }
.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-radius:8px; padding:2rem; transition:all .3s; position:relative; overflow:hidden; }
.svc-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--grad-globe); transform:scaleX(0); transform-origin:left; transition:transform .35s; }
.svc-card:hover { border-color:transparent; box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.svc-card:hover::after { transform:scaleX(1); }
.svc-ico { width:52px; height:52px; border-radius:10px; background:var(--navy-pale); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:1.25rem; }
.svc-name { font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:.55rem; }
.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:.8rem; font-weight:700; color:var(--red); display:inline-flex; align-items:center; gap:.35rem; transition:gap .2s; }
.svc-card:hover .svc-link { gap:.65rem; }

/* ── DIAGONAL SECTION ── */
.diag-section { background:var(--grad-navy); position:relative; padding:8rem 0; clip-path:polygon(0 4%,100% 0,100% 96%,0 100%); margin:-3rem 0; }
.diag-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }

/* ── GLOBE ILLUSTRATION ── */
.globe-container { display:flex; align-items:center; justify-content:center; position:relative; }
.globe-svg { width:100%; max-width:380px; }

/* ── STATS BAND ── */
.stats-band { background:var(--navy); padding:4.5rem 0; }
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-cell { text-align:center; padding:1.5rem 2rem; border-right:1px solid rgba(255,255,255,.1); }
.stat-cell:last-child { border-right:none; }
.stat-big { font-family:var(--font-display); font-weight:800; font-size:3.2rem; line-height:1; color:#fff; }
.stat-big.gold { color:var(--gold); }
.stat-big.red { color:var(--red-light); }
.stat-lbl { font-family:var(--font-display); font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--text-dim); margin-top:.35rem; }

/* ── FEATURE ITEMS ── */
.feat-list { display:flex; flex-direction:column; gap:.5rem; }
.feat-item { display:flex; gap:1rem; align-items:flex-start; padding:1rem 1.2rem; border-radius:6px; border:1px solid transparent; transition:all .25s; }
.feat-item:hover { background:rgba(255,255,255,.04); border-color:var(--border-dark); }
.feat-num { font-family:var(--font-display); font-weight:800; font-size:1.1rem; color:var(--gold); line-height:1; width:28px; flex-shrink:0; padding-top:.15rem; }
.feat-title { font-family:var(--font-display); font-weight:700; font-size:.97rem; color:#fff; margin-bottom:.2rem; }
.feat-desc { font-size:.87rem; color:var(--text-dim); line-height:1.6; }

/* ── INSURANCE PRODUCTS ── */
.prod-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin-top:3rem; }
.prod-card { background:var(--white); border:1px solid var(--border); border-radius:8px; padding:2rem; display:flex; gap:1.25rem; align-items:flex-start; transition:all .3s; }
.prod-card:hover { border-color:var(--red); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.prod-ico { width:48px; height:48px; border-radius:8px; background:var(--red-pale); display:flex; align-items:center; justify-content:center; font-size:1.35rem; flex-shrink:0; }
.prod-name { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.35rem; }
.prod-desc { font-size:.87rem; color:var(--text-light); line-height:1.65; }

/* ── PROCESS TIMELINE ── */
.timeline { position:relative; padding-left:2.5rem; margin-top:3rem; }
.timeline::before { content:''; position:absolute; top:12px; left:10px; bottom:12px; width:2px; background:linear-gradient(to bottom, var(--red), var(--gold)); opacity:.3; }
.tl-item { display:flex; gap:1.75rem; margin-bottom:2.5rem; position:relative; }
.tl-dot { width:22px; height:22px; border-radius:50%; border:3px solid var(--red); background:var(--white); flex-shrink:0; position:relative; z-index:1; margin-top:.15rem; transition:all .25s; }
.tl-item:hover .tl-dot { background:var(--red); box-shadow:0 0 0 6px rgba(236,64,52,.12); }
.tl-item:nth-child(2) .tl-dot { border-color:var(--orange); }
.tl-item:nth-child(2):hover .tl-dot { background:var(--orange); }
.tl-item:nth-child(3) .tl-dot { border-color:var(--gold-dark); }
.tl-item:nth-child(3):hover .tl-dot { background:var(--gold-dark); }
.tl-item:nth-child(4) .tl-dot { border-color:var(--navy); }
.tl-item:nth-child(4):hover .tl-dot { background:var(--navy); }
.tl-title { font-family:var(--font-display); font-weight:700; font-size:1.02rem; color:var(--ink); margin-bottom:.3rem; }
.tl-desc { font-size:.88rem; color:var(--text-light); line-height:1.7; }

/* ── WHY CHOOSE ── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.why-card { background:var(--off-white); border:1px solid var(--border); border-radius:8px; padding:2rem; position:relative; overflow:hidden; transition:all .28s; }
.why-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; }
.why-card:nth-child(1)::before { background:var(--red); }
.why-card:nth-child(2)::before { background:var(--orange); }
.why-card:nth-child(3)::before { background:var(--gold-dark); }
.why-card:nth-child(4)::before { background:var(--navy); }
.why-card:nth-child(5)::before { background:var(--red); }
.why-card:nth-child(6)::before { background:var(--orange); }
.why-card:hover { border-color:var(--grey-200); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.why-ico { font-size:2rem; margin-bottom:1rem; }
.why-title { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.45rem; }
.why-desc { font-size:.87rem; color:var(--text-light); line-height:1.65; }

/* ── COMPLIANCE ── */
.comp-row { display:flex; flex-wrap:wrap; gap:1rem; margin-top:2.5rem; }
.comp-badge { background:var(--white); border:1.5px solid var(--border); border-radius:6px; padding:1rem 1.5rem; display:flex; align-items:center; gap:.75rem; flex:1; min-width:160px; transition:all .25s; }
.comp-badge:hover { border-color:var(--navy); box-shadow:var(--shadow-sm); }
.comp-ico { font-size:1.25rem; }
.comp-name { font-family:var(--font-display); font-weight:700; font-size:.9rem; color:var(--navy); }
.comp-sub { font-size:.73rem; color:var(--text-xlight); }

/* ── CTA ── */
.cta-section { background:var(--grad-hero); padding:7rem 2.5rem; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(252,184,8,.08) 0%,transparent 50%,rgba(236,64,52,.08) 100%); 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-inner { text-align:center; position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cta-title { font-family:var(--font-display); font-weight:800; font-size:clamp(2rem,4vw,3.2rem); line-height:1.08; color:#fff; margin-bottom:.85rem; }
.cta-title .gold { color:var(--gold); }
.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 5rem; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(252,184,8,.06) 0%,transparent 60%); 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-white::after { background:var(--white); }
.ph-inner { max-width:1280px; margin:0 auto; position:relative; z-index:1; }
.ph-stripe { position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad-globe); }
.breadcrumb { display:flex; gap:.4rem; font-family:var(--font-display); font-size:.76rem; color:var(--text-xdim); margin-bottom:1.5rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }
.breadcrumb a { color:var(--text-xdim); transition:color .2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { color:rgba(255,255,255,.1); }
.page-hero h1 { font-family:var(--font-display); font-weight:800; font-size:clamp(2.8rem,6vw,5rem); line-height:1.04; color:#fff; margin-bottom:1rem; }
.page-hero h1 .gold { color:var(--gold); }
.page-hero h1 .red { color:var(--red-light); }
.page-hero .ph-sub { font-size:1.05rem; color:var(--text-on-dark); max-width:520px; line-height:1.75; }

/* ── SERVICES PAGE 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:4.5rem; position:relative; z-index:1; }
.sdr-vis-ghost { position:absolute; font-family:var(--font-display); font-weight:800; font-size:5rem; color:rgba(13,31,60,.05); bottom:1rem; right:1.5rem; letter-spacing:-.02em; line-height:1; }
.sdr-vis-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(13,31,60,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(13,31,60,.05) 1px,transparent 1px); background-size:32px 32px; }
.sdr-eyebrow { font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--red); margin-bottom:.75rem; display:flex; align-items:center; gap:.55rem; }
.sdr-title { font-family:var(--font-display); font-weight:800; font-size:clamp(1.7rem,2.8vw,2.4rem); color:var(--ink); margin-bottom:1rem; line-height:1.08; }
.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:.45rem; margin-bottom:1.75rem; }
.sdr-list li { display:flex; align-items:center; gap:.75rem; font-size:.9rem; color:var(--text-body); }
.sdr-list li::before { content:''; width:8px; height:8px; border-radius:2px; background:var(--red); flex-shrink:0; transform:rotate(45deg); }
.tag-row { display:flex; flex-wrap:wrap; gap:.4rem; }
.stag { background:var(--navy-pale); border:1px solid var(--border-navy); color:var(--navy); padding:.22rem .7rem; border-radius:3px; font-family:var(--font-display); font-size:.72rem; 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); }

/* ── INDUSTRIES PAGE ── */
.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:8px; padding:2rem; transition:all .3s; border-left:4px solid transparent; }
.ind-card:nth-child(3n+1) { border-left-color:var(--red); }
.ind-card:nth-child(3n+2) { border-left-color:var(--orange); }
.ind-card:nth-child(3n+3) { border-left-color:var(--gold-dark); }
.ind-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.ii-ico { font-size:1.75rem; margin-bottom:.75rem; }
.ii-name { font-family:var(--font-display); font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.35rem; }
.ii-desc { font-size:.86rem; color:var(--text-light); line-height:1.6; }

/* ── 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:6px; border:1px solid var(--border); transition:all .25s; margin-bottom:1rem; }
.ci-block:hover { border-color:var(--navy); box-shadow:var(--shadow-sm); }
.ci-ico { width:42px; height:42px; background:var(--navy-pale); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-lbl { font-family:var(--font-display); font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--red); 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(--red); }

/* FAQ */
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.35rem 0; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:.97rem; color:var(--ink); transition:color .2s; }
.faq-q:hover { color:var(--navy); }
.faq-tog { width:28px; height:28px; border-radius:50%; border:2px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--red); font-size:1.1rem; font-weight:700; transition:all .25s; }
.faq-item.open .faq-tog { background:var(--red); border-color:var(--red); 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.25rem; }

/* ── 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:.72rem; font-weight:700; letter-spacing:.2em; 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 .85rem; border-left:2px solid var(--border); transition:all .2s; margin-bottom:.2rem; font-weight:500; }
.pol-nav a:hover { color:var(--navy); border-left-color:var(--navy); }
.pol-body h2 { font-family:var(--font-display); font-weight:800; font-size:1.35rem; color:var(--ink); margin:3rem 0 .85rem; padding-bottom:.5rem; border-bottom:2px solid var(--navy-pale); }
.pol-body p { font-size:.94rem; line-height:1.8; color:var(--text-light); margin-bottom:.9rem; }
.pol-body ul { margin:.7rem 0 .9rem 1.2rem; }
.pol-body li { font-size:.92rem; color:var(--text-light); line-height:1.75; margin-bottom:.3rem; }
.pol-body strong { color:var(--ink); }
.pol-body a { color:var(--navy); }

/* ── FOOTER ── */
footer { background:var(--ink); color:rgba(255,255,255,.65); border-top:3px solid var(--red); }
.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,.1); margin-bottom:2rem; }
.foot-brand img { height:34px; margin-bottom:1.2rem; filter:brightness(0) invert(1); opacity:.85; }
.foot-brand p { font-size:.87rem; line-height:1.7; color:rgba(255,255,255,.6); margin-bottom:1rem; }
.foot-brand address { font-style:normal; font-size:.82rem; color:rgba(255,255,255,.5); line-height:1.8; }
.foot-col-ttl { font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:1.2rem; }
.foot-links { display:flex; flex-direction:column; gap:.55rem; }
.foot-links a { font-size:.87rem; color:rgba(255,255,255,.6); transition:color .2s; }
.foot-links a:hover { color:var(--gold); }
.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,.45); }
.foot-btm a:hover { color:var(--gold); }
.foot-btm-links { display:flex; gap:2rem; }
.foot-accent { color:var(--red-light); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:46px; height:46px; background:var(--red); border:none; border-radius:4px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-red); 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(--red-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{grid-template-columns:1fr;}.hero-left{padding:9rem 3rem 5rem;}.hero-left::after{display:none;}.hero-right{padding:4rem 3rem 5rem;}.diag-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;}.prod-grid{grid-template-columns:1fr;}.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;}
}
@media(max-width:768px){
  .nav-links{display:none;}.hamburger{display:flex;}.svc-grid{grid-template-columns:1fr;}.stats-row{grid-template-columns:1fr 1fr;}.stat-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.08);}.stat-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.08);}.ind-grid{grid-template-columns:1fr 1fr;}.why-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;}.trust-row{gap:1.5rem;}.h-stat-row{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){
  .ind-grid{grid-template-columns:1fr;}.stats-row{grid-template-columns:1fr;}.stat-cell{border-right:none;}.h-stat-row{grid-template-columns:1fr;}
}
