/* =====================================================
   DESIGN TOKENS -- Gemini Palette + Clean Philosophy
   ===================================================== */
:root {
  --orange: #F9A61A;
  --orange-dk: #d48b14;
  --navy: #0D1B2A;
  --navy2: #152638;
  --steel: #415A77;
  --teal: #005F73;
  --teal-dk: #004E5F;
  --mint: #94D2BD;
  --cloud: #F8F9FA;
  --white: #ffffff;
  --charcoal: #1A1A1A;
  --ink: #334155;
  --ink-light: #64748b;
  --border: #e2e8f0;
  --radius: 20px;
  --radius-lg: 28px;
  --max-w: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--charcoal);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: 72px; }
h2 { font-size: 48px; margin-bottom: 20px; }
h3 { font-size: 28px; margin-bottom: 12px; }
.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.body { font-size: 18px; line-height: 1.625; color: var(--ink); }
.body + .body { margin-top: 14px; }
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 12px 0 24px; }

/* PAGE SYSTEM */



/* LAYOUT */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.sec { padding: 100px 32px; }
.sec-alt { background: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 18px 36px;
  border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: all .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dk); box-shadow: 0 8px 24px rgba(0,95,115,.2); }
.btn-accent { background: var(--orange); color: var(--charcoal); }
.btn-accent:hover { filter: brightness(1.1); box-shadow: 0 8px 24px rgba(249,166,26,.25); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy2); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--cloud); }

/* =====================================================
   FLOATING PILL NAV (kept from original)
   ===================================================== */
.nav-float {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 18px 32px; transition: padding .35s ease; overflow: visible;
}
.nav-float.scrolled { padding: 10px 32px; }
.nav-pill {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; padding: 0 24px 0 12px;
  background: rgba(255,255,255,1); backdrop-filter: blur(20px);
  border-radius: 999px; border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 1px 4px rgba(0,0,0,.06);
  overflow: visible; transition: box-shadow .35s ease;
}
.nav-float.scrolled .nav-pill {
  background: rgba(255,255,255,.70) !important;
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 40px rgba(0,0,0,.14), 0 2px 8px rgba(0,0,0,.06);
  border-color: #999;
}
.nav-logo { cursor: pointer; display: flex; align-items: center; z-index: 10; position: relative; }
.nav-logo img { height: 84px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.15)); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--ink); padding: 8px 14px;
  border-radius: 999px; transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--cloud); color: var(--charcoal); }
.nav-links a.on { background: var(--orange); color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--teal); color: var(--white);
  padding: 10px 22px; border-radius: 999px; border: none; cursor: pointer;
  transition: background .2s;
}
.nav-cta:hover { background: var(--teal-dk); }
.nav-btn {
  display: none; width: 44px; height: 44px;
  background: var(--cloud); border: none; border-radius: 50%;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-btn:hover { background: var(--orange); }
.nav-btn svg { width: 22px; height: 22px; stroke: var(--charcoal); fill: none; stroke-width: 2; stroke-linecap: round; }
.ham { display: none; width: 44px; height: 44px; background: var(--cloud); border: none; border-radius: 50%; cursor: pointer; align-items: center; justify-content: center; }
.ham:hover { background: var(--orange); }
.ham svg { width: 22px; height: 22px; stroke: var(--charcoal); fill: none; stroke-width: 2; stroke-linecap: round; }
.mob-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.97) 40%, rgba(13,27,42,.75)); z-index: 200; padding: 120px 32px 32px;
  flex-direction: column; gap: 8px;
}
.mob-menu.show { display: flex; }
.mob-menu a {
  font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--white); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mob-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mob-close svg { width: 24px; height: 24px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: radial-gradient(circle at 50% 50%, var(--steel) 0%, var(--navy) 100%);
  padding: 160px 32px 120px;
  position: relative; overflow: hidden;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(249,166,26,.1); border: 1px solid rgba(249,166,26,.2);
  padding: 8px 20px; border-radius: 999px; margin-bottom: 28px;
}
.hero-kicker span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.hero-kicker-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero h1 { font-size: 72px; color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.hero h1 em { color: var(--orange); font-style: normal; display: block; }
.hero-sub { font-size: 20px; line-height: 1.625; color: rgba(255,255,255,.7); margin-bottom: 40px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1); }
.proof-item { display: flex; flex-direction: column; }
.proof-n { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.proof-n em { color: var(--orange); font-style: normal; }
.proof-l { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 6px; }
.hero-visual { position: relative; }
.hero-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); border: 2px solid rgba(249,166,26,.15); }
.hero-img-float {
  position: absolute; bottom: -28px; left: -28px;
  width: 200px; height: 150px; object-fit: cover;
  border-radius: var(--radius); border: 3px solid var(--orange);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.hero-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800;
  text-transform: uppercase; padding: 12px 18px;
  border-radius: var(--radius); line-height: 1.3; letter-spacing: .02em;
}

/* =====================================================
   SERVICE STRIP -- simplified, clean
   ===================================================== */
.svc-strip { background: var(--navy); }
.svc-row { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.svc-cell { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,.06); cursor: pointer; transition: background .3s; }
.svc-cell:last-child { border-right: none; }
.svc-cell:hover { background: rgba(249,166,26,.06); }
.svc-ico {
  width: 48px; height: 48px; background: rgba(249,166,26,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border-radius: 14px;
}
.svc-ico svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-name { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.svc-desc { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* =====================================================
   FEATURE ROWS -- more breathing room
   ===================================================== */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.feat-row:last-child { margin-bottom: 0; }
.feat-row.rev .fi { order: 2; }
.feat-row.rev .ft { order: 1; }
.fi { position: relative; }
.fi img { width: 100%; height: 380px; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.fi-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--mint); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.fi-label {
  position: absolute; top: 16px; left: 16px;
  background: var(--teal); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius);
}
.feat-link {
  font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--white); background: var(--teal);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); transition: all .25s ease;
}
.feat-link:hover { background: var(--teal-dk); gap: 12px; box-shadow: 0 8px 24px rgba(0,95,115,.2); }

/* =====================================================
   STATS
   ===================================================== */
.stats-band { background: var(--navy); }
.stats-row { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 64px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Montserrat', sans-serif; font-size: 60px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-n em { color: var(--orange); font-style: normal; }
.stat-l { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 12px; display: block; }

/* =====================================================
   CARDS -- softer, rounder, more space
   ===================================================== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; margin-top: 48px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 32px; border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all .3s ease; position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--mint); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.card:hover::after { transform: scaleX(1); }
.card:hover { border-color: rgba(249,166,26,.15); box-shadow: 0 12px 40px rgba(0,0,0,.06); transform: translateY(-4px); }
.card-ico {
  width: 52px; height: 52px; background: var(--cloud);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; border-radius: 16px; transition: all .3s;
}
.card:hover .card-ico { background: var(--teal); }
.card:hover .card-ico svg { stroke: #fff; }
.card-ico svg { width: 24px; height: 24px; stroke: var(--steel); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.proc { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 48px; gap: 28px; }
.ps { padding: 36px 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.ps-n { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 800; color: rgba(249,166,26,.15); line-height: 1; margin-bottom: 12px; }
.ps-t { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.ps-d { font-size: 16px; color: var(--ink); line-height: 1.625; }

/* =====================================================
   ABOUT
   ===================================================== */
.about-img { position: relative; padding: 0 40px 40px 0; }
.about-img img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); border-left: 5px solid var(--orange); }
.about-img-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--navy); color: var(--white);
  padding: 20px 24px; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800;
  text-transform: uppercase; line-height: 1.35;
  border-left: 4px solid var(--orange); border-radius: 0 0 var(--radius) 0;
}
.vals { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.val { display: flex; align-items: flex-start; gap: 14px; }
.val-mark {
  width: 24px; height: 24px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px; border-radius: 8px;
}
.val-mark svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.8; stroke-linecap: round; }
.val-text { font-size: 17px; color: var(--ink); line-height: 1.65; }
.val-text b { color: var(--charcoal); font-weight: 600; }

/* =====================================================
   CTA SECTIONS
   ===================================================== */
.cta-section {
  background: var(--navy2); padding: 100px 32px; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 600px; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(249,166,26,.08) 0%, transparent 70%);
}
.cta-in { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-in h2 { color: var(--white); margin-bottom: 20px; }
.cta-in p { font-size: 18px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-it { background: var(--orange); padding: 100px 32px; }
.cta-it .cta-in h2 { color: var(--white); }
.cta-it .cta-in p { color: rgba(255,255,255,.85); }
.cta-sw { background: var(--white); padding: 100px 32px; border-top: 3px solid var(--orange); }
.cta-sw .cta-in h2 { color: var(--charcoal); }
.cta-sw .cta-in p { color: var(--ink); }

/* =====================================================
   PAGE HERO
   ===================================================== */
.phero {
  background: var(--navy); padding: 160px 32px 100px;
  position: relative; overflow: hidden;
}
.phero-ov { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,27,42,.97) 40%, rgba(13,27,42,.75)); }
.phero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .1; }
.phero-in { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.phero h1 { color: var(--white); max-width: 760px; margin: 12px 0 20px; }
.phero p { font-size: 19px; color: rgba(255,255,255,.6); max-width: 600px; line-height: 1.75; }

/* =====================================================
   SUPPORT PAGE
   ===================================================== */
.sup-tools { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.sup-tool {
  background: var(--white); border: 1px solid var(--border);
  padding: 40px 36px; display: flex; gap: 24px; align-items: flex-start;
  border-radius: var(--radius-lg); transition: all .3s ease;
}
.sup-tool:hover { border-color: rgba(249,166,26,.2); box-shadow: 0 12px 40px rgba(0,0,0,.06); transform: translateY(-2px); }
.sup-ico {
  width: 56px; height: 56px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 16px;
}
.sup-ico svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.sup-tool h4 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.sup-tool p { font-size: 15px; color: var(--ink); line-height: 1.7; margin-bottom: 16px; }
.tbtn {
  display: inline-block; background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--radius); transition: all .2s;
}
.tbtn:hover { background: var(--teal); }

/* =====================================================
   FAQ
   ===================================================== */
.faq { margin-top: 44px; }
.fq { border-bottom: 1px solid var(--border); }
.fq-q {
  font-size: 17px; font-weight: 600; color: var(--charcoal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 24px 0; transition: color .2s;
}
.fq-q:hover { color: var(--teal); }
.fq-ico {
  width: 32px; height: 32px; background: var(--cloud);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--teal); font-weight: 300; line-height: 1;
  transition: background .2s, color .2s;
}
.fq.open .fq-ico { background: var(--teal); color: var(--white); }
.fq-a { font-size: 16px; color: var(--ink); line-height: 1.75; padding-bottom: 24px; display: none; max-width: 680px; }
.fq.open .fq-a { display: block; }

/* =====================================================
   CONTACT
   ===================================================== */
.con-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; margin-top: 48px; }
.con-info h3 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 800; color: var(--charcoal); margin-bottom: 20px; }
.con-info p { font-size: 17px; color: var(--ink); line-height: 1.75; margin-bottom: 36px; }
.cd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cd-ico {
  width: 44px; height: 44px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 12px;
}
.cd-ico svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; }
.cd-strong { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 4px; }
.cd-val { font-size: 17px; color: var(--ink); }
.cd-val a { color: var(--charcoal); font-weight: 600; }
.cd-val a:hover { color: var(--teal); }
.con-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-lg); margin-top: 36px; }

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}

/* FORM */
.fform .field { margin-bottom: 22px; }
.fform label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.fform input, .fform textarea, .fform select {
  width: 100%; padding: 16px 20px;
  border: 1.5px solid var(--border); border-radius: 14px;
  font-family: 'Inter', sans-serif; font-size: 16px;
  color: var(--charcoal); background: var(--white);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.fform input::placeholder, .fform textarea::placeholder { color: #aaa; }
.fform input:focus, .fform textarea:focus, .fform select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,95,115,.1);
}
.fform textarea { height: 148px; resize: vertical; line-height: 1.6; }
.fform .sbtn {
  width: 100%; background: var(--teal); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 18px; border: none; border-radius: var(--radius);
  cursor: pointer; transition: background .2s;
}
.fform .sbtn:hover { background: var(--teal-dk); }
.fsuccess {
  display: none; background: #f0faf2; border: 1px solid #4caf50; border-left: 4px solid #4caf50;
  padding: 18px 20px; margin-top: 16px; font-size: 16px; color: #2e7d32;
  border-radius: 14px; font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--navy); }
.foot-top {
  max-width: var(--max-w); margin: 0 auto; padding: 80px 32px 60px;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px;
}
.foot-logo img { height: 54px; width: auto; mix-blend-mode: screen; margin-bottom: 20px; }
.foot-tag { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.45); line-height: 1.625; margin-bottom: 24px; max-width: 320px; }
.foot-contact a { display: block; font-size: 16px; color: var(--orange); margin-bottom: 8px; font-weight: 600; }
.foot-h {
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fl { display: block; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.5); margin-bottom: 14px; cursor: pointer; transition: color .2s; }
.fl:hover { color: var(--white); }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: var(--max-w); margin: 0 auto; padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.foot-copy { font-size: 13px; color: rgba(255,255,255,.35); font-weight: 500; letter-spacing: .05em; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .feat-row, .feat-row.rev { grid-template-columns: 1fr; gap: 40px; }
  .feat-row.rev .fi, .feat-row.rev .ft { order: unset; }
  .grid-2 { grid-template-columns: 1fr; gap: 44px; }
  .about-img { padding: 0; }
  .about-img-badge { display: none; }
  .con-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .proc { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 768px) {
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .sec { padding: 64px 24px; }
  .nav-links, .nav-right { display: none; }
  .ham { display: flex; }
  .svc-row { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); }
  .cards { grid-template-columns: 1fr !important; }
  .sup-tools { grid-template-columns: 1fr; }
  .nav-float { padding: 12px 16px; }
  .phero-in[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .phero-in[style*="grid-template-columns"] > div:last-child { min-height: 340px !important; margin-top: 32px; }
}
@media(max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-proof { gap: 16px; flex-wrap: wrap; }
  .proc { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}