:root{
  --cream:#F6F1E6;
  --cream-2:#EFE8D7;
  --card:#FCFAF3;
  --green:#2E4A22;
  --green-deep:#1C2E14;
  --green-mid:#3C5A2C;
  --gold:#C19A4B;
  --gold-soft:#D8B96F;
  --ink:#23291D;
  --muted:#5E6052;
  --muted-2:#7A7C6C;
  --line:#E2DAC6;
  --line-dark:rgba(255,255,255,.14);
  --radius:18px;
  --radius-lg:26px;
  --maxw:1180px;
  --font-body: 'Glance Sans';
  /* --serif: 'Playfair Display', Georgia, serif; */
  /* --sans: 'Inter', system-ui, -apple-system, sans-serif; */
}


html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Prevent any child from breaking layout */
* {
  max-width: 100%;
}

/* ===== RESET ===== */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Glance Sans';
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{
  max-width:100%;
  display:block
}
a{
  text-decoration:none;
  color:inherit
}

/* ===== LAYOUT ===== */
.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 40px
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3{
 font-family:'Glance Sans';
  -weight:600;
  line-height:1.12;
  letter-spacing:-.01em;
  color:var(--ink);
}
.accent{
  color:#6ca439;
  /* font-style:italic; */
  font-weight:500;}
.accent-gold{
  color:var(--gold);
  /* font-style:italic; */
  font-weight:500;
}
.h-sec{
  font-size:clamp(30px,4.4vw,42px);
}
.lead{
  color:var(--muted);
  font-size:17px;
  max-width:620px;
  line-height:1.4;
}
.center{
  text-align:center
}
.center .lead{
  margin-left:auto;
  margin-right:auto;
}

/* ===== EYEBROW ===== */
.eyebrow{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
/* .eyebrow::before{
  content:"";width:24px;
  height:1px;
  background:var(--gold);
  flex-shrink:0;
} */
.eyebrow.center{
  justify-content:center;
}
/* .eyebrow.center::after{
  content:"";width:24px;
  height:1px;
  background:var(--gold);
  flex-shrink:0;
} */

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-weight:600;
  font-size:15px;
  padding:10px 28px;
  border-radius:50px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:.25s ease;
  font-family:var(--sans);
  white-space:nowrap;
  text-align:center;
}
.btn-primary{
  background:#25591f;
  color:#fff;
  border-color:var(--green);
}
.btn-primary:hover{
  background:var(--green-deep);
  border-color:var(--green-deep);
  transform:translateY(-2px)
}
.btn-ghost{
  background:transparent;
  color:#25591f;
  border-color:var(--line);
}
.btn-ghost:hover{
  border-color:var(--green);
  background:rgba(46,74,34,.05);
}
.btn-gold{
  background:var(--gold);
  color:#23291D;
  border-color:var(--gold);
}
.btn-gold:hover{
  background:var(--gold-soft);
  transform:translateY(-2px);
}
.btn-light{
  background:#fff;
  color:var(--green);
}
.btn-light:hover{
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  color:#F6F1E6;
  border-color:var(--line-dark);
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.08);
}

/* ===== HEADER ===== */
header{
  position:sticky;top:0;z-index:60;
  background:rgba(246,241,230,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}
.logo{
  display:flex;
  flex-direction:column;
  line-height:1;
  gap:4px;
}
.logo img{
    height: 50px; /* Adjust as needed */
    width: auto;
    display: block;
}
.logo .tag{
  font-size:8.5px;
  letter-spacing:.36em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}
.nav-links{
  display:flex;
  gap:32px;
  align-items:center;
}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  transition:.2s;
  padding:4px 0;
}
.nav-links a:hover{
  color:var(--green);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:12px;
}
.menu-btn{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
  padding:6px;
}
.menu-btn span{
  width:24px;
  height:2px;
  background:var(--green);
  display:block;
  transition:.3s;
  border-radius:2px;
}

/* ===== SECTIONS ===== */
section{
  padding:70px 0;
}

.tint{
  background:var(--cream-2)
}
.dark{
  background:#25591f;
  color:#EDE7D6;
}
.dark h2,.dark h3{
  color:#fff;
}
.dark .eyebrow{
  color:var(--gold-soft);
}
.dark .lead{
  color:rgba(237,231,214,.72);
}

/* Section header block — centered */
.sec-head{
  max-width:680px;
  margin:0 auto 56px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.sec-head.left{
  align-items:flex-start;
}
.sec-head h2{
  margin-bottom:16px;
}
.sec-head .lead{
  text-align:center;
}
.sec-head.left .lead{
  text-align:left;
}

/* ===== HERO FULL BG ===== */
.hero.full-bg {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url('../images/hero1.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
   padding: 0 0 60px;  
  margin: 0;
}
.hero.full-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(66, 61, 61, 0.45); */
  z-index: 1;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: -20px;
}
.hero-content h1 {
  color: #ffffff;
  font-family: 'Glance Sans';
  font-size: clamp(22px, 4vw, 27px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: #070707;
}
.center-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.btn-dashed {
  background: transparent;
  color: #ffffff;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  /* backdrop-filter: blur(4px); */
  font-weight: 500;
  border-radius: 30px;
  font-size: 18px;
}
.btn-dashed:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.stats-bar{
  background:white;
  padding:32px 0;
  width:100%;
}
.hero-stats{
  display:flex;
  gap:0;
  flex-wrap:nowrap;
  width:100%;
}
.hstat{
  flex:1;
  text-align:center;
  padding:0 10px;
}
.hstat:not(:last-child){
  border-right:1.5px solid rgba(195, 12, 12, 0.15);
}
.hstat .num{
  font-family:var(--serif);
  font-size:36px;
  font-weight:700;
  color:var(--gold-soft);
  line-height:1.1;
}
.hstat .lbl{
  font-family:var(--sans);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:black;
  font-weight:700;
  margin-top:8px;
  white-space:nowrap;
}
.hero-media{
  position:relative;
}
.hero-media .frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:540px;
  box-shadow:0 32px 80px -30px rgba(28,46,20,.55);
  background:linear-gradient(135deg,#3C5A2C,#1C2E14);
}
.hero-media .frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-media .badge{
  position:absolute;
  bottom:24px;left:24px;
  background:rgba(252,250,243,.95);
  backdrop-filter:blur(8px);
  padding:14px 20px;border-radius:14px;
  box-shadow:0 12px 32px -10px rgba(0,0,0,.3);
}
.hero-media .badge .b1{font-family:'Glance Sans';font-size:19px;font-weight:700;color:var(--green)}
.hero-media .badge .b2{font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted-2);font-weight:600;margin-top:3px}

/* ===== SPLIT (image + text) ===== */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.split .media{
  border-radius:var(--radius-lg);overflow:hidden;height:480px;
  box-shadow:0 24px 64px -28px rgba(28,46,20,.45);
  /* background:linear-gradient(135deg,#3C5A2C,#1C2E14); */
  /* margin-left: -200px; */
  /* width: calc(100% + 100px); */
}
.split .media img{
  width:100%;
  height:100%;
  object-fit:cover;
  /* max-width: 1200px; */
}
.split-copy{
  display:flex;
  flex-direction:column;
}
.split h2{
  font-size:clamp(27px,3.6vw,40px);
  margin-bottom:16px;
}
.feat-list{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.feat{display:flex;gap:16px;align-items:flex-start}
.feat .ic{
  flex:none;width:44px;height:44px;border-radius:12px;
  background:rgba(46,74,34,.08);display:grid;place-items:center;
  color:var(--green);font-size:18px;
}
.feat h4{font-family:'Glance Sans';font-size:18px;font-weight:700;margin-bottom:3px;color:var(--ink)}
.feat p{font-size:15px;color:var(--muted);line-height:1.6}

/* ===== CARDS GRID ===== */
.cards{display:grid;gap:20px}
.cards.c3{grid-template-columns:repeat(3,1fr)}
.cards.c5{grid-template-columns:repeat(5,1fr)}
.cards.c4{grid-template-columns:repeat(4,1fr)}
.cards.c2{grid-template-columns:repeat(2,1fr)}

.gcard{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:28px 24px;transition:.25s ease;
  display:flex;flex-direction:column;
}
.gcard:hover{transform:translateY(-4px);box-shadow:0 20px 44px -22px rgba(28,46,20,.32);border-color:var(--gold-soft)}
.gcard .ic{
  width:46px;height:46px;border-radius:12px;
  background:rgba(193,154,75,.12);display:grid;place-items:center;
  color:var(--gold);margin-bottom:16px;font-size:20px;flex-shrink:0;
}
.gcard h3{font-family:'Glance Sans';font-size:15.5px;font-weight:700;margin-bottom:8px;color:var(--ink)}
.gcard p{font-size:14px;color:var(--muted);line-height:1.6;flex:1}

.quote-line{
  margin-top:48px;text-align:center;
  font-family:'Glance Sans';font-style:italic;
  font-size:clamp(18px,2.2vw,24px);color:var(--green);
  max-width:820px;margin-left:auto;margin-right:auto;line-height:1.5;
}

/* ===== MARKET STATS ===== */
.mstats{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.mstat{
  background:var(--card);border:1px solid var(--line);
  border-radius:var(--radius);padding:32px 26px;
  display:flex;flex-direction:column;
}
.mstat .tag{
  font-size:13px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);font-weight:700;margin-bottom:16px;
}
.mstat .big{ 
  font-family:'Glance Sans';font-size:clamp(32px,3.8vw,45px);
  font-weight:700;color:var(--green);line-height:1;margin-bottom:20px;
}
.mstat .cap{font-size:13px;color:var(--muted);line-height:1.55;flex:1}

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:210px;
  gap:14px;
}
.gallery .tile{
  border-radius:16px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,#3C5A2C,#1C2E14);
}
.gallery .tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}
.gallery .tile:hover img{
  transform:scale(1.06);
}
.gallery .tile.wide{
  grid-column:span 2;
}
.gallery .tile.tall{
  grid-row:span 2;
}
.gallery .tile .cap{
  position:absolute;
  left:14px;
  bottom:14px;
  color:#fff;
  font-family:var(--serif);
  font-weight:600;
  font-size:17px;
  text-shadow:0 2px 14px rgba(0,0,0,.55);
}
.tags{display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:32px;
}
.tag-pill{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:50px;
  padding:9px 18px;
  font-size:18px;
  font-weight:500;
  color:var(--muted);
}

/* ===== REVENUE MODEL CARD ===== */
.model-card{
  /* background:linear-gradient(160deg,#33502A,#21351A); */
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1.15fr;
}
.model-card .left{
   border-radius: var(--radius-lg) !important;
  padding:20px 24px;
  background:url(../images/ad-3.png);
  display:flex;
  flex-direction:column;
  /* justify-content:center; */
}
.model-card .left .share{
  font-family:'Glance Sans';
  font-size:clamp(48px,7vw,78px);
  font-weight:700;
  color:#fff;
  line-height:1;
}
.model-card .left .share span{
  color:var(--gold-soft);
}
.model-card .left .sub{
  font-size:15px;
  color:rgba(237,231,214,.68);
  margin-top:12px;
}
.model-card .left .note{
  margin-top:24px;
  font-size:15px;
  color:rgba(237,231,214,.5);
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  line-height:1.6;
}
.model-card .right{
  padding:44px;
}
.mrow{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.09);
}
.mrow:last-child{
  border-bottom:none;
}
.mrow .ck{
  flex:none;
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--gold);
  color:#21351A;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
  margin-top:2px;
}
.mrow h4{
  font-family:'Glance Sans';
  font-size:15px;
  font-weight:700;
  color:#fff;
  margin-bottom:3px;
}
.mrow p{
  font-size:13.5px;
  color:rgba(237,231,214,.64);
  line-height:1.55;
}

.engines{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:50px;
}
.engine{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:26px 22px;
  transition:.25s;
}
.engine:hover{
  background:rgba(255,255,255,.09);
  transform:translateY(-3px);
}
.engine .ic{
  width:44px;
  height:44px;
  border-radius:11px;
  background:rgba(193,154,75,.18);
  display:grid;
  place-items:center;
  color:var(--gold-soft);
  margin-bottom:14px;
  font-size:18px;
}
.engine h4{
  font-family:'Glance Sans';
  color:#fff;font-size:15px;
  font-weight:700;
  margin-bottom:6px;
}
.engine p{
  font-size:13px;
  color:rgba(237,231,214,.6);
  line-height:1.55;
}

/* ===== COMPARE ===== */

.compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.cmp{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:34px 30px;
}
.cmp.high{
  border:1.5px solid var(--green);
  box-shadow:0 24px 60px -34px rgba(46,74,34,.55);
  position:relative;
}
.cmp .pin{
  position:absolute;
  top:-14px;
  left:28px;
  background:var(--green);
  color:#fff;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:50px;
}
.cmp .ctitle{
  font-family:'Glance Sans';
  font-size:28px;
  font-weight:700;
  margin-bottom:5px;
}
.cmp.high .ctitle{color:var(--green);
}
.cmp .csub{
  font-size:18px;
  color:var(--muted-2);
  margin-bottom:24px;
}
.cmp ul{
  list-style:none;
}
.cmp li{
  display:flex;
  gap:12px;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  font-size:20px;
  color:var(--ink);
}
.cmp li:last-child{
  border-bottom:none;
}
.cmp li .dot{
  flex:none;
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
}
.cmp.low li .dot{
  background:rgba(120,120,108,.14);
  color:var(--muted-2);
}
.cmp.high li .dot{
  background:rgba(46,74,34,.1);
  color:var(--green);
}

/* ===== WHY INVEST CARDS ===== */
.why{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.why .gcard h3{
  font-size:18px;
  margin-bottom:10px;
}

/* ===== PROCESS TIMELINE ===== */
.timeline{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  position:relative;
  margin-top:16px;
}
.tstep{
  position:relative;
  padding:0 16px;
  text-align:center;
}
.tstep .ring{
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--card);
  border:2px solid var(--gold);
  display:grid;
  place-items:center;
  margin:0 auto 20px;
  position:relative;
  z-index:2;
  color:var(--green);
  font-size:20px;
}
.tstep .ring .n{
  position:absolute;
  top:-9px;
  right:-9px;
  width:27px;
  height:27px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:700;
  display:grid;
  place-items:center;
}
.tstep h4{
  font-family:'Glance Sans';
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
  color:var(--ink);
}
.tstep p{
  font-size:14px;
  color:var(--muted);
  line-height:1.55;
}
.timeline::before{
  content:"";position:absolute;
  top:31px;
  left:10%;
  right:10%;
  height:2px;
  background:repeating-linear-gradient(90deg,var(--gold) 0 8px,transparent 8px 16px);
  z-index:1;
}

/* ===== PRICING TABS ===== */
.verticals{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:44px;
}
.vtab{
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:50px;
  padding:10px 22px;
  font-size:13.5px;
  font-weight:600;
  color:var(--muted);
  cursor:pointer;
  transition:.2s;
  font-family:'Glance Sans';
}
.vtab.active{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}
.vtab:hover:not(.active){
  border-color:var(--green);
  color:var(--green);
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.pcard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  transition:.25s;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.pcard::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:4px;
  height:100%;
  background:#25591f;
  opacity:0;
  transition:.25s;
}
.pcard:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 52px -28px rgba(28,46,20,.38);
}
.pcard:hover::after{
  opacity:1;
}
.pcard .ptype{
  font-size:10.5px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:12px;
}
.pcard h3{
  font-family:'Glance Sans';
  font-size:21px;
  font-weight:700;
  margin-bottom:10px;
}
.pcard .price{
  font-family:'Glance Sans';
  font-size:35px;
  font-weight:700;
  color:var(--green);
  margin-bottom:8px;
}
.pcard .pdesc{
  font-size:15.5px;
  color:var(--muted);
  line-height:1.6;flex:1;
}

/* ===== TWO-COL PROCESS ===== */
.twocol{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.pcol{
  background:var(--card);
  border:1px solid var(--line);
  ;
  border-radius:var(--radius-lg);
  padding:36px 32px;
  ;
}
.pcol .hd{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:22px;
}
.pcol .hd .badge{
  font-size:10.5px;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#fff;
  background:#25591f;
  padding:6px 14px;
  border-radius:50px;
  font-weight:700;
  white-space:nowrap;
}
.pcol .hd.gold .badge{
  background:var(--gold);
  color:#23291D;
}
.pcol h3{
  font-family:'Glance Sans';
  font-size:21px;
  color:var(--ink);
}
.pcol .item{
  display:flex;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  align-items:flex-start;
}
.pcol .item:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.pcol .item .num{
  flex:none;
  font-family:'Glance Sans';
  font-weight:700;
  color:var(--gold);
  font-size:17px;
  min-width:28px;
  line-height:1.4;
}
.pcol .item h4{
  font-family:'Glance Sans';
  font-size:18px;
  font-weight:700;
  margin-bottom:3px;
  color:var(--ink);
}
.pcol .item p{
  font-size:13.5px;
  color:var(--muted);
  line-height:1.55;
}

/* ===== OPERATOR CAROUSEL ===== */
.operator-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  /* overflow: hidden; */
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 150vw; /* 3 slides, each 50vw */
}
.carousel-slide {
  width: 50vw;
  flex-shrink: 0;
  padding: 0 10px; /* 12px padding left and right creates a 24px gap between cards */
  box-sizing: border-box;
}
.slide-inner {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 30px;
  overflow: hidden;
}
.slide-inner::before {
  content: '';
  /* position: absolute; */
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%); */
  z-index: 1;
}

.slide-inner.slide-right {
  justify-content: flex-end;
  text-align: right;
  /* width: 600px; */
}
.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 400px;
}
.slide-title {
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #f2ebd9;
}
.slide-pill {
  display: inline-block;
  background: #f6f1e6;
  color: #1a2f24;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
.slide-desc {
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.9;
}
.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
/* .c-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.c-dot.active {
  background: #fff;
  transform: scale(1.2);
} */

/* ===== TERRITORIES ===== */
.terr{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:56px;
  align-items:center;
  ;
}
.terr .media{
  border-radius:var(--radius-lg);
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  overflow:hidden;
  height:440px;
  /* box-shadow:0 24px 64px -30px rgba(28,46,20,.48); */
  background:linear-gradient(135deg,#3C5A2C,#1C2E14);
  margin-right:-40px; /* matches .wrap padding */
  width:calc(100% + 200px);
}
.terr .media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.terr-copy{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.terr h2{
  font-size:clamp(27px,3.4vw,38px);
  margin-bottom:16px;
}
.terr .lead{
  margin-bottom:0;
}

/* ===== CTA + FORM ===== */
.cta-wrap{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:56px;
  align-items:start;
}
.cta-copy{
  display:flex;
  flex-direction:column;
}
.cta-copy .eyebrow{
  color:var(--gold-soft);
}
.cta-copy h2{
  color:#fff;
  font-size:clamp(28px,3.8vw,44px);
  margin-bottom:18px;
  line-height:1.1;
}
.cta-copy>p{
  color:rgba(237,231,214,.7);
  font-size:16px;
  margin-bottom:32px;
  line-height:1.7;
}
.cta-pts{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.cta-pt{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.cta-pt .ck{
  flex:none;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--gold);
  color:#21351A;
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:13px;
  margin-top:1px;
}
.cta-pt span{
  font-size:14.5px;
  color:rgba(237,231,214,.84);
  line-height:1.55;
}

.form-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  padding:40px 36px;
  box-shadow:0 32px 80px -30px rgba(0,0,0,.5);
}
.form-card h3{
  font-family:'Glance Sans';
  font-size:24px;
  margin-bottom:6px;
}
.form-card .fnote{
  font-size:15px;
  color:var(--muted);
  margin-bottom:26px;
}
.frow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field.full{
  grid-column:1/-1;
}
.field label{
  font-size:12px;
  font-weight:700;
  color:var(--ink);
  letter-spacing:.02em;
}
.field label .req{
  color:var(--gold);
}
.field input,.field select,.field textarea{
  font-family:'Glance Sans';
  font-size:14px;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:11px;
  background:#fff;
  color:var(--ink);
  transition:.2s;
  width:100%;
  outline:none;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(46,74,34,.1);
}
.field textarea{
  resize:vertical;min-height:90px;
}
.form-card .btn-primary{
  width:100%;
  justify-content:center;
  margin-top:10px;
  padding:16px;
}

/* ===== FOOTER ===== */
/* ============ FOOTER ============ */
/* ============ FOOTER ============ */
.site-footer {
  background: #000;
  color: var(--cream-soft);
  padding-top: 50px;
}

/* Remove the old footer-grid and replace with centered layout */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,244,236,0.12);
}

.footer-logo {
  font-family:'Glance Sans';
  font-size: 30px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 16px;
  color: rgba(247,244,236,0.7);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: -36px;
}

.footer-powered {
  font-size: 12.5px;
  color: rgba(247,244,236,0.45);
  margin-bottom: -26px;
}

/* .footer-divider {
  width: 1px;
  height: 36px;
  background: rgba(247,244,236,0.15);
  margin-bottom: 36px;
} */

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.footer-nav a {
  font-size: 14.5px;
  color: rgba(247,244,236,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
/* .footer-nav a:hover { color: var(--gold-light); } */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.footer-contact a {
  font-size: 14px;
  color: rgba(247,244,236,0.72);
  text-decoration: none;
}
/* .footer-contact a:hover { color: var(--gold-light); } */

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 16px;
  color: rgba(247,244,236,0.55);
  margin-top: 20px;
  margin-bottom: -30px;
}



.logo-img {
    width: 180px; /* Adjust as needed */
    height: auto;
    display: block;
}
.footer-logo img {
    width: 180px; /* Adjust as needed */
    height: auto;
    display: block;
}
/* ===== SCROLL REVEAL ===== */
.reveal{opacity:0;transform:translateY(22px);transition:.7s cubic-bezier(.2,.7,.2,1)}
.reveal.in{opacity:1;transform:none}

/* ===== RESPONSIVE — TABLET ===== */
@media(max-width:980px){
  .wrap{padding:0 28px}
  section{padding:72px 0}

  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-media .frame{height:400px}
  .stats-bar{padding:24px 0}
  .hero-stats{flex-wrap:nowrap;gap:0}
  .hstat{flex:1;min-width:0;padding:0 8px}
  .hstat:not(:last-child){border-right:1px solid rgba(255,255,255,0.15);margin-right:0;padding-right:8px}

  .split{grid-template-columns:1fr;gap:36px}
  .split .media{height:360px;order:-1;margin-left:0;width:100%}

  .cards.c5{grid-template-columns:repeat(3,1fr)}
  .cards.c4{grid-template-columns:repeat(2,1fr)}
  .mstats{grid-template-columns:repeat(2,1fr)}

  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .gallery .tile.wide{grid-column:span 2}
  .gallery .tile.tall{grid-row:span 1}

  .model-card{grid-template-columns:1fr}
  .engines{grid-template-columns:repeat(2,1fr)}

  .compare{grid-template-columns:1fr}

  .why{grid-template-columns:repeat(2,1fr)}

  .timeline{grid-template-columns:1fr;gap:22px}
  .timeline::before{display:none}
  .tstep{display:flex;gap:18px;text-align:left;align-items:flex-start;padding:0}
  .tstep .ring{margin:0;flex-shrink:0}

  .price-grid{grid-template-columns:repeat(2,1fr)}
  .twocol{grid-template-columns:1fr}

  .operator-cards{grid-template-columns:repeat(2,1fr)}

  .terr{grid-template-columns:1fr;gap:32px}
  .terr .media{height:340px;order:-1}

  .cta-wrap{grid-template-columns:1fr;gap:36px}

  .foot-top{grid-template-columns:1fr 1fr}
  .foot-logo{grid-column:1/-1}
}

/* ===== RESPONSIVE — MOBILE ===== */
/* ===== RESPONSIVE — MOBILE ===== */
@media(max-width:640px){
  .wrap{padding:0 18px}
  section{padding:56px 0}

  /* ===== FIX OVERFLOW ===== */
  body { overflow-x: hidden; }
  
  .nav-links{display:none}
  .nav-links.open{
    display:flex;position:absolute;top:72px;left:0;right:0;
    flex-direction:column;background:var(--cream);
    padding:22px;gap:18px;
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 32px -20px rgba(0,0,0,.2);
  }

  /* HERO */
  .hero.full-bg { height: 80vh; min-height: 500px; padding: 0 0 40px; }
  .hero-content h1 { font-size: 26px; margin-bottom: 24px; padding: 0 16px; }
  .center-actions { flex-direction: column; align-items: center; padding: 0 20px; gap: 12px; }
  .center-actions .btn { width: 100%; justify-content: center; }

  /* STATS BAR */
  .stats-bar { padding: 20px 0; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hstat { flex: none; width: 50%; padding: 12px 8px; }
  .hstat:not(:last-child) { border-right: none; }
  .hstat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.1); }
  .hstat .num { font-size: 26px; }
  .hstat .lbl { font-size: 10px; }

  /* SPLIT — fix bleed image */
  /* Increase right column width */
.split {
  grid-template-columns: 1fr 1.4fr;  /* was 1fr 1fr — right side now wider */
  gap: 60px;
  align-items: center;
}
  .split .media {
    margin-left: 0 !important;
    width: 100% !important;
    height: 280px;
    order: -1;
  }

  /* CARDS */
  .cards.c5, .cards.c3, .cards.c4 { grid-template-columns: 1fr; }
  .mstats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mstat { padding: 20px 16px; }

  /* GALLERY */
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery .tile.wide { grid-column: span 1; }
  .gallery .tile.tall { grid-row: span 1; }

  /* MODEL CARD */
  .model-card { grid-template-columns: 1fr; }
  .model-card .left { min-height: 380px; }
  .model-card .left, .model-card .right { padding: 2px 12px; }

  /* ENGINES */
  .engines { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* COMPARE */
  .compare { grid-template-columns: 1fr; }

  /* WHY */
  .why { grid-template-columns: 1fr; }

  /* TIMELINE */
  .timeline { grid-template-columns: 1fr; gap: 22px; }
  .timeline::before { display: none; }
  .tstep { display: flex; gap: 18px; text-align: left; align-items: flex-start; padding: 0; }
  .tstep .ring { margin: 0; flex-shrink: 0; }

  /* PRICING */
  .price-grid { grid-template-columns: 1fr; }

  /* TWO COL */
  .twocol { grid-template-columns: 1fr; }

  /* TERRITORIES — fix bleed image */
  .terr { grid-template-columns: 1fr; gap: 28px; }
  .terr .media {
    margin-right: 0 !important;
    width: 100% !important;
    height: 280px;
    order: -1;
    border-radius: var(--radius-lg) !important;
  }

  /* EBG CAROUSEL */
  .ebg-carousel { padding: 0 18px; overflow: hidden; }
  .ebg-panel { flex: 0 0 100%; height: 200px; }
  .ebg-text-right { align-items: flex-start; text-align: left; }

  /* CTA + FORM */
  .cta-wrap { grid-template-columns: 1fr; gap: 28px; }
  .form-card { padding: 24px 18px; }
  .frow { grid-template-columns: 1fr; }

  /* FOOTER */
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
}

/* new */

.ic {
    width: 70px;
    height: 70px;
    /* margin: 0 auto 20px; */
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a84f, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    transition: all 0.4s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.gcard:hover .ic {
    transform: scale(1.15) rotate(10deg);
    /* box-shadow: 0 12px 25px rgba(212, 168, 79, 0.35); */
}

@keyframes floatIcon {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/*  */

.ic{
    width:70px;
    height:70px;
    /* margin:0 auto 20px; */
    border-radius:50%;
    background:linear-gradient(135deg,#c9a45c,#8c6b32);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    transition:all .4s ease;
    animation:float 3s ease-in-out infinite;
}

.engine:hover .ic{
    transform:translateY(-8px) scale(1.12);
    /* box-shadow:0 15px 35px rgba(201,164,92,.35); */
}

.engine:hover .ic i{
    animation:spinPulse .8s ease;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@keyframes spinPulse{
    0%{
        transform:scale(1) rotate(0);
    }
    50%{
        transform:scale(1.2) rotate(15deg);
    }
    100%{
        transform:scale(1) rotate(0);
    }
}


/*  */

.ring{
    position:relative;
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#c9a45c,#8d6e3c);
    color:#fff;
    font-size:34px;
    transition:all .4s ease;
    animation:floatRing 3s ease-in-out infinite;
}

.n{
    position:absolute;
    top:-8px;
    right:-8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#fff;
    color:#8d6e3c;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tstep:hover .ring{
    transform:translateY(-10px) scale(1.1);
    /* box-shadow:0 15px 35px rgba(201,164,92,.35); */
}

.tstep:hover .ring i{
    animation:bounceIcon .8s ease;
}

@keyframes floatRing{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@keyframes bounceIcon{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.25);
    }
}

/*  */

.ic{
    width:80px;
    height:80px;
    /* margin:0 auto 18px; */
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    background:linear-gradient(135deg,#c9a45c,#8c6a33);
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
}

.ic::before{
    content:'';
    position:absolute;
    inset:-3px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.25);
    animation:rotateRing 8s linear infinite;
}

.gcard:hover .ic{
    transform:translateY(-8px) scale(1.12);
    /* box-shadow:0 15px 35px rgba(201,164,92,.35); */
}

.gcard:hover .ic i{
    animation:pulseIcon .8s ease;
}

@keyframes rotateRing{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes pulseIcon{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.25);
    }
}

/*  */

.ic{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#c9a45c,#8d6b35);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    position:relative;
    overflow:hidden;
    transition:all .4s ease;
}

.ic::before{
    content:'';
    position:absolute;
    width:120%;
    height:120%;
    border:2px solid rgba(255,255,255,.2);
    border-radius:20px;
    animation:rotateBorder 8s linear infinite;
}

.feat:hover .ic{
    transform:translateY(-8px) scale(1.08);
    /* box-shadow:0 15px 35px rgba(201,164,92,.35); */
}

.feat:hover .ic i{
    animation:iconBounce .8s ease;
}

@keyframes rotateBorder{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes iconBounce{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.25);
    }
}



/*  */
/* ===== EBG TWO-PANEL BANNER ===== */
/* ===== EBG TWO-PANEL BANNER ===== */
/* ===== EBG CAROUSEL ===== */
.ebg-carousel {
  position: relative;
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: hidden;
}

.ebg-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.ebg-panel {
  position: relative;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 calc(50% - 8px); /* 2 visible at a time */
}

.ebg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
 
}

.ebg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ebg-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ebg-text-left  { align-items: flex-start; text-align: left; }
.ebg-text-right { align-items: flex-end;   text-align: right; }

.ebg-title {
  font-family: 'Glance Sans', sans-serif !important;
  font-size: clamp(24px, 2.8vw, 40px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.05 !important;
  letter-spacing: 0.01em !important;
  margin: 0 !important;
  text-transform: uppercase;
}

.ebg-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
}
.ebg-pill-light { background: #f6f1e6; color: #23291D; }
.ebg-pill-gold  { background: rgba(160,130,50,0.85); color: #fff; }

.ebg-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.90);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* Dots */
.ebg-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.ebg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(46,74,34,0.2);
  cursor: pointer;
  transition: .25s;
  padding: 0;
}
.ebg-dot.active {
  background: var(--green);
  transform: scale(1.25);
}

/* Arrows */
.ebg-arrow {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--green);
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ebg-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.ebg-prev { left: 44px; }
.ebg-next { right: 44px; }

/* Tablet */
@media(max-width:980px) {
  .ebg-carousel { padding: 0 28px; }
  .ebg-panel { height: 200px; flex: 0 0 calc(50% - 8px); }
  .ebg-prev { left: 30px; }
  .ebg-next { right: 30px; }
}

/* Mobile — 1 panel visible */
@media(max-width:640px) {
  .ebg-carousel { padding: 0 18px; }
  .ebg-panel {
    height: 220px;
    flex: 0 0 100%;
  }
  .ebg-text-right { align-items: flex-start; text-align: left; }
  .ebg-prev { left: 20px; }
  .ebg-next { right: 20px; }
}

/*  */
/* ===== COMPARE SECTION BG ===== */


/* Dark overlay so cards stay readable */



@media(max-width:640px){

  /* ===== CENTER ALL HEADINGS & TEXT ON MOBILE ===== */

  /* Split section — Image 1 */
  .split-copy { align-items: center; text-align: center; }
  .split-copy .eyebrow { justify-content: center; }
  .split-copy .lead { text-align: center; margin: 0 auto; }
  .feat-list { align-items: center; }
  .feat { flex-direction: column; align-items: center; text-align: center; }

  /* Gap cards — Image 2 */
  .gcard { align-items: center; text-align: center; }
  .gcard .ic { margin: 0 auto 16px; }

  /* Compare — Image 3 */
  /* .cmp { text-align: center; }
  .cmp li { justify-content: center; } */

  /* Pricing cards — Image 4 */
  .pcard { align-items: center; text-align: center; }

  /* Why invest cards — Image 5 */
  .why .gcard { align-items: center; text-align: center; }
  .why .gcard .ic { margin: 0 auto 16px; }

  /* Territories — Image 6 */
  .terr-copy { align-items: center; text-align: center; }
  .terr-copy .eyebrow { justify-content: center; }
  .terr-copy .lead { text-align: center; }
  .terr-copy .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .terr-copy .hero-actions .btn { width: 100%; justify-content: center; }

  /* TWO-COL process */
  .pcol { text-align: center; }
  .pcol .hd { justify-content: center; }
  .pcol .item { flex-direction: column; align-items: center; text-align: center; }

  /* Operator / EBG cards */
  .ocard { text-align: center; align-items: center; }

  /* Section heads — already centered but ensure */
  .sec-head { text-align: center; align-items: center; }
  .sec-head .lead { text-align: center; }

  /* Timeline */
  .tstep { flex-direction: column; align-items: center; text-align: center; }
  .tstep .ring { margin: 0 auto 16px; }

  /* Market stats */
  .mstat { text-align: center; align-items: center; }

  /* Engine cards in dark section */
  .engine { text-align: center; }
  .engine .ic { margin: 0 auto 14px; }

  /* Model card rows */
  .mrow { flex-direction: column; align-items: center; text-align: center; }

  /* CTA copy */
  .cta-copy { align-items: center; text-align: center; }
  .cta-copy .eyebrow { justify-content: center; }
 

  /* Eyebrows globally */
  .eyebrow { justify-content: center; width: 100%; }

}

/*  */
@media(max-width:640px) {
  .split { grid-template-columns: 1.8fr; }
  .split .media { margin-left: 0 !important; width: 100% !important; }
}

@media(max-width:980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .media { margin-left: 0 !important; width: 100% !important; height: 360px; order: -1; }
}

@media(max-width:640px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split .media { margin-left: 0 !important; width: 100% !important; height: 280px; order: -1; }
}


/*  */

/* ===== TERRITORIES — image bleeds right ===== */
.terr {
  display: grid;
  grid-template-columns: 1fr 1.2fr;  /* give image column more space */
  gap: 56px;
  align-items: center;
}

.terr .media {
  border-radius: var(--radius-lg);
  border-top-right-radius: 0;        /* flush right edge */
  border-bottom-right-radius: 0;
  overflow: hidden;
  height: 440px;
  background: linear-gradient(135deg,#3C5A2C,#1C2E14);
  margin-right: 100px;               /* bleed past .wrap padding */
  width: calc(100% + 100px);         /* fill to viewport edge */
}

.terr .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:640px) {
  .terr { grid-template-columns: 1fr; gap: 28px; }
  .terr .media {
    margin-right: 0 !important;
    width: 100% !important;
    height: 280px;
    order: -1;
    border-radius: var(--radius-lg) !important;
  }
}
@media(max-width:980px) {
  .terr { grid-template-columns: 1fr; gap: 32px; }
  .terr .media {
    margin-right: 0;
    width: 100%;
    height: 340px;
    order: -1;
    border-radius: var(--radius-lg);
  }


  .cta-pt span{
  font-size:11.5px;
  color:rgba(237,231,214,.84);
  line-height:1.55;
}
}

@media(max-width:640px) {

  .ebg-carousel { padding: 0 18px; overflow: hidden; }

  .ebg-track { gap: 12px; }

  .ebg-panel {
    flex: 0 0 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Force ALL text left, bottom-aligned, inside card */
  .ebg-text,
  .ebg-text-left,
  .ebg-text-right {
    position: absolute !important;
    inset: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    justify-content: flex-end !important;
    padding: 16px 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Title — smaller, no wrap overflow */
  .ebg-title {
    font-size: 18px !important;
    line-height: 1.1 !important;
    margin: 0 0 6px !important;
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }

  /* Pill */
  .ebg-pill {
    font-size: 10px !important;
    padding: 4px 12px !important;
    white-space: nowrap !important;
    max-width: 100% !important;
  }

  /* Desc */
  .ebg-desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-top: 4px !important;
    max-width: 100% !important;
  }

  /* Stronger overlay for readability */
  .ebg-overlay {
    background: rgba(0, 0, 0, 0.45) !important;
  }

  /* Dots */
  .ebg-dots { margin-top: 12px; }
}



@media(max-width:640px) {
  .hero.full-bg {
    background-image: url('../images/mhero.png'); /* mobile */
    background-position: center center;
    height: 100vh;
    min-height: 600px;
  }



}

@media(max-width:640px) {
  .model-card .left {
    background: url('../images/Mobile-ad.png') !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 320px;
    border-radius: var(--radius-lg) !important;
  }
}

/* ===== EBG CAROUSEL — MOBILE IMAGES ===== */
@media(max-width:640px) {

  /* Hide desktop img, show mobile bg instead */
  .ebg-panel .ebg-img {
    display: none !important;  /* hide <img> tag */
  }

  /* Each panel gets its own mobile background */
  .ebg-panel:nth-child(1) {
    background: url('../images/Mobie-as-1.png') center/cover no-repeat;
  }

  .ebg-panel:nth-child(2) {
    background: url('../images/Mobie-as-2.png') center/cover no-repeat;
  }

  .ebg-panel:nth-child(3) {
    background: url('../images/Mobie-as-3.png') center/cover no-repeat;
  }

}


@media(max-width:640px) {

  .ebg-panel {
    flex: 0 0 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden !important;
    position: relative;
    gap: 20px;
  }

  /* CRITICAL — contain text inside panel */
  .ebg-text,
  .ebg-text-left,
  .ebg-text-right {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 52% !important;        /* text in left 52% only */
    padding: 14px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }

  /* Panel 2 text on RIGHT side */
  .ebg-panel:nth-child(2) .ebg-text,
  .ebg-panel:nth-child(2) .ebg-text-right {
    left: auto !important;
    right: 0 !important;
    width: 55% !important;
    align-items: flex-start !important;
  }

  /* Title — must NOT overflow */
  .ebg-title {
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    word-break: break-word !important;
    white-space: normal !important;
    overflow: hidden !important;
    max-width: 100% !important;
  }

  .ebg-pill {
    font-size: 9px !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: inline-block !important;
  }

  .ebg-desc {
    font-size: 10px !important;
    line-height: 1.35 !important;
    color: rgba(255,255,255,0.90) !important;
    margin: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Per-panel gradient tints */
  .ebg-panel:nth-child(1) .ebg-overlay {
    background: linear-gradient(
      to right,
      rgba(160,90,65,0.90) 0%,
      rgba(160,90,65,0.55) 52%,
      transparent 100%
    ) !important;
  }

  .ebg-panel:nth-child(2) .ebg-overlay {
    background: linear-gradient(
      to left,
      rgba(10,35,18,0.90) 0%,
      rgba(10,35,18,0.55) 55%,
      transparent 100%
    ) !important;
  }

  .ebg-panel:nth-child(3) .ebg-overlay {
    background: linear-gradient(
      to right,
      rgba(20,30,40,0.90) 0%,
      rgba(20,30,40,0.55) 52%,
      transparent 100%
    ) !important;
  }
}