/* ============================================================
   LOREM AI — Design System
   Palette: deep navy (trust) + antique gold (premium) + mint (AI/growth)
   Type: Poppins (display) / Inter (body)
   ============================================================ */

:root{
  /* Color tokens */
  --ink:        #10142B;
  --ink-soft:   #4A4F6A;
  --navy:       #3948EA;
  --navy-deep:  #1D25A8;
  --gold:       #C9A227;
  --gold-soft:  #E8D28A;
  --mint:       #2FBF9F;
  --canvas:     #F6F7FB;
  --white:      #FFFFFF;
  --line:       #E7E9F2;
  --line-soft:  #EFF1F7;
  --danger:     #D64545;
  --on-dark:    #FFFFFF;

  /* Elevation */
  --shadow-sm:  0 2px 10px rgba(16, 20, 43, 0.05);
  --shadow-md:  0 12px 30px rgba(16, 20, 43, 0.08);
  --shadow-lg:  0 24px 60px rgba(16, 20, 43, 0.14);
  --shadow-gold:0 12px 34px rgba(201, 162, 39, 0.25);

  /* Radius */
  --r-sm: 3px;
  --r-md: 3px;
  --r-lg: 3px;
  --r-xl: 3px;

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container: 1180px;
  --nav-h: 84px;

  color-scheme: light;
}

/* ---------- Dark theme ---------- */
html[data-theme="dark"]{
  --ink:        #EEF0FA;
  --ink-soft:   #A7ADC9;
  --white:      #141833;
  --canvas:     #0C0F24;
  --line:       #262C52;
  --line-soft:  #1E2344;
  color-scheme: dark;
}
html[data-theme="dark"] .site-header{
  background: rgba(20, 24, 51, 0.82);
}
html[data-theme="dark"] .btn-outline{
  border-color: rgba(255,255,255,0.2);
}
html[data-theme="dark"] .image-placeholder{
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(201,162,39,0.10)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px);
}
html[data-theme="dark"] .card:hover{
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
html[data-theme="dark"] .stat-num,
html[data-theme="dark"] .timeline-year{
  color: var(--gold-soft);
}


.brand-logo{ height: 50px; width: auto; }
.brand-logo-dark{ display: none; }
html[data-theme="dark"] .brand-logo-light{ display: none; }
html[data-theme="dark"] .brand-logo-dark{ display: inline-block; }

@media (max-width: 768px) {
  .brand-logo {
    height: 40px;
    width: auto;
  }
}


body, .card, .site-header, .field input, .field select, .field textarea, .image-placeholder{
  transition: background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 48px;
}

h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1{ font-size: clamp(2.4rem, 4.2vw, 3.6rem); font-weight: 600; letter-spacing: -0.02em; }
h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3{ font-size: 1.3rem; }
p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 20px; height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}

.section{ padding: 108px 0; }
.section-tight{ padding: 72px 0; }
.section-alt{ background: var(--canvas); }
.section-navy{ background: var(--navy-deep); color: var(--on-dark); }
.section-navy p{ color: rgba(255,255,255,0.68); }
.section-navy h2, .section-navy h3{ color: var(--on-dark); }

.section-head{
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--navy);
  color: var(--on-dark);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--navy-deep); }

.btn-gold{
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201,162,39,.35); }

.btn-outline{
  background: transparent;
  border-color: rgba(16,20,43,0.16);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--navy); background: var(--navy); color: var(--on-dark); transform: translateY(-3px); }

.btn-ghost-light{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--on-dark);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.btn-sm{ padding: 11px 22px; font-size: 0.86rem; }
.btn-block{ width: 100%; }

/* ---------- Navigation ---------- */
.site-header{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.scrolled{
  box-shadow: 0 6px 24px rgba(16,20,43,0.06);
  border-bottom-color: var(--line);
}
.nav-inner{
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .3s ease;
}
.site-header.scrolled .nav-inner{ height: 70px; }

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--ink);
}
.brand .dot{
  width: 11px; height: 11px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  display: inline-block;
  transform: rotate(15deg);
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a{
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after{
  content:"";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ width: 100%; }
.nav-links a.active{ color: var(--ink); }
.nav-links a.active::after{ width: 100%; }

.nav-actions{ display: flex; align-items: center; gap: 14px; }


.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(127, 127, 127, 0.1);
}

.theme-toggle svg {
  transition: opacity 0.2s ease, transform 0.25s ease;
}

/* Light mode: show moon */
.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

/* Dark mode: show sun */
.theme-toggle[aria-pressed="true"] .icon-moon {
  display: none;
}

.theme-toggle[aria-pressed="true"] .icon-sun {
  display: block;
}


.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span{
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Cards ---------- */
.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,162,39,0.35);
}

.glass-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(9,12,30,0.35);
}

.glass-card-light{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Image placeholder ---------- */
.image-placeholder{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(57,72,234,0.07), rgba(201,162,39,0.10)),
    repeating-linear-gradient(45deg, rgba(16,20,43,0.035) 0 12px, transparent 12px 24px);
  border: 1px dashed rgba(16,20,43,0.18);
  position: relative;
  overflow: hidden;
}
.image-placeholder::after{
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder.square{ aspect-ratio: 1/1; }
.image-placeholder.wide{ aspect-ratio: 16/9; }
.image-placeholder.tall{ aspect-ratio: 3/4; }

/* ---------- Grids & Utilities ---------- */
.grid{ display: grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.pill{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(47,191,159,0.12);
  color: #1E8E73;
}
.pill-gold{ background: rgba(201,162,39,0.14); color: #8A6B12; }

.divider{ height: 1px; background: var(--line); border: none; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view{ transition-delay: .08s; }
.reveal-delay-2.in-view{ transition-delay: .16s; }
.reveal-delay-3.in-view{ transition-delay: .24s; }
.reveal-delay-4.in-view{ transition-delay: .32s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: 84px 0 90px;
  overflow: hidden;
  background: var(--canvas);
}
.hero::before{
  content:"";
  position: absolute;
  top: -240px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(201,162,39,0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after{
  content:"";
  position: absolute;
  bottom: -260px; left: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(47,191,159,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1{ margin-bottom: 20px; }
.hero-lede{ font-size: 1.12rem; max-width: 480px; margin-bottom: 32px; }
.hero-cta{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust .stars{ color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.hero-trust .stars-label{ font-size: 0.82rem; color: var(--ink-soft); display:block; margin-top:2px; }

/* Hero visual panel */
.hero-visual{ position: relative; }
.hero-panel{
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-radius: var(--r-xl);
  padding: 34px;
  color: var(--on-dark);
  position: relative;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.hero-panel-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.hero-panel-top .label{ font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-panel-top .value{ font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-top: 4px; }
.hero-panel-chart{
  height: 150px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.hero-panel-chart svg{ width: 100%; height: 100%; }

.floating-chip{
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--r-md);
  animation: float 5s ease-in-out infinite;
}
.chip-1{ top: -22px; left: -30px; animation-delay: 0s; }
.chip-2{ bottom: 40px; right: -34px; animation-delay: 1.2s; }
.chip-3{ bottom: -26px; left: 40px; animation-delay: 2.4s; }
.chip-value{ font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.chip-label{ font-size: 0.72rem; color: var(--ink-soft); }
.chip-up{ color: #1E8E73; font-size: 0.78rem; font-weight: 600; }

@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* ---------- Stat strip ---------- */
.stat-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item{
  padding: 40px 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat-item:first-child{ border-left: none; }
.stat-num{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
}
.stat-num .accent{ color: var(--gold); }
.stat-label{ font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Feature cards ---------- */
.feature-card{
  padding: 34px 30px;
}
.feature-icon{
  width: 52px; height: 52px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-soft);
}
.feature-icon svg{ width: 24px; height: 24px; }
.feature-card h3{ margin-bottom: 10px; }
.feature-card p{ margin: 0; font-size: 0.95rem; }

/* ---------- Process / numbered steps (real sequence) ---------- */
.step-list{ counter-reset: step; }
.step{
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child{ border-bottom: none; }
.step-num{
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  min-width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-num::before{ content: counter(step, decimal-leading-zero); }

/* ---------- Plan cards ---------- */
.plan-card{
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card.featured{
  background: linear-gradient(165deg, var(--navy), var(--navy-deep));
  color: var(--on-dark);
  border: none;
  transform: scale(1.03);
}
.plan-card.featured p, .plan-card.featured .plan-desc{ color: rgba(255,255,255,0.65); }
.plan-card.featured:hover{ transform: scale(1.03) translateY(-6px); }
.plan-badge{
  position: absolute;
  top: -14px; left: 32px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 3px;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}
.plan-name{ font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.plan-desc{ font-size: 0.9rem; margin-bottom: 22px; }
.plan-price{ font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; margin-bottom: 2px; }
.plan-price span{ font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.plan-card.featured .plan-price span{ color: rgba(255,255,255,0.6); }
.plan-min{ font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 26px; }
.plan-card.featured .plan-min{ color: rgba(255,255,255,0.55); }
.plan-features{ margin-bottom: 30px; flex-grow: 1; }
.plan-features li{
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem;
  padding: 8px 0;
  color: var(--ink);
}
.plan-card.featured .plan-features li{ color: rgba(255,255,255,0.92); }
.plan-features li svg{ flex-shrink: 0; margin-top: 3px; color: var(--mint); }
.plan-card.featured .plan-features li svg{ color: var(--gold-soft); }

/* ---------- Testimonials ---------- */
.testimonial-card{
  padding: 32px 30px;
}
.testimonial-stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; display:block; }
.testimonial-quote{ font-size: 1rem; color: var(--ink); margin-bottom: 22px; }
.testimonial-person{ display: flex; align-items: center; gap: 12px; }
.avatar-circle{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--mint));
  flex-shrink: 0;
}
.person-name{ font-weight: 600; font-size: 0.92rem; }
.person-role{ font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- FAQ Accordion ---------- */
.faq-item{
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open{ border-color: rgba(201,162,39,0.4); box-shadow: var(--shadow-sm); }
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-icon{
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.faq-icon::before, .faq-icon::after{
  content:"";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: opacity .25s ease;
}
.faq-icon::before{ width: 12px; height: 1.6px; }
.faq-icon::after{ width: 1.6px; height: 12px; }
.faq-item.open .faq-icon{ background: var(--navy); border-color: var(--navy); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after{ background: var(--on-dark); }
.faq-item.open .faq-icon::after{ opacity: 0; }

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner{ padding: 0 26px 24px; }
.faq-answer-inner p{ margin: 0; font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(57,72,234,0.08);
}
.field textarea{ resize: vertical; min-height: 130px; }
.field .error-msg{ display:none; color: var(--danger); font-size: 0.78rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color: var(--danger); }
.field.invalid .error-msg{ display: block; }
.checkbox-row{ display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.checkbox-row input{ margin-top: 4px; }
.checkbox-row label{ font-size: 0.84rem; color: var(--ink-soft); font-weight: 400; }
.form-success{
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: rgba(47,191,159,0.1);
  color: #1E8E73;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 16px;
}
.form-success.show{ display: flex; }

/* ---------- Info cards (contact) ---------- */
.info-card{
  padding: 30px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon{
  width: 46px; height: 46px;
  border-radius: 3px;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg{ width: 20px; height: 20px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  border-radius: var(--r-xl);
  padding: 64px 56px;
  color: var(--on-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content:"";
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,162,39,0.25), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2{ color: var(--on-dark); margin-bottom: 10px; }
.cta-banner p{ color: rgba(255,255,255,0.68); margin-bottom: 0; max-width: 420px; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-text{ position: relative; z-index: 2; }

/* ---------- Logo strip ---------- */
.logo-strip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.55;
}
.logo-strip .logo-item{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ---------- Timeline (About) ---------- */
.timeline{ position: relative; padding-left: 30px; }
.timeline::before{
  content:"";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline-item{ position: relative; padding-bottom: 40px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{
  content:"";
  position: absolute;
  left: -30px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year{ font-family: var(--font-display); font-weight: 600; color: var(--navy); margin-bottom: 4px; }

/* ---------- Values grid ---------- */
.value-card{ padding: 30px 26px; }
.value-num{ font-family: var(--font-display); font-size: 0.85rem; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 14px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 62px 0 60px;
  background: var(--canvas);
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:"";
  position: absolute;
  top: -200px; right: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,162,39,0.14), transparent 70%);
  border-radius: 50%;
}
.page-hero-inner{ position: relative; z-index: 2; max-width: 700px; }
.breadcrumb{ font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a{ color: var(--ink-soft); }
.breadcrumb a:hover{ color: var(--navy); }
.breadcrumb .sep{ margin: 0 8px; }

/* ---------- Team ---------- */
.team-card{ overflow: hidden; }
.team-info{ padding: 22px 24px; }
.team-name{ font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-bottom: 2px; }
.team-role{ font-size: 0.84rem; color: var(--gold); font-weight: 600; }

/* ---------- WhatsApp float button ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 78px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.3);
  z-index: 9999;
  transition: .3s;
}
.whatsapp-float:hover{
  transform: scale(1.1);
}
.whatsapp-float img{
  width: 34px;
  height: 34px;
}
@media (max-width: 480px){
  .whatsapp-float{ bottom: 74px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float img{ width: 28px; height: 28px; }
}


.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
    z-index: 9999;
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}



/* ---------- Stock Ticker ---------- */
.stock-ticker{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  padding: 12px 0;
}
.stock-ticker::before, .stock-ticker::after{
  content:"";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.stock-ticker::before{
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}
.stock-ticker::after{
  right: 0;
  background: linear-gradient(-90deg, var(--navy-deep), transparent);
}
.stock-ticker-track{
  display: flex;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
.stock-ticker:hover .stock-ticker-track{
  animation-play-state: paused;
}
.ticker-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ticker-symbol{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--on-dark);
  letter-spacing: 0.02em;
}
.ticker-price{
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
}
.ticker-change{
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ticker-up{ color: var(--mint); }
.ticker-down{ color: #F0827E; }

@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 0;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand{ color: var(--on-dark); margin-bottom: 16px; }
.footer-brand p{ color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 300px; }
.footer-col h4{
  color: var(--on-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col ul li a{
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-col ul li a:hover{ color: var(--gold-soft); padding-left: 4px; }
.social-row{ display: flex; gap: 10px; margin-top: 20px; }
.social-icon{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark);
  transition: background .2s ease, transform .2s ease;
}
.social-icon:hover{ background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.social-icon svg{ width: 16px; height: 16px; }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links{ display: flex; gap: 24px; }
.footer-bottom-links a:hover{ color: var(--on-dark); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 460px; margin: 32px auto 0; width: 100%; }
  .grid-4{ grid-template-columns: repeat(1, 1fr); }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 28px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a{ padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle{ display: flex; }
  .nav-actions .btn-primary span.desktop-only{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction: column; align-items: flex-start; padding: 44px 32px; }
}

@media (max-width: 720px){
  .section{ padding: 76px 0; }
  .grid-4{ grid-template-columns: repeat(1, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .stat-strip{ grid-template-columns: repeat(2, 1fr); }
  .stat-item{ border-left: none; border-top: 1px solid var(--line); padding: 28px 10px; }
  .stat-item:nth-child(1), .stat-item:nth-child(2){ border-top: none; }
  .plan-card.featured{ transform: none; }
  .footer-top{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .container{ padding: 0 20px; }
  h1{ font-size: 2.1rem; }
  .hero{ padding: 60px 0 60px; }
  .hero-cta{ flex-direction: column; }
  .hero-cta .btn{ width: 100%; }
  .cta-actions{ flex-direction: column; width: 100%; }
  .cta-actions .btn{ width: 100%; }
  .hero-visual{ max-width: 320px; padding: 0 6px; }
  .hero-panel{ padding: 26px 22px; min-height: auto; }
  .floating-chip{ padding: 10px 14px; }
  .chip-1{ top: -16px; left: -8px; }
  .chip-2{ bottom: 30px; right: -8px; }
  .chip-3{ bottom: -18px; left: 20px; }
  .chip-value{ font-size: 0.88rem; }
}

@media (max-width: 380px){
  .theme-toggle-label{ display: none; }
}
