
/* ============================================================
   DESIGN TOKENS – Dark Navy / Gold / White System
   ============================================================ */
:root {
  --navy:        #0B1523;
  --navy-mid:    #0F1E30;
  --navy-card:   #112030;
  --navy-border: #1A2E45;
  --gold:        #F5C518;
  --gold-light:  #FFD84D;
  --gold-dim:    #B8920F;
  --white:       #FFFFFF;
  --white-90:    rgba(255,255,255,0.90);
  --white-60:    rgba(255,255,255,0.60);
  --white-30:    rgba(255,255,255,0.30);
  --white-10:    rgba(255,255,255,0.10);
  --white-05:    rgba(255,255,255,0.05);
  --gold-10:     rgba(245,197,24,0.10);
  --gold-20:     rgba(245,197,24,0.20);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;

  --section-pad: 50px;
  --container:   1280px;

  /* --font-main:   'Segoe UI', system-ui, -apple-system, sans-serif; */
  --font-main:   'Poppins', sans-serif;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* * { outline: 1px solid red !important; } */
html { scroll-behavior: smooth; }
body {
  /* font-family: var(--font-main); */
  font-family:'Poppins',sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6
{
    font-family: "uniwars", sans-serif;
font-weight: 400;
font-style: normal;
}
/* @font-face {
  font-family: 'Uniwars';
  src: url('./uniwars.woff') format('woff');  
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

html {
  max-width: 100%;
  /* overflow-x: hidden; */
}

.s7-grid > *,
.s3-grid > *,
.s2-grid > *,
.form-split > * {
  min-width: 0;
  max-width: 100%;
}

.s7-content-side .eyebrow,
.s7-content-side .section-heading,
.s7-content-side .section-sub {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

h1, h2, h3, h4,
.sec-title,
.hero h1,
.model-head h3,
.form-heading,
.z-name,
.engine-card h4,
.fico-card h4,
.sup-card h4 ,
.btn-gold,
.eyebrow,
.s3-card-title,
.s4-card-title ,
.s6-card-title,
.s7-check-text strong,
.s8-card-prem .s8-card-title ,
.s8-card-prem .s8-card-title ,
.s9-card-title ,
.s10-zone-name,
.form-card-title {
  font-family: 'Uniwars', 'Poppins', sans-serif !important;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-heading {
  font-size: clamp(0px, 2.5vw, 48px);
  /* font-weight: 800; */
  line-height: 1.15;
  color: var(--white);
}
.section-heading .accent { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   DIVIDER LINE
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: var(--navy-border);
}

/* ============================================================
   NAV (Section 1 – UNCHANGED)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,21,35,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0 40px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--white); }
.nav-cta { font-size: 13px; }

/* ============================================================
   SECTION 1 – HERO (UNCHANGED)
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-main {
  flex: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-h1 {
  font-size: clamp(38px, 5.5vw, 57px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-desc {
  /*color: #FFAD41;*/
  font-size: 15px;
   color: var(--white-60); 
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white-05);
  border: 1px solid var(--navy-border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white-90);
}
.hero-pill .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-invest-box {
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 18px;
  display: inline-block;
}
.hero-invest-label { font-size: 11px; color: var(--white-60); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.hero-invest-amount { font-size: 36px; font-weight: 900; color: var(--gold); }
.hero-invest-sub { font-size: 11px; color: var(--white-60); margin-top: 2px; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 22px;
}
.hero-stat-item { }
.hero-stat-num { font-size: 22px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 11px; color: var(--white-60); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stats{
    display:flex;
    gap:12px;
    margin-bottom:22px;
}

.hero-stat-item{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 100px;
    transition: all .3s ease;
}

.hero-stat-item:hover{
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-stat-num{
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-stat-label{
    font-size: 11px;
    color: var(--white-60);
    text-transform: uppercase;
    letter-spacing: .08em;
}
@media (max-width:768px){

    .hero-stats{
        gap:8px;
    }

    .hero-stat-item{
        flex:1;
        min-width:0;
        padding:10px 6px;
    }

    .hero-stat-num{
        font-size:15px;
    }

    .hero-stat-label{
        font-size:9px;
        letter-spacing:.04em;
    }
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 0;
}
.hero-img {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-card);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, var(--navy-card) 0%, #0d1a28 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white-30);
}
.hero-trust-strip {
  border-top: 1px solid var(--navy-border);
  padding: 24px 40px;
}
.hero-trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-60);
}
.hero-trust-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.hero-trust-val { font-size: 15px; font-weight: 700; color: var(--white); }
.hero{
    min-height:100vh;
background:
     
      url("images/hero-bg-2.png");

    background-size:cover;
    /* background-position:center center; */
    background-position: right center;
    background-repeat:no-repeat;
}

.hero-main{
    max-width:1400px;
    margin:0 auto;
    min-height:100vh;

    display:flex;
    align-items:center;

    padding:45px 40px;
}

.hero-content{
    max-width:650px;
    margin-top: -80px;
}
.hero-img-wrap{
    display:none;
}
/* ============================================================
   SECTION 2 – MARKET OPPORTUNITY (REDESIGNED)
   ============================================================ */
.s2 {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.s2::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.s2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.s2-left .section-heading { margin-bottom: 20px; }
.s2-left .section-sub { margin-bottom: 36px; }
.s2-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.s2-stat-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: var(--transition);
}
.s2-stat-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.s2-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.s2-stat-desc { font-size: 12px; color: var(--white-60); line-height: 1.5; }
.s2-right { position: relative; }
.s2-img-wrap {
    /* Control size */
  width: 100%;
  max-width: 600px;   /* change as needed */
  /* height: 350px;    */
  height: 510px;

  /* Background image */
  background-image: url("images/market-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* background: var(--navy-card); */
  border: 1px solid var(--navy-border);
  /* aspect-ratio: 4/3; */
}
.s2-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.s2-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-30); font-size: 14px;
  background: linear-gradient(135deg, var(--navy-card) 0%, #0a1520 100%);
}
.s2-float-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(245,197,24,0.35);
}
.s2-float-num { font-size: 26px; font-weight: 900; line-height: 1; margin-bottom: 2px; }
.s2-float-label { font-size: 11px; font-weight: 600; opacity: 0.8; }
.s2-bar-chart {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 120px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.s2-bar-label { font-size: 10px; color: var(--white-60); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.s2-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.s2-bar {
  flex: 1;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  opacity: 0.9;
}
.s2-bar-year { font-size: 9px; color: var(--white-60); text-align: center; margin-top: 4px; }

/* ============================================================
   SECTION 3 – THREE COLUMN SHOWCASE (REDESIGNED)
   ============================================================ */
.s3 {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  /* overflow: visible; */
}
.s3-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
  /* overflow: visible; */
}
.s3-left {
  /* position: sticky; */
  display: flex;
  flex-direction: column;
  top: 100px;
  /* justify-content: space-between; */
}
.s3-left .section-heading { margin-bottom: 16px; }
.s3-left .section-sub { margin-bottom: 32px; flex: 1; }
.s3-center {
  position: sticky;
  border-radius: var(--radius-xl);
  /* overflow: hidden; */
  /* position: relative; */
  height: 480px;
  
  /* background: var(--navy-card); */
  
  border: 1px solid var(--navy-border);
}
.s3-center img {

  width: 100%; 
  height: 100%;
  object-fit: cover;
     grid-column: 2;
    display: block !important;
    position: sticky;
    top: 100px;
    align-self: start;
  border-radius: 10px;
}
.s3-center-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-30); font-size: 14px;
  background: linear-gradient(180deg, #0e1c2e 0%, var(--navy-card) 100%);
  min-height: 480px;
}
.s3-center-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,21,35,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--navy-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.s3-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s3-feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  flex: 1;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
    align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s3-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.s3-feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.s3-feature-card:hover::before { opacity: 1; }
.s3-card-icon {
  font-size: 20px;
  margin-bottom: 4px;
}
.s3-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.s3-card-desc { font-size: 12px; color: var(--white-60); line-height: 1.6; }

.s3-fico{
  /* grid-column: 1; */
    position: sticky;
    top: 100px;
    align-self: start;
}
.s3-fico-img{
  position: sticky;
    top: 100px;
    align-self: start;
}

/* ============================================================
   SECTION 4 – TWO PATHS (UNCHANGED)
   ============================================================ */
.s4 {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
}
.s4-head { text-align: center; margin-bottom: 56px; }
.s4-head .section-heading { margin-bottom: 12px; }
.s4-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.s4-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* .s4-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
} */
.s4-card:hover::after { transform: scaleX(1); }
.s4-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.s4-card-tag {
  display: inline-flex;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.s4-card-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.s4-card-invest {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
}
.s4-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.s4-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.5;
}
.s4-card li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   SECTION 5 – STORYTELLING / PANORAMIC (REDESIGNED)
   ============================================================ */
.s5 {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.s5-head { text-align: center; margin-bottom: 48px; }
.s5-head .section-heading { margin-bottom: 12px; }
.s5-panoramic {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  margin-bottom: 48px;
}
.s5-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  height: 420px;
  position: relative;
}
.s5-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.s5-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,21,35,0.7) 0%, transparent 40%, transparent 60%, rgba(11,21,35,0.7) 100%);
}
.s5-float-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.s5-float-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.s5-float-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-10);
}
.s5-float-card .stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.s5-float-card .stat-label {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 12px;
}
.s5-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
}
.s5-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

/* ============================================================
   SECTION 6 – PARTNER BENEFITS (UNCHANGED)
   ============================================================ */
.s6 {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
}
.s6-head { margin-bottom: 48px; }
.s6-head .section-heading { margin-bottom: 12px; }
.s6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s6-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.s6-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.s6-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.s6-card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.s6-card-desc { font-size: 13px; color: var(--white-60); line-height: 1.6; }

/* ============================================================
   SECTION 7 – IMAGE + CHECKLIST (REDESIGNED)
   ============================================================ */
   /* .s7,
.s7 .container,
.s7-grid, .s3-grid{
  overflow: visible;
} */


.s7,
.s7 .container,
.s7-grid, .s3-grid {
  overflow: visible;
}
.s7 {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  /* overflow: visible;  ← DELETE THIS LINE */
}

/* @media (max-width: 991px) {
  .s7,
  .s7 .container,
  .s7-grid, .s3-grid {
    overflow: hidden;
  }
}

.s7 {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: visible;
}
.s7::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 65%);
  pointer-events: none;
} */

@media (max-width: 991px) {
  .s7,
  .s7 .container,
  .s7-grid, .s3-grid {
    overflow: hidden;
  }
}

.s7 {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  /* no overflow property here anymore */
}
.s7::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* .s7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
} */
.s7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.s7-img-side{
  position: sticky;
  top: 100px; /* adjust according to navbar height */
  align-self: start;
}

.s7-img-frame{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--navy-border);

  /* Control image height */
  height: 400px;
  width: 100%;

  /* Remove aspect ratio */
  aspect-ratio: unset;
}

.s7-img-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Remove if not using placeholder */
.s7-img-placeholder{
  display: none;
}

/* Mobile */
@media (max-width: 991px){
  .s7-img-side{
    position: static;
  }

  .s7-img-frame{
    height: 350px;
  }
}
.s7-deco-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 16px 48px rgba(245,197,24,0.4);
  text-align: center;
}
.s7-deco-num { font-size: 24px; font-weight: 900; line-height: 1; }
.s7-deco-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }
.s7-content-side { }
.s7-content-side .section-heading { margin-bottom: 12px; }
.s7-content-side .section-sub { margin-bottom: 32px; }
.s7-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.s7-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white-05);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.s7-check-item:hover {
  background: var(--gold-10);
  border-color: var(--gold-20);
}
.s7-check-icon {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.s7-check-text { font-size: 14px; color: var(--white-90); line-height: 1.5; }
.s7-check-text strong { color: var(--white); font-weight: 700; display: block; margin-bottom: 2px;letter-spacing: 0.07em; }

/* ============================================================
   SECTION 8 – COMPARISON (REDESIGNED)
   ============================================================ */
.s8 {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
}
.s8-head { text-align: center; margin-bottom: 56px; }
.s8-head .section-heading { margin-bottom: 12px; }
.s8-head .section-sub { margin: 0 auto; }
.s8-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.s8-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.s8-card-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--navy-border);
}
.s8-card-body { padding: 28px 32px; }
.s8-card-vs-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.s8-card-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.s8-card-price { font-size: 28px; font-weight: 900; }
.s8-row-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.s8-row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--white-60);
  padding: 10px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.s8-row-item:hover { background: var(--white-05); }
.s8-row-item .icon-check { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.s8-row-item .icon-x { color: #e55353; font-size: 14px; flex-shrink: 0; }
/* Standard card */
.s8-card-std {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
}
.s8-card-std .s8-card-vs-label { color: var(--white-60); }
.s8-card-std .s8-card-title { color: var(--white); }
.s8-card-std .s8-card-price { color: var(--white-60); }
/* Premium card */
.s8-card-prem {
  background: var(--navy-card);
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(245,197,24,0.12);
}
.s8-card-prem .s8-card-header { background: linear-gradient(135deg, rgba(245,197,24,0.12) 0%, transparent 100%); }
.s8-card-prem .s8-card-vs-label { color: var(--gold); }
.s8-card-prem .s8-card-title { color: var(--white); }
.s8-card-prem .s8-card-price { color: var(--gold); }
.s8-recommended-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   SECTION 9 – FEATURE GRID (REDESIGNED)
   ============================================================ */

   .s9 {
  padding: var(--section-pad) 0;
  background: #FFFFFF;
}
.s9-head { text-align: center; margin-bottom: 56px; }
.s9-head .section-heading { margin-bottom: 12px; }
.s9-head .eyebrow { color: #123653; }
.s9-head .eyebrow::before { background: #123653; }
.s9-head .section-heading { color: #123653; }
.s9-head .section-heading .accent { color: var(--gold); }
.s9-head .section-sub { color: #6B7280; margin-left: auto; margin-right: auto; }

.s9-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #E5E7EB;
  border-left: 1px solid #E5E7EB;
}
.s9-card {
  background: transparent;
  border: none;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.s9-card-num {
  position: absolute;
  top: -20px;
  right: -8px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(18,54,83,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: var(--transition);
}
.s9-card:hover .s9-card-num { color: var(--gold-10); }
.s9-card:hover {
  transform: none;
  box-shadow: none;
  border-right: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}
.s9-card-icon {
  width: 56px; height: 56px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: var(--transition);
  color: var(--gold);
}

.s9-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #123653;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.s9-card-desc { font-size: 12px; color: #6B7280; line-height: 1.6; }
/* .s9 {
  padding: var(--section-pad) 0;
  background: var(--navy);
}
.s9-head { text-align: center; margin-bottom: 56px; }
.s9-head .section-heading { margin-bottom: 12px; }
.s9-grid {
  display: grid;
  grid-template-columns: repeat(5       , 1fr);
  gap: 20px;
}
.s9-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.s9-card-num {
  position: absolute;
  top: -20px;
  right: -8px;
  font-size: 80px;
  font-weight: 900;
  color: var(--white-05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: var(--transition);
}
.s9-card:hover .s9-card-num { color: var(--gold-10); }
.s9-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-10);
}
.s9-card-icon {
  width: 56px; height: 56px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.s9-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.s9-card-desc { font-size: 12px; color: var(--white-60); line-height: 1.6; } */

/* ============================================================
   SECTION 10 – REVENUE / ZONES (REDESIGNED)
   ============================================================ */
   .s10 {
  padding: var(--section-pad) 0;
  background: #F4F5F7;
  position: relative;
  overflow: hidden;
}
.s10::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.s10-head { text-align: center; margin-bottom: 56px; }
.s10-head .eyebrow { color: #123653; }
.s10-head .eyebrow::before { background: #123653; }
.s10-head .section-heading { margin-bottom: 12px; color: #123653; }
.s10-head .section-heading .accent { color: var(--gold); }
.s10-head .section-sub { color: #6B7280; margin-left: auto; margin-right: auto; }
.s10-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 48px;
}
.s10-tab {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
}
.s10-tab.active {
  background: var(--gold);
  color: #123653;
}
.s10-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.s10-zone-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.s10-zone-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(245,197,24,0.15);
}
.s10-zone-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #123653;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 4px;
}
.s10-zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}
.s10-zone-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: left;
}
.s10-zone-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-align: left;
  margin-bottom: 4px;
}
.s10-zone-sub { font-size: 12px; color:var(--navy-card); margin-bottom: 24px; text-align: left; }
.s10-zone-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.s10-zone-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4B5563;
}
.s10-zone-features li::before {
  content: '→';
  color: var(--gold-dim);
  font-size: 12px;
  flex-shrink: 0;
}
.s10-engine-head { text-align: center; margin-bottom: 32px; }
.s10-engine-head .eyebrow { color: #123653; }
.s10-engine-head .eyebrow::before { background: #123653; }
.s10-engine-head .section-heading { color: #123653; }
.s10-engine-head .section-heading .accent { color: var(--gold); }
.s10-engine-head .section-sub { color: #6B7280; }
.s10-engine-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap:20px;
}
.s10-engine-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.s10-engine-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.s10-engine-icon { font-size: 24px; margin-bottom: 10px; color: var(--gold-dim); }
.s10-engine-title { font-size: 12px; font-weight: 700; color: #123653; margin-bottom: 6px; }
.s10-engine-desc { font-size: 11px; color: #6B7280; line-height: 1.5; }
.ten-cta{
  display: flex;
  margin: 10px 0px;
}

/* .s10 {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.s10::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.s10-head { text-align: center; margin-bottom: 56px; }
.s10-head .section-heading { margin-bottom: 12px; }
.s10-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 48px;
}
.s10-tab {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
}
.s10-tab.active {
  background: var(--gold);
  color: var(--navy);
}
.s10-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.s10-zone-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.s10-zone-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 48px rgba(245,197,24,0.12);
}
.s10-zone-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 4px;
}
.s10-zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.s10-zone-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 12px;
}
.s10-zone-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.s10-zone-sub { font-size: 12px; color: var(--white-60); margin-bottom: 24px; }
.s10-zone-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.s10-zone-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--white-60);
}
.s10-zone-features li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}
.s10-engine-head { text-align: center; margin-bottom: 32px; }
.s10-engine-grid{
    display:grid;
    grid-template-columns: repeat(6, 1fr);
    gap:20px;
}
.s10-engine-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.s10-engine-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.s10-engine-icon { font-size: 24px; margin-bottom: 10px; }
.s10-engine-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.s10-engine-desc { font-size: 11px; color: var(--white-60); line-height: 1.5; }
.ten-cta{
  display: flex;
  margin: 10px 0px;
} */

/* ============================================================
   FORM SECTION (REDESIGNED – LUXURY SPLIT)
   ============================================================ */
.form-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(245,197,24,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-left { padding-top: 20px; }
.form-left .section-heading { margin-bottom: 16px; }
.form-left .section-sub { margin-bottom: 36px; }
.form-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.form-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.form-highlight-icon {
  width: 44px; height: 44px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.form-highlight-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.form-highlight-desc { font-size: 13px; color: var(--white-60); line-height: 1.5; }
.form-right { }
.form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.form-card-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-card-sub { font-size: 13px; color: var(--white-60); margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-full { margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-60);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-main);
  padding: 13px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  margin-top: 8px;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
}
.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--white-30);
  margin-top: 12px;
  line-height: 1.5;
}
.form-privacy a { color: var(--white-60); text-decoration: underline; }

/* Also: Investor Call section (schedule) */
.s-call {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
}
.s-call-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.s-call-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.s-call-card-title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.s-call-card-sub { font-size: 13px; color: var(--white-60); margin-bottom: 28px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--navy);
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .section-heading { margin-bottom: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold-dim); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
}
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
 .footer-logo{
    width: 210px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width:768px){
  .hero-tags-row{
    display: none;
  }
    .footer-logo{
        width: 120px;
    }
}
.footer-center 
{
  line-height: 1.3;
  text-align: center;
  color:#777;
    margin:10px 0;
    font-size: 15px;
    margin-bottom: 5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 2560px */
@media (min-width: 2400px) {
  :root { --container: 2000px; --section-pad: 120px; }
  .s9-grid { grid-template-columns: repeat(4,1fr); }
  .s10-engine-grid { grid-template-columns: repeat(5,1fr); }
}
/* 1920px */
@media (max-width: 1920px) and (min-width: 1600px) {
  :root { --container: 1440px; }
}

/* 1440px and below */
@media (max-width: 1440px) {
  :root { --container: 1200px; }
}

/* 1280px and below */
@media (max-width: 1280px) {
  :root { --container: 1060px; }
  .s9-grid { grid-template-columns: repeat(2,1fr); }
  .s10-engine-grid { grid-template-columns: repeat(3,1fr); }
}

/* 1024px and below */
@media (max-width: 1024px) {
  :root { --container: 100%; --section-pad: 64px; }
  .container { padding: 0 32px; }
  .hero-main { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  /* .hero-desc { max-width: 100%; } */
  @media (max-width:768px){
    .hero-desc{
        text-align:center;
        padding:0 15px;
        line-height:1.3;
    }

    .hero-desc br{
        display:none;
    }
}
  .hero-tags-row, .hero-btns, .hero-stats { justify-content: center; }
  .hero-img-wrap { display: none; }
  /* .hero-trust-inner { justify-content: center; gap: 24px; } */
  .s2-grid, .s3-grid, .s7-grid, .form-split, .s-call-inner { grid-template-columns: 1fr; gap: 48px; }
  .s3-grid { grid-template-columns: 1fr; }
  .s3-center { min-height: 320px; }
  .s3-center-placeholder { min-height: 320px; }
  .s4-cards { grid-template-columns: 1fr; }
  .s5-float-cards { grid-template-columns: 1fr 1fr; margin-top: -30px; }
  .s6-grid { grid-template-columns: 1fr 1fr; }
  .s8-compare { grid-template-columns: 1fr; }
  .s9-grid { grid-template-columns: repeat(2,1fr); }
  .s10-grid { grid-template-columns: 1fr 1fr; }
  .s10-engine-grid { grid-template-columns: repeat(2,1fr); }
  .s2-float-badge, .s2-bar-chart { display: none; }
}

/* 992px */
@media (max-width: 992px) {
  .nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .s10-grid { grid-template-columns: 1fr; }
  .s2-stats-grid { grid-template-columns: 1fr 1fr; }
}
/* 300px - 390px */
@media (min-width: 300px) and (max-width: 400px) {
  .hero-tag {
    margin-bottom: 353px;
  }
}

/* 391px - 768px */
@media (min-width: 391px) and (max-width: 768px) {
  .hero-tag {
    margin-bottom: 394px;
  }
}
@media (max-width:768px){
  /* .hero-tag{
        margin-bottom: 313px;

  } */
    .hero-stats{
      margin-bottom: 204px;

        flex-wrap:nowrap; /* keep all 4 in one row */
        gap:8px;
    }

    .hero-stat-item{
        min-width:0;
    }

    .hero-stat-num{
        font-size:15px;
    }

    .hero-stat-label{
        font-size:10px;
        line-height:1.0;
    }
    .s5-img-wrap{
      height: 340px;
    }
  }

/* 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .container { padding: 0 20px; }
  .hero-main { padding: 30px 20px 40px; }
  /* .hero-stats { flex-wrap: wrap; gap: 20px; } */
  /* .hero-trust-inner { gap: 16px; } */
  .s5-float-cards { grid-template-columns: 1fr; margin-top: 30px;}
  .s6-grid { grid-template-columns: 1fr; }
  .s9-grid { grid-template-columns: 1fr; }
  .s10-engine-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .s7-deco-badge { width: 80px; height: 80px; top: -10px; right: -10px; }
  .s7-deco-num { font-size: 20px; }
  .hero-trust-strip { padding: 20px 20px; }
  .s2-stats-grid { grid-template-columns: 1fr; }

}

/* 576px */
@media (max-width: 576px) {
  :root { --section-pad: 48px; }
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .nav-logo { font-size: 18px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; font-size: 11px; }
  .s5-chips-row { gap: 8px; }
  .s10-tabs { overflow-x: auto; }
  .form-card { padding: 28px 20px; }
  .s-call-card { padding: 28px 20px; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-h1 { font-size: 30px; }
  .section-heading { font-size: 30px; }
  .s4-card { padding: 28px 24px; }
  .faq-question { font-size: 13px; }
}

/* 375px */
@media (max-width: 375px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 14px; }
  .hero-h1 { font-size: 30px; }
  .section-heading { font-size: 24px; }
  /* .hero-stats { flex-direction: column; gap: 14px; } */
}

/* 320px */
@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .hero-h1 { font-size: 26px; }
  .section-heading { font-size: 22px; }
  .hero-tag { font-size: 10px; }
  .btn { padding: 12px 16px; font-size: 12px; }
}

/* ============================================================
   MICRO-INTERACTIONS & ANIMATION
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease both;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-trust-strip{
    width:100%;
}

.hero-trust-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    max-width:1400px; /* optional */
    margin:0 auto;
    gap:24px;
}

.hero-trust-item{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:left;
    padding:16px;
}

/* Tablet */
/* @media (max-width:991px){
    .hero-trust-inner{
        flex-wrap:wrap;
    }

    .hero-trust-item{
        flex:0 0 calc(50% - 12px);
    }
} */

/* Mobile */
@media (max-width:576px){
    .hero-trust-item{
        flex:0 0 100%;
    }
}
@media (max-width:768px){

    .hero-main{
        display:flex;
        flex-direction:column;
    }

    .hero-content{
        order:1;
        margin-top: 5px;
    }
    .s2-img-wrap{
      height: 290px;
    }
    .hero-img-wrap{
        order:2;
        margin-top:24px;
    }

    .hero-trust-strip{
        order:3;
    }
    /*.s3-fico, .s3-fico-img{*/
    /*  position: relative;*/
    /*}*/
    .s3-fico, .s3-fico-img{
      position: relative;
      top: 0px;
    }
   
    .s3-right{
      margin-top: 0px;
    }
    /*.s3-right{*/
    /*  margin-top: 70px;*/
    /*}*/
    .s3-center{
      height: 350px;
    }
}
@media (max-width:768px){

  .hero-trust-inner{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
  }

  .hero-trust-item{
    padding:8px 4px;
    text-align:center;
    flex-direction:column;
  }

  .hero-trust-icon{
    margin-bottom:4px;
  }

  .hero-trust-val{
    font-size:10px;
  }
  

  .hero-trust-item div:last-child{
    font-size:10px;
    line-height:1.2;
  }
  .reveal.visible {
    text-align: center;
  }
  .s10-zone-card{
    text-align: left;
  }
  .s10-zone-features{
    list-style:none;
    padding:0;
    margin:20px 0 0;
    text-align:left !important;
}

.s10-zone-features li{
    text-align:left !important;
    /* justify-content:center; */
}

}
@media (max-width:768px){

    /* Hide button */
    .nav-cta{
        display:none;
    }

    /* Center logo */
    .nav-inner{
        display:flex;
        justify-content:center;
        align-items:center;
        height: 80px;
    }

    .nav-logo{
        margin:0 auto;
        text-align:center;
    }
    .top-logo{
      width: 190px;
    }
}
@media (max-width:768px){

.hero{
    min-height:100vh;
    background:url("images/hero-mobile-1.png");
    background-size:cover;
    background-position:center 10px !important;
    background-repeat:no-repeat;
}

.hero-main{
    max-width:1400px;
    margin:0 auto;
    min-height:100vh;

    display:flex;
    align-items:flex-end;   /* pushes content lower */
    
    padding:120px 40px 80px;
}
  .hero-img-wrap{
      display:none;
  }
  .hero-stats{
    display: none;
  }

  .hero-content{
      max-width:100%;
  }
    .ten-cta{
    display: flex;
  }
  .s7-checklist, .form-highlights, .form-card,.s4-card ul  {
    text-align: left;
  }
}
@media (max-width:390px){


  .hero{
      background-position:center bottom;
  }

  .hero-main{
      padding-bottom:220px;
  }

  .hero-h1{
      font-size:29px;
  }
}
@media (max-width:768px){
  .hero-desc{
    font-size: 14px;
    margin-bottom: 26px;
  }

  .hero{
    min-height:auto;
  }

  .hero-main{
    padding:20px 16px 20px;
  }

  .hero-img-wrap{
    margin-top:15px;
    height:180px; /* reduce image height */
  }

  .hero-img{
    height:100%;
  }
}
@media (max-width:768px){

  .hero{
    min-height:700px; /* instead of 100vh */
    background-size:cover;
    background-position:center bottom;
  }
}
.top-logo{
  width: 210px;
    height: auto;
    /* display: block; */
    /* margin: 0 auto; */
}
@media (max-width:768px){

    .hero{
        min-height:auto;
    }

    .hero-main{
        min-height:auto;
        padding:30px 20px;
    }
}

