/* ── Design Tokens ── */
:root {
  --blue-950:  #040D21;
  --blue-900:  #071233;
  --blue-800:  #0B1D52;
  --blue-700:  #102468;
  --blue-600:  #153080;
  --blue-500:  #1A3D9B;
  --blue-400:  #2E55C1;
  --blue-200:  #A8BAEC;
  --blue-100:  #D4DCEF;
  --blue-50:   #EEF1F9;

  --red-600:   #C8102E;
  --red-500:   #E8132F;
  --red-400:   #FF2B47;
  --red-100:   #FFE4E8;
  --red-50:    #FFF5F6;

  --white:     #FFFFFF;
  --gray-50:   #F7F8FC;
  --gray-100:  #EFF1F7;
  --gray-200:  #DDE1EE;
  --gray-400:  #8B93B0;
  --gray-600:  #4A5068;
  --gray-900:  #111827;

  --text:      #0D1526;
  --muted:     #5A6380;
  --border:    #E2E5F0;

  --shadow-xs: 0 1px 3px rgba(7,18,51,.08);
  --shadow-sm: 0 2px 8px rgba(7,18,51,.10);
  --shadow-md: 0 8px 32px rgba(7,18,51,.12);
  --shadow-lg: 0 20px 60px rgba(7,18,51,.16);
  --shadow-xl: 0 32px 80px rgba(7,18,51,.20);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --ease:     cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --dur:      0.28s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem);  font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);  font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; /***padding: 0 28px;**/ }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.bg-slate   { background: var(--gray-50); }

/* ── Eyebrow ── */
.eyebrow, .hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-500); margin-bottom: 14px;
}
.eyebrow::before, .hero-tag::before {
  content: ''; display: block;
  width: 22px; height: 2px; border-radius: 2px; background: var(--red-500); flex-shrink: 0;
}

/* ════════════════════════════════════════
   BUTTONS — override Bootstrap completely
════════════════════════════════════════ */
.agi-btn {
  display: inline-flex !important; align-items: center; gap: 8px;
  justify-content: center;
  padding: 13px 26px; border-radius: var(--r-md);
  font-family: var(--font-body) !important; font-size: .92rem; font-weight: 600 !important;
  cursor: pointer; border: 2px solid transparent;
  line-height: 1 !important;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), background var(--dur), color var(--dur), border-color var(--dur);
  white-space: nowrap; text-decoration: none;
}
.agi-btn:hover { transform: translateY(-2px); text-decoration: none; }

.agi-btn-primary {
  background: var(--red-500) !important; color: var(--white) !important;
  border-color: var(--red-500) !important;
  box-shadow: 0 4px 20px rgba(232,19,47,.28);
}
.agi-btn-primary:hover {
  background: var(--red-600) !important; border-color: var(--red-600) !important;
  box-shadow: 0 8px 32px rgba(232,19,47,.38); color: var(--white) !important;
}

.agi-btn-outline-white {
  background: transparent !important; color: var(--white) !important;
  border-color: rgba(255,255,255,.45) !important;
}
.agi-btn-outline-white:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.8) !important;
  color: var(--white) !important;
}

.agi-btn-outline-blue {
  background: transparent !important; color: var(--blue-700) !important;
  border-color: var(--blue-200) !important;
}
.agi-btn-outline-blue:hover {
  background: var(--blue-50) !important;
  border-color: var(--blue-400) !important;
  color: var(--blue-800) !important;
}

.agi-btn-dark {
  background: var(--blue-900) !important; color: var(--white) !important;
  border-color: var(--blue-900) !important;
}
.agi-btn-dark:hover {
  background: var(--blue-800) !important; border-color: var(--blue-800) !important;
  color: var(--white) !important;
}

.agi-btn-sm { padding: 9px 18px !important; font-size: .84rem !important; border-radius: var(--r-sm) !important;max-width:150px; }

.agi-btn-arrow::after {
  content: '→'; margin-left: 2px;
  transition: transform var(--dur); display: inline-block;
}
.agi-btn-arrow:hover::after { transform: translateX(4px); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav-root {
  position: fixed; top: 0; left: 0; right: 0; bottom: auto;
  z-index: 1000;
  transition: background var(--dur), box-shadow var(--dur);
}
.home-nav img.white{
  display: block;
}
.home-nav img.default{
  display:none;
}
.home-nav .scrolled img.white{
display:none;
}
.home-nav .scrolled img.default{
display: block;
}
.main .home-nav img.default{
display: block;
}
.main .home-nav img.white{
display: none;
}
.main .nav-root{
  position: relative;
}
.main .nav-root.scrolled{
  position: fixed;
}
.nav-root.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

/* Force white bg on inner pages (no hero slider) */
.nav-root.page-nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-root.scrolled .nav-links-wrap a { color: var(--gray-600); }
.nav-root.page-nav .nav-links-wrap a:hover { background: var(--gray-100); color: var(--blue-800); }
.nav-root.page-nav .nav-links-wrap a.active { color: var(--blue-700); background: var(--blue-50); }
.nav-root.page-nav .nav-logo-text { color: var(--blue-800); }
.nav-root.page-nav .nav-hamburger span { background: var(--blue-800); }

.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}

.nav-logo { display: flex; align-items: center; gap: 10px;width: 180px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; line-height: 1;
}
.nav-root.scrolled .nav-logo-text { color: var(--blue-800); }
.nav-logo-text .red { color: var(--red-500); }

.nav-links-wrap { display: flex; align-items: center; gap: 2px; }
.nav-links-wrap a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: background var(--dur), color var(--dur);
}
.nav-links-wrap a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.main .nav-root .nav-links-wrap a { color: var(--gray-600); }
.nav-root.scrolled .nav-links-wrap a:hover { background: var(--gray-100); color: var(--blue-800); }
.nav-root.scrolled .nav-links-wrap a.active { color: var(--blue-700); background: var(--blue-50); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  border-radius: 2px; background: var(--white);
  transition: all var(--dur) var(--ease-out);
}

.nav-root.scrolled .nav-hamburger span, .main .nav-root .nav-hamburger span { background: var(--blue-800); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 20px 20px; gap: 2px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 8px 14px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 500;
  color: var(--gray-600); font-size: .95rem;
  transition: background var(--dur), color var(--dur);
}
.nav-drawer a:hover { background: var(--gray-50); color: var(--blue-800); }

@media (max-width: 920px) {
  .nav-links-wrap, .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
.nav-logo img {
    height: 30px;    
}
.nav-bar {
  height: 60px;
}

}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 500px;
  overflow: hidden;
  background: var(--blue-900);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(21,48,128,.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200,16,46,.12) 0%, transparent 60%),
    linear-gradient(145deg, #040D21 0%, #071233 40%, #0B1D52 100%);
    opacity: 0.6;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 70%);
}
.hero-glow {
  position: absolute; top: -100px; right: -100px; z-index: 1;
  width: 600px; height:100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,19,47,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 0px; left: 30%; z-index: 1;
  width: 400px; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,61,155,.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Slider track — FIXED: needs width:100% so flex children don't wrap */
.hero-slider-track {
  position: relative; z-index: 2;
  display: flex;
  width: 100%; height: 100%;
  transition: transform .75s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%; width: 100%; height: 100%;
  display: flex; align-items: center;
  padding-top: 72px;
  flex-shrink: 0;
}
.hero-content { width: 100%; }
.hero-content .eyebrow, .hero-tag { margin-bottom: 18px; color: rgba(255,255,255,.7); }
.hero-content .eyebrow::before, .hero-tag::before { background: var(--red-400); }
.hero-content h1 {
  color: var(--white); margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero-content p {
  color: rgba(255,255,255,.72); font-size: 1.05rem;
  margin-bottom: 32px; max-width: 540px;
}



/* Slider controls */
.hero-ui {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: 20px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  padding: 0;
  transition: all var(--dur) var(--ease);
}
.hero-dots button.active { width: 30px; background: var(--red-500); }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button {
  width: 44px; height: 44px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.hero-arrows button:hover {
  background: var(--red-500); border-color: var(--red-500); transform: scale(1.08);
}

@media (max-width:768px){
  .hero{
        height: 450px;
        min-height: 300px;
  }

  .hero-content p{
        line-height:1.3;
  }
}
/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar { background: var(--blue-800); }
.trust-bar-inner {
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--dur);
  min-width: 0;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.04); }
.trust-icon-wrap {
  width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0;
  background: rgba(232,19,47,.15);
  display: flex; align-items: center; justify-content: center;
}
.trust-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); line-height: 1.4; }
.trust-label strong { display: block; color: var(--white); font-weight: 700; font-size: .86rem; margin-bottom: 2px; }
@media (max-width: 900px) { .trust-bar-inner { flex-wrap: wrap; } .trust-item { min-width: 50%; } }
@media (max-width: 768px){
  .trust-item{
    border:0;
  }
  .trust-bar-inner{
        border:0;
  }
 }
@media (max-width: 480px) { .trust-item { min-width: 100%; } }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .about-layout { grid-template-columns: 1fr; gap: 48px; } }

/* FIXED: overflow visible so floated elements show outside box */
.about-visual { position: relative; overflow: visible; margin-bottom: 28px; }
.about-img-main {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--shadow-xl);
  display: block;
}
.about-img-float {
  position: absolute; bottom: -28px; left: -24px;
  width: 190px; height: 148px; object-fit: cover;
  border-radius: var(--r-lg); border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute; top: 24px; right: -20px;
  background: var(--blue-800); color: var(--white);
  border-radius: var(--r-lg); padding: 20px 24px;
  text-align: center; min-width: 110px;
  box-shadow: var(--shadow-lg);
}
.about-badge b { display: block; font-size: 2rem; font-family: var(--font-display); color: var(--red-400); font-weight: 800; line-height: 1; }
.about-badge small { font-size: .74rem; opacity: .75; font-weight: 500; margin-top: 4px; display: block; }

.about-copy h2 { color: var(--text); margin-bottom: 14px; }
.about-copy > p { margin-bottom: 20px; }

.about-checks { display: grid; gap: 12px; margin-bottom: 32px; padding: 0; }
.about-check {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: .95rem; color: var(--text);
}
.check-dot {
  width: 24px; height: 24px; border-radius: var(--r-full); flex-shrink: 0;
  background: var(--red-50); border: 1.5px solid var(--red-100);
  display: flex; align-items: center; justify-content: center;
}

.metrics-row {
  display: flex; gap: 0; margin-top: 32px;
  background: var(--gray-50); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.metric { flex: 1; text-align: center; padding: 20px 12px; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric b { display: block; font-size: 1.7rem; font-family: var(--font-display); font-weight: 800; color: var(--blue-800); line-height: 1; }
.metric span { font-size: .76rem; color: var(--muted); font-weight: 500; margin-top: 4px; display: block; }
@media (max-width: 768px) {
  .about-badge{
        right: 5px;
  }
}
/* ════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════ */
.sec-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 60px; align-items: end; margin-bottom: 56px;
}
.sec-head p { margin: 0; font-size: 1rem; }
.sec-head h2 { margin-bottom: 0; }
@media (max-width: 768px) { .sec-head { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1060px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .products-grid { grid-template-columns: 1fr; } }

/* FIXED: override for 2-col add-ons grid */
.products-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}
@media (max-width: 640px) { .products-grid.grid-2 { grid-template-columns: 1fr; } }

.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  display: flex; flex-direction: column;
  position: relative;
}
.pcard:hover { transform: translateY(-7px); box-shadow: var(--shadow-xl); border-color: transparent; }

.pcard-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative;
}
.pcard-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(4,13,33,.45) 100%);
}
.pcard-pill {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 13px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pcard-pill.ins  { background: var(--blue-800); color: var(--white); }
.pcard-pill.addon { background: var(--red-500); color: var(--white); }

.pcard-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pcard-body h4 { font-size: 1rem; color: var(--text); margin-bottom: 9px; line-height: 1.4; }
.pcard-body p  { font-size: .88rem; flex: 1; margin-bottom: 18px; }

.pcard-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.ptag {
  font-size: .72rem; font-weight: 600; padding: 4px 11px; border-radius: var(--r-full);
  background: var(--gray-100); color: var(--blue-600);
}

.pcard-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .87rem; font-weight: 700; color: var(--blue-700);
  margin-top: auto;
  transition: color var(--dur), gap var(--dur);
}
.pcard-link:hover { color: var(--red-500); gap: 10px; }

/* Featured card top accent */
.pcard.featured { border-color: var(--blue-400); }
.pcard.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500));
  z-index: 3;
}

/* ════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-800) 50%, #1E3A8A 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 44px 44px;
}
.stats-section::after {
  content: ''; position: absolute; top: 50%; right: -8%;
  transform: translateY(-50%); z-index: 0;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,19,47,.06) 0%, transparent 70%);
}
.stats-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; } }
@media (max-width: 400px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-block { position: relative; }
.stat-block::after {
  content: ''; position: absolute; right: -20px; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.08);
}
.stat-block:last-child::after { display: none; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.2rem);
  font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 8px; letter-spacing: -0.03em;
}
.stat-num .accent { color: var(--red-400); }
.stat-label { font-size: .83rem; color: rgba(255,255,255,.52); font-weight: 500; }

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.feat-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-100);
}
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--r-md); flex-shrink: 0;
  padding: 10px;
  background: var(--blue-800); display: flex; align-items: center; justify-content: center;
}
.feat-text h4 { color: var(--text); margin-bottom: 7px; font-size: 1rem; }
.feat-text p  { font-size: .88rem; margin: 0; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }

.acc-item {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 10px;
  transition: box-shadow var(--dur);
}
.acc-item:hover { box-shadow: var(--shadow-sm); }

.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: var(--white);
  border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: .93rem; color: var(--text);
  gap: 14px; transition: background var(--dur);
}
.acc-btn:hover { background: var(--gray-50); }
.acc-btn.open { background: var(--blue-800); color: var(--white); }

.acc-icon {
  width: 28px; height: 28px; border-radius: var(--r-full);
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; font-weight: 300; color: var(--blue-700);
  line-height: 1;
  transition: background var(--dur), transform var(--dur), color var(--dur);
}
.acc-btn.open .acc-icon {
  background: rgba(255,255,255,.15); color: var(--white); transform: rotate(45deg);
}

.acc-panel { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease-out); }
.acc-panel.open { max-height: 280px; }
.acc-panel-inner {
  padding: 16px 22px 20px; background: var(--gray-50);
  font-size: .9rem; color: var(--muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-cta {
  background: var(--blue-900); border-radius: var(--r-xl);
  padding: 40px 32px; color: var(--white);
}
.faq-cta .eyebrow { color: rgba(255,255,255,.55); }
.faq-cta .eyebrow::before { background: var(--red-400); }
.faq-cta h3 { color: var(--white); margin: 0 0 10px; }
.faq-cta p  { color: rgba(255,255,255,.62); margin-bottom: 24px; }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.mini-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 16px; text-align: center;
}
.mini-card b { display: block; font-size: 1.5rem; font-family: var(--font-display); color: var(--red-400); line-height: 1; font-weight: 800; }
.mini-card span { font-size: .74rem; color: rgba(255,255,255,.5); font-weight: 500; margin-top: 3px; display: block; }

/* ════════════════════════════════════════
   CONTACT SECTION (homepage)
════════════════════════════════════════ */
.contact-section { background: var(--gray-50); padding: 96px 0; border-top: 1px solid var(--border); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--blue-900); border-radius: var(--r-xl);
  padding: 40px 36px; color: var(--white);
}
.contact-info-card h3, .contact-info-card h2 { color: var(--white); margin: 12px 0 10px; font-size: clamp(1.4rem, 2.5vw, 2rem);}
.contact-info-card > p { color: rgba(255,255,255,.62); margin-bottom: 28px; }

.cinfo-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.cinfo-item:last-of-type { border-bottom: none; }
.cinfo-icon {
  width: 42px; height: 42px; border-radius: var(--r-md); flex-shrink: 0;
  background: rgba(232,19,47,.15);
  display: flex; align-items: center; justify-content: center;
}
.cinfo-text small { display: block; font-size: .7rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 2px; }
.cinfo-text b { color: rgba(255,255,255,.9); font-weight: 600; font-size: .92rem; }
.cinfo-text a { color: rgba(255,255,255,.85); font-weight: 600; font-size: .92rem; transition: color var(--dur); }
.cinfo-text a:hover { color: var(--red-400); }

/* Contact form card */
.contact-form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3, .contact-form-card h2 { color: var(--text); margin-bottom: 6px; font-size: clamp(1.4rem, 2.5vw, 2rem);}
.contact-form-card > p { margin-bottom: 24px; font-size: .9rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: .78rem; font-weight: 700; color: var(--text); letter-spacing: .03em; text-transform: uppercase; }

.finput {
  padding: 12px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  outline: none; width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
  -webkit-appearance: none;
}
.finput:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(26,61,155,.09);
}
select.finput { cursor: pointer; }
textarea.finput { resize: vertical; min-height: 100px; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--blue-900);
  padding: 70px 0;
  position: relative; overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;

    background: linear-gradient(
    to right,
    #1d2457 0%,
    #1d2457 20%,
    #1d2457 45%,
    rgba(29,36,87,0.2) 70%,
    rgba(29,36,87,0.1) 100%
);

        width:100%;   
}

  
.page-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero-inner h1 { color: var(--white); margin-bottom: 14px; }
.page-hero-inner p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 18px; padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--red-400); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: rgba(255,255,255,.8); font-weight: 500; }

/* ════════════════════════════════════════
   ABOUT PAGE — Process steps
════════════════════════════════════════ */
.process-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .process-row { grid-template-columns: 1fr; } }

.proc-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px 28px; text-align: center;
  transition: box-shadow var(--dur), transform var(--dur);
  position: relative; margin-top: 20px;
}
.proc-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
/* FIXED: ::before pseudo needs display:flex to center content */
.proc-step::before {
  content: attr(data-step);
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: var(--red-500); color: var(--white);
  font-size: .82rem; font-weight: 800; font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.proc-step h4 { margin: 14px 0 10px; color: var(--text); }
.proc-step p { font-size: .88rem; margin: 0; }

/* ════════════════════════════════════════
   PRODUCT DETAIL PAGE
════════════════════════════════════════ */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 960px) { .pd-layout { grid-template-columns: 1fr; gap: 36px; } }

.pd-meta {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px;
}
.pd-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  gap: 12px;
}
.pd-meta-row:last-child { border-bottom: none; }
.pd-meta-row span:first-child { font-weight: 600; font-size: .88rem; color: var(--text); flex-shrink: 0; }
.pd-meta-row span:last-child  { font-size: .86rem; color: var(--muted); font-weight: 500; text-align: right; }

.pd-img-wrap img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--shadow-xl);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: var(--blue-950); padding: 76px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 920px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand img { height: 40px; max-width: 180px;object-fit: cover; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.42); line-height: 1.7; max-width: 270px; margin-top: 12px; }
.footer-brand-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.9); }
.footer-brand-text .red { color: var(--red-400); }

.footer-col h5 {
  color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; font-family: var(--font-body);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: .86rem; color: rgba(255,255,255,.52);
  padding: 4px 0; transition: color var(--dur);
}
.footer-col a:hover { color: var(--red-400); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: .8rem; color: rgba(255,255,255,.28);
}
@media (max-width: 500px) { .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero slide-in animation — applied per slide by JS */
.anim-hero > * { opacity: 0; }
.anim-hero.go h1    { animation: fadeUp .8s var(--ease-out) .05s both; }
.anim-hero.go p     { animation: fadeUp .8s var(--ease-out) .2s both; }
.anim-hero.go .hero-tags  { animation: fadeUp .8s var(--ease-out) .15s both; }
.anim-hero.go .btn-row    { animation: fadeUp .8s var(--ease-out) .32s both; }
.anim-hero.go .eyebrow    { animation: fadeUp .8s var(--ease-out) 0s both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: .06s !important; }
.stagger-2 { transition-delay: .14s !important; }
.stagger-3 { transition-delay: .22s !important; }
.stagger-4 { transition-delay: .30s !important; }
.stagger-5 { transition-delay: .38s !important; }
.stagger-6 { transition-delay: .46s !important; }

/* ════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--blue-500); border-radius: 6px; }

/* ════════════════════════════════════════
   CREDIT LIFE INSURANCE PAGE
════════════════════════════════════════ */

/* Hero badge pill */
.cl-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,19,47,.15); border: 1px solid rgba(232,19,47,.25);
  color: var(--red-400); border-radius: var(--r-full);
  padding: 6px 16px; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px;
}
.cl-hero-badge span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red-400);
}

/* How it works — 4-step timeline */
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.how-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5%); right: calc(12.5%); height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--red-200));
  z-index: 0;
}
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
}
@media (max-width: 480px) { .how-grid { grid-template-columns: 1fr; } }

.how-step {
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}
.how-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--blue-800); line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.how-step:hover .how-num {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(232,19,47,.1);
}
.how-step h4 { font-size: .95rem; color: var(--text); margin-bottom: 8px; }
.how-step p  { font-size: .84rem; margin: 0; }

/* Loan types grid */
.loan-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media (max-width: 900px) { .loan-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .loan-grid { grid-template-columns: 1fr; } }

.loan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px 26px;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
  position: relative; overflow: hidden;
}
.loan-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.loan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.loan-card:hover::after { transform: scaleX(1); }

.loan-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.loan-card h4 { font-size: .98rem; color: var(--text); margin-bottom: 8px; }
.loan-card p  { font-size: .86rem; margin: 0; }

/* Coverage comparison table */
.coverage-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.coverage-table thead tr { background: var(--blue-800); }
.coverage-table thead th {
  padding: 16px 22px; color: var(--white); font-weight: 700;
  font-size: .88rem; text-align: left; font-family: var(--font-body);
}
.coverage-table tbody tr { background: var(--white); }
.coverage-table tbody tr:nth-child(even) { background: var(--gray-50); }
.coverage-table tbody tr:hover { background: var(--blue-50); }
.coverage-table td {
  padding: 14px 22px; font-size: .88rem; color: var(--text);
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.coverage-table tbody tr:last-child td { border-bottom: none; }
.coverage-table .badge-yes {
  display: inline-flex; align-items: center; gap: 5px;
  background: #dcfce7; color: #166534; font-size: .76rem;
  font-weight: 700; padding: 3px 10px; border-radius: var(--r-full);
}
.coverage-table .badge-opt {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fef9c3; color: #92400e; font-size: .76rem;
  font-weight: 700; padding: 3px 10px; border-radius: var(--r-full);
}

/* Partner advantage strip */
.partner-strip {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur), transform var(--dur);
}
.partner-strip:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
@media (max-width: 640px) { .partner-strip { grid-template-columns: 1fr; } }
.partner-strip h4 { color: var(--text); margin-bottom: 6px; font-size: 1.1rem; }
.partner-strip p  { margin: 0; font-size: .9rem; }

/* ════════════════════════════════════════════════════════════
   DROPDOWN MEGA MENU — Add to existing style.css
   ════════════════════════════════════════════════════════════ */

/* Products nav item — relative so dropdown positions correctly */
.nav-has-dropdown {
  position: relative;
}

/* Trigger button — matches existing nav link style */
.nav-dropdown-trigger.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  background: none;
  border: none;
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
  text-decoration: none;
}
.main .nav-dropdown-trigger{
  color: var(--blue-800);
}
.nav-dropdown-trigger:hover,
.nav-has-dropdown.open .nav-dropdown-trigger {
    background: var(--gray-100);
  color: var(--blue-800);
}
.nav-root.scrolled .nav-dropdown-trigger { color: var(--gray-600); }
.nav-root.scrolled .nav-dropdown-trigger:hover,
.nav-root.scrolled .nav-has-dropdown.open .nav-dropdown-trigger {
  background: var(--gray-100);
  color: var(--blue-800);
}
.nav-root.page-nav .nav-dropdown-trigger { color: var(--gray-600); }
.nav-root.page-nav .nav-dropdown-trigger:hover,
.nav-root.page-nav .nav-has-dropdown.open .nav-dropdown-trigger {
  background: var(--gray-100);
  color: var(--blue-800);
}

/* Chevron arrow icon */
.nav-dropdown-trigger .dd-chevron {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease-out);
  flex-shrink: 0;
  opacity: .7;
}
.nav-has-dropdown.open .dd-chevron { transform: rotate(180deg); }

/* ── Mega dropdown panel ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  z-index: 2000;
  opacity: 0;
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out);
}
.nav-has-dropdown.open .nav-dropdown {
  display: grid;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: ddFadeIn .22s var(--ease-out) both;
}
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Keep open while hovering dropdown too */
.nav-has-dropdown:focus-within .nav-dropdown { display: grid; opacity: 1; transform: translateX(-50%) translateY(0); }

/* Section heading inside dropdown */
.dd-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dd-section-label .dd-section-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dd-section-label.ins-label .dd-section-icon { background: var(--blue-50); }
.dd-section-label.addon-label .dd-section-icon { background: var(--red-50); }

/* Individual dropdown link item */
.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 10px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--dur), transform var(--dur);
  margin-bottom: 2px;
}
.dd-item:hover {
  background: var(--gray-50);
  transform: translateX(3px);
}
.dd-item:hover .dd-item-title { color: var(--red-500); }

.dd-item-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background var(--dur), border-color var(--dur);
}
.dd-item:hover .dd-item-icon {
  background: var(--blue-800);
  border-color: var(--blue-800);
}
.dd-item:hover .dd-item-icon svg { stroke: white !important; }

/* Addon items get red tint */
.dd-item.addon-item .dd-item-icon {
  background: var(--red-50);
  border-color: var(--red-100);
}
.dd-item.addon-item:hover .dd-item-icon {
  background: var(--red-500);
  border-color: var(--red-500);
}

.dd-item-text { min-width: 0; }
.dd-item-title {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color var(--dur);
}
.dd-item-desc {
  display: block;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Divider between the two dropdown columns — mobile stacking */
.dd-col { display: flex; flex-direction: column; }
.dd-col + .dd-col {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}

/* ── Mobile drawer — Products accordion ── */
.drawer-dd-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 500; color: var(--gray-600); font-size: .95rem;
  background: none; border: none; cursor: pointer;
  transition: background var(--dur), color var(--dur);
}
.drawer-dd-toggle:hover { background: var(--gray-50); color: var(--blue-800); }
.drawer-dd-toggle .dd-chevron { transition: transform .25s var(--ease-out); }
.drawer-dd-toggle.open { color: var(--blue-800); background: var(--blue-50); }
.drawer-dd-toggle.open .dd-chevron { transform: rotate(180deg); }

.drawer-dd-panel {
  max-height: 0; overflow: scroll;
  transition: max-height .35s var(--ease-out);
}
.drawer-dd-panel.open { min-height: 200px; }

.drawer-dd-section-label {
  font-size: .66rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red-500);
  padding: 10px 14px 6px 10px;
}
.drawer-dd-link {
  display: block; padding: 9px 14px 9px 28px;
  font-size: .9rem; font-weight: 500; color: var(--gray-600);
  transition: color var(--dur), background var(--dur);
  text-decoration: none;
}
.drawer-dd-link:hover { color: var(--blue-800); background: var(--gray-50); }

/* ════════════════════════════════════════════════════════════
   FOOTER BOTTOM LINKS — Add to existing style.css
   ════════════════════════════════════════════════════════════ */
.footer-bottom-links { display: flex; align-items: center; gap: 20px; }
.footer-bottom-links a {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  transition: color var(--dur);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--red-400); }

/* ════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy + Terms of Use)
   ════════════════════════════════════════════════════════════ */

/* Page hero — reuses .page-hero but with slightly different inner */
.legal-hero { padding: 140px 0 56px; }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 3.8rem); }
.legal-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.5);
}
.legal-meta span { display: flex; align-items: center; gap: 6px; }

/* Layout: sticky TOC sidebar + article body */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; } }

/* Table of Contents sidebar */
.legal-toc {
  position: sticky; top: 90px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.legal-toc-title {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block; padding: 7px 10px;
  border-radius: var(--r-sm);
  font-size: .84rem; font-weight: 500; color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color var(--dur), background var(--dur), border-color var(--dur);
  line-height: 1.4;
}
.legal-toc a:hover { color: var(--blue-800); background: var(--white); border-left-color: var(--blue-400); }
.legal-toc a.active { color: var(--blue-800); background: var(--white); border-left-color: var(--red-500); font-weight: 700; }

/* Article body */
.legal-body { min-width: 0; }

.legal-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 96px;
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.legal-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  font-size: .8rem; font-weight: 800; color: var(--blue-700);
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.legal-section h2 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--text); margin-bottom: 16px;
  font-family: var(--font-display);
  letter-spacing: -.01em;
}
.legal-section h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin: 22px 0 10px;
  font-family: var(--font-body);
}

.legal-section p {
  font-size: .94rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul, .legal-section ol {
  padding-left: 0; margin: 12px 0 16px;
  display: grid; gap: 8px;
}
.legal-section ul li, .legal-section ol li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: var(--muted); line-height: 1.7;
}
.legal-section ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-500); flex-shrink: 0; margin-top: 8px;
}
.legal-section ol { counter-reset: legal-ol; }
.legal-section ol li { counter-increment: legal-ol; }
.legal-section ol li::before {
  content: counter(legal-ol);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-700); font-size: .76rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* Highlight box */
.legal-highlight {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  border-left: 3px solid var(--blue-500);
  border-radius: var(--r-md); padding: 16px 20px;
  margin: 16px 0;
}
.legal-highlight p { font-size: .88rem; margin: 0; color: var(--blue-700); }

/* Warning box */
.legal-warning {
  background: var(--red-50); border: 1px solid var(--red-100);
  border-left: 3px solid var(--red-500);
  border-radius: var(--r-md); padding: 16px 20px;
  margin: 16px 0;
}
.legal-warning p { font-size: .88rem; margin: 0; color: var(--red-600); }

/* Contact box */
.legal-contact-box {
  background: var(--blue-900); border-radius: var(--r-xl);
  padding: 32px 36px; margin-top: 48px;
}
.legal-contact-box h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.legal-contact-box p  { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 20px; }
.legal-contact-box a  { color: var(--red-400); transition: color var(--dur); }
.legal-contact-box a:hover { color: var(--red-300); }

.legal-contact-items { display: grid; gap: 12px; }
.legal-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
}
.legal-contact-item svg { flex-shrink: 0; }
.legal-contact-item span { font-size: .88rem; color: rgba(255,255,255,.8); font-weight: 500; }
.legal-contact-item a { color: rgba(255,255,255,.8); font-weight: 600; font-size: .88rem; }
.legal-contact-item a:hover { color: var(--red-400); }

/* Last updated badge */
.legal-updated {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gray-100); border-radius: var(--r-full);
  padding: 5px 14px; font-size: .76rem; font-weight: 600; color: var(--muted);
  margin-bottom: 32px;
}

/* ── FAQ Page specific styles ── */
    .acc-panel.open { max-height: 600px; }

    /* ── FAQ Page specific styles ── */
    .faq-page-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 56px;
      align-items: start;
    }
    @media (max-width: 960px) { .faq-page-layout { grid-template-columns: 1fr; } }

    /* Sticky sidebar navigation */
    .faq-sidebar {
      position: sticky;
      top: 90px;
    }
    .faq-sidebar-title {
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }
    .faq-sidebar-group { margin-bottom: 22px; }
    .faq-sidebar-group-label {
      font-size: .66rem;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
      color: var(--blue-400);
      margin-bottom: 6px;
      padding-left: 10px;
    }
    .faq-sidebar a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: var(--r-sm);
      font-size: .84rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      border-left: 2px solid transparent;
      transition: all var(--dur);
      line-height: 1.35;
    }
    .faq-sidebar a:hover { color: var(--blue-800); background: var(--gray-50); border-left-color: var(--blue-200); }
    .faq-sidebar a.active { color: var(--blue-800); background: var(--blue-50); border-left-color: var(--red-500); font-weight: 700; }
    .faq-sidebar a .sidebar-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .faq-sidebar a .sidebar-dot.ins   { background: var(--blue-400); }
    .faq-sidebar a .sidebar-dot.addon { background: var(--red-400); }
    .faq-sidebar a .sidebar-dot.gen   { background: var(--gray-400); }

    /* FAQ product section */
    .faq-product-section {
      margin-bottom: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid var(--border);
      scroll-margin-top: 92px;
    }
    .faq-product-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    /* Product section header */
    .faq-prod-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
      padding: 20px 24px;
      border-radius: var(--r-lg);
      border: 1px solid var(--border);
      background: var(--white);
    }
    .faq-prod-icon {
      width: 48px; height: 48px;
      border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .faq-prod-icon.ins   { background: var(--blue-800); }
    .faq-prod-icon.addon { background: var(--red-500); }
    .faq-prod-icon.gen   { background: var(--gray-900); }

    .faq-prod-meta { min-width: 0; }
    .faq-prod-meta .pill {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: var(--r-full);
      margin-bottom: 4px;
    }
    .faq-prod-meta .pill.ins   { background: var(--blue-50);  color: var(--blue-700); border: 1px solid var(--blue-100); }
    .faq-prod-meta .pill.addon { background: var(--red-50);   color: var(--red-600);  border: 1px solid var(--red-100); }
    .faq-prod-meta .pill.gen   { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }
    .faq-prod-meta h3 { margin: 0; font-size: 1.15rem; color: var(--text); font-family: var(--font-display); }

    .faq-prod-link {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--blue-600);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color var(--dur), gap var(--dur);
    }
    .faq-prod-link:hover { color: var(--red-500); gap: 9px; }
    @media (max-width: 600px) { .faq-prod-link { display: none; } }

    /* Count badge */
    .faq-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px; height: 22px;
      border-radius: var(--r-full);
      background: var(--gray-100);
      font-size: .72rem;
      font-weight: 800;
      color: var(--muted);
      margin-left: auto;
      flex-shrink: 0;
    }
    .faq-prod-link + .faq-count { margin-left: 8px; }

    /* Accordion tweaks for FAQ page */
    .acc-item { margin-bottom: 10px; }
    .acc-btn span:first-child { flex: 1; text-align: left; }

    /* Search box */
    .faq-search-wrap {
      position: relative;
      margin-bottom: 48px;
    }
    .faq-search {
      width: 100%;
      padding: 15px 20px 15px 50px;
      border-radius: var(--r-lg);
      border: 1.5px solid var(--border);
      background: var(--white);
      font-family: var(--font-body);
      font-size: .95rem;
      color: var(--text);
      outline: none;
      box-shadow: var(--shadow-xs);
      transition: border-color var(--dur), box-shadow var(--dur);
    }
    .faq-search:focus {
      border-color: var(--blue-500);
      box-shadow: 0 0 0 3px rgba(26,61,155,.09);
    }
    .faq-search::placeholder { color: var(--gray-400); }
    .faq-search-icon {
      position: absolute;
      left: 18px; top: 50%;
      transform: translateY(-50%);
      color: var(--gray-400);
      pointer-events: none;
    }
    .faq-no-results {
      display: none;
      text-align: center;
      padding: 48px 24px;
      color: var(--muted);
    }
    .faq-no-results svg { margin: 0 auto 16px; opacity: .35; }

    /* Jump to top */
    .faq-jump-top {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--muted);
      text-decoration: none;
      margin-top: 32px;
      transition: color var(--dur);
    }
    .faq-jump-top:hover { color: var(--blue-700); }

    /* 404 page */
	
    .error-page {
      min-height: calc(100vh - 72px);
      background: var(--blue-900);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Background decoration */
    .error-page::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(21,48,128,.55) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 5% 90%, rgba(200,16,46,.1) 0%, transparent 55%);
    }
    .error-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 60px 60px;
      -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
      mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 80%);
    }
    .error-glow {
      position: absolute;
      top: -60px; right: -80px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,19,47,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Content */
    .error-inner {
      position: relative; z-index: 2;
      text-align: center;
      max-width: 580px;
    }

    /* Big 404 number */
    .error-code {
      font-family: var(--font-display);
      font-size: clamp(7rem, 18vw, 11rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255,255,255,.12);
      text-stroke: 2px rgba(255,255,255,.12);
      position: relative;
      margin-bottom: -8px;
      user-select: none;
    }
    .error-code-fill {
      position: absolute; inset: 0;
      font-family: var(--font-display);
      font-size: clamp(7rem, 18vw, 11rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(232,19,47,.18) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    /* Shield icon */
    .error-icon {
      width: 64px; height: 64px;
      border-radius: var(--r-xl);
      background: rgba(232,19,47,.15);
      border: 1px solid rgba(232,19,47,.25);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
    }

    .error-eyebrow {
      font-size: .72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--red-400);
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-bottom: 16px;
    }
    .error-eyebrow::before {
      content: ''; display: block;
      width: 20px; height: 2px; border-radius: 2px; background: var(--red-400);
    }
    .error-eyebrow::after {
      content: ''; display: block;
      width: 20px; height: 2px; border-radius: 2px; background: var(--red-400);
    }

    .error-inner h1 {
      color: var(--white);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      margin-bottom: 14px;
    }
    .error-inner p {
      color: rgba(255,255,255,.62);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 36px;
    }

    /* Quick links grid */
    .error-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 48px;
      text-align: left;
    }
    @media (max-width: 480px) { .error-links { grid-template-columns: 1fr; } }

    .error-link-card {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--r-md);
      text-decoration: none;
      color: rgba(255,255,255,.8);
      font-size: .88rem; font-weight: 600;
      transition: background .25s, border-color .25s, transform .25s, color .25s;
    }
    .error-link-card:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.2);
      transform: translateY(-2px);
      color: var(--white);
    }
    .error-link-icon {
      width: 34px; height: 34px; border-radius: var(--r-sm); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .error-link-icon.blue { background: rgba(26,61,155,.35); }
    .error-link-icon.red  { background: rgba(232,19,47,.2); }

    .error-link-text small {
      display: block;
      font-size: .74rem;
      font-weight: 400;
      color: rgba(255,255,255,.4);
      margin-top: 1px;
    }

    /* Divider with OR text */
    .error-divider {
      display: flex; align-items: center; gap: 14px;
      margin: 32px 0 28px;
      color: rgba(255,255,255,.25);
      font-size: .78rem; font-weight: 600; letter-spacing: .08em;
    }
    .error-divider::before, .error-divider::after {
      content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
    }

    /* Countdown redirect (optional JS enhancement) */
    .error-redirect-note {
      margin-top: 36px;
      font-size: .78rem;
      color: rgba(255,255,255,.3);
    }
    .error-redirect-note a { color: rgba(255,255,255,.5); text-decoration: underline; }
    .error-redirect-note a:hover { color: var(--red-400); }
    #countdown { color: var(--red-400); font-weight: 700; }
/* ════════════════════════════════════════
   OWL CAROUSEL — Products Section
════════════════════════════════════════ */

/* Section sub-labels */
.owl-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.owl-label-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}
.owl-label-ins  { color: var(--blue-500); }
.owl-label-ins  .owl-label-line { background: var(--blue-500); }
.owl-label-addon { color: var(--red-500); }
.owl-label-addon .owl-label-line { background: var(--red-500); }

/* Track container */
.owl-products {
  position: relative;
  padding-bottom: 56px; /* room for dots */
}

/* Make every item full card height */
.owl-products .owl-item {
  display: flex;
}
.owl-products .owl-item > .pcard {
  width: 100%;
  height: 100%;
  margin: 4px 2px 4px 2px; /* allow card shadow breathing room */
}
.owl-products .owl-item > .pcard .pcard-body{
  min-height: 200px;
}
.owl-products .owl-item > .pcard:hover {
box-shadow:none;
border: 1px solid #bdbec1;
}

/* ── Dots ── */
.owl-products .owl-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.owl-products .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--gray-200);
  border: none;
  display: block;
  transition: width .3s var(--ease), background .3s;
}
.owl-ins-carousel .owl-dot.active span {
  width: 28px;
  background: var(--blue-500);
}
.owl-addon-carousel .owl-dot.active span {
  width: 28px;
  background: var(--red-500);
}

/* ── Nav arrows ── */
.owl-products .owl-nav {
  position: absolute;
   /* top: -56px;      float above the carousel, aligned right */
  right: 0;
  display: flex;
  gap: 8px;
  margin: 0;
  display:none;
}
.owl-products .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full) !important;
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--gray-600) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), border-color var(--dur), color var(--dur), transform var(--dur) var(--ease), box-shadow var(--dur);
  box-shadow: var(--shadow-xs);
}
.owl-ins-carousel .owl-nav button:hover {
  background: var(--blue-800) !important;
  border-color: var(--blue-800) !important;
  color: var(--white) !important;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(11,29,82,.22);
}
.owl-addon-carousel .owl-nav button:hover {
  background: var(--red-500) !important;
  border-color: var(--red-500) !important;
  color: var(--white) !important;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(232,19,47,.25);
}
.owl-products .owl-nav button.disabled {
  opacity: .38;
  pointer-events: none;
}

/* Smooth fade-in on active items */
.owl-products .owl-item {
  opacity: .55;
  transition: opacity .45s ease, transform .45s ease;
}
.owl-products .owl-item.active {
  opacity: 1;
}

/* Card hover still works inside carousel */
.owl-products .pcard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* Prevent cards jumping when dragging */
.owl-products.owl-drag .owl-item {
  user-select: none;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .owl-products .owl-nav {
    top: -50px;
    display: none;
  }
  .owl-products .owl-nav button {
    width: 34px;
    height: 34px;
  }
}

/* ── Conatct Number ── */
.phone-input {
  display: flex;
  gap: 10px;
}

.finput {
  flex: 1;
}
/**************how it work***********/
.how-it-work{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:8px;
}
/***************for responsive**************/
@media (max-width:991px){
  .how-it-work{
  grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:768px){
  .faq-sidebar{
  position: initial;
}
.how-it-work{
  grid-template-columns:repeat(1,1fr);
  gap:24px;
  margin-top:8px;
}
}
/********************slider*****************/
 /* ─── SLIDE WRAPPER ─────────────────────────────────────────── */
    .hero-slider .item {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 560px;
      overflow: hidden;
    }

    /* ─── IMAGES ────────────────────────────────────────────────── */
    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: none;
      transform: scale(1.08);
      transition: transform 8s ease;
    }
    .desktop-img { display: block; }
    .mobile-img{
      display: none !important;
    }

    @media (max-width: 767px) {
      .desktop-img { display: none; }
      .mobile-img  { display: block !important }
          .hero-img {
            height: 450px;
          }
    }

    /* zoom-in when slide is active */
    .owl-item.active .hero-img { transform: scale(1); }

    /* ─── OVERLAY ───────────────────────────────────────────────── */
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* deep left-to-right gradient so text pops; subtle on right */
      background: linear-gradient(
        100deg,
        rgba(10,14,26,.82)  0%,
        rgba(10,14,26,.55) 45%,
        rgba(10,14,26,.15) 100%
      );
      z-index: 1;
    }

    /* gold vignette line on left edge */
    .hero-overlay::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      opacity: .7;
    }

    /* ─── CONTENT WRAPPER ───────────────────────────────────────── */
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;   /* vertical center */
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;       /* left & right margin */
    }

    /* ─── TEXT BLOCK ────────────────────────────────────────────── */
    .hero-text {
      max-width: 560px;      /* text stays on left half */
      text-align: left;
    }

    /* animated entry helpers */
    .hero-text .hero-tag,
    .hero-text h1,
    .hero-text p,
    .hero-text .hero-btns {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .owl-item.active .hero-tag  { opacity:1; transform:none; transition-delay:.1s; }
    .owl-item.active h1         { opacity:1; transform:none; transition-delay:.3s; }
    .owl-item.active p          { opacity:1; transform:none; transition-delay:.5s; }
    .owl-item.active .hero-btns { opacity:1; transform:none; transition-delay:.65s; }



    /* headline */
    .hero-text h1, .hero-text .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 900;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 18px;
      /* subtle gold underline on key word */
      position: relative;
    }

    .hero-text h1 em, .hero-text .hero-title em {
      font-style: normal;
      color: var(--red-500);
    }

    /* body copy */
    .hero-text p {
      font-size: clamp(.88rem, 1.4vw, 1.05rem);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,.72);
      margin-bottom: 36px;
      max-width: 440px;
    }

    /* ─── DECORATIVE SLIDE NUMBER ───────────────────────────────── */
    .slide-number {
      position: absolute;
      bottom: 70px;
      right: 60px;
      z-index: 3;
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: rgba(255,255,255,.5);
      font-family: 'Playfair Display', serif;
      font-size: .75rem;
      letter-spacing: .1em;
    }
    .slide-number strong {
      font-size: 2.4rem;
      font-weight: 700;
      color: rgba(255,255,255,.5);
      line-height: 1;
    }

    /* ─── OWL DOTS ──────────────────────────────────────────────── */
    .owl-dots {
      position: absolute;
      bottom: 36px;
      left: 60px;
      z-index: 10;
      display: flex;
      gap: 10px;
    }

    .owl-dot span {
      display: block;
      width: 28px;
      height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,.3);
      transition: background .4s ease, width .4s ease;
    }
    .owl-dot.active span {
      background: var(--red-500);
      width: 48px;
    }

    /* ─── OWL NAV ───────────────────────────────────────────────── */
    .owl-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
      padding: 0 20px;
    }

    .owl-prev, .owl-next {
      pointer-events: all;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.08) !important;    
      color: var(--white) !important;
      font-size: 1.1rem !important;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s ease;
    }
    .owl-prev:hover, .owl-next:hover {
        background: rgba(255,255,255,.3) !important;  ;
      border-color: var(--red-400) !important;
      color: var(--red-500) !important;
    }

    /* ─── PROGRESS BAR ──────────────────────────────────────────── */
    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--red-400);
      width: 0%;
      z-index: 10;
      transition: width linear;
    }
.hero-cta{
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
    /* ─── RESPONSIVE ────────────────────────────────────────────── */
    @media (max-width: 991px) {
      .container { padding: 0 40px; }
      .owl-dots  { left: 40px; }
      .slide-number { right: 40px; }
    }

    @media (max-width: 768px) {
      .hero-slider .item { height: 100svh; min-height: 520px; }
      .container { padding: 0 24px; }
      .hero-text { max-width: 100%; }
      .hero-text h1, .hero-text .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
      .hero-text p  { font-size: .88rem; margin-bottom: 28px; }
      .hero-btns    { flex-direction: column; align-items: flex-start; }
      .hero-btn     { width: 100%; justify-content: center; padding: 14px 24px; }
      .owl-dots     { left: 24px; bottom: 28px; }
      .slide-number { right: 24px; bottom: 28px; }
      .owl-nav      { display: none; }
       .hero-content {      
        inset: auto;
          top: 100px;
       }
       .owl-dots{
        bottom: 15px;
       }
       .hero-slider .item{
        height:450px;
            min-height:350px;
       }
    
    }

    @media (max-width: 480px) {
      .container { padding: 0 18px; }
      .hero-tag  { font-size: .65rem; }
    }