/* ═══════════════════════════════════════════════════════════════
   FDSBI Inc. — Corporate Design System
   Clean Light · Gold · Burgundy · Purple
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Brand accents */
  --gold:          #d97706;
  --gold-dark:     #b45309;
  --gold-light:    rgba(217,119,6,.10);
  --gold-glow:     rgba(217,119,6,.20);

  --burgundy:      #9f1239;
  --burgundy-dark: #7f0f2e;
  --burgundy-light:rgba(159,18,57,.10);

  --purple:        #6d28d9;
  --purple-light:  #7c3aed;
  --purple-pale:   rgba(109,40,217,.10);

  /* Light backgrounds */
  --bg:            #ffffff;
  --bg-2:          #fafafa;
  --bg-3:          #f5f3ff;   /* faint lavender */
  --bg-4:          #fdf2f8;   /* faint rose */

  /* Card */
  --card-bg:       #ffffff;
  --card-border:   #e5e7eb;
  --card-border-h: #d1d5db;
  --card-shadow:   0 2px 12px rgba(0,0,0,.06);
  --card-shadow-h: 0 8px 32px rgba(0,0,0,.10);

  /* Text */
  --text:          #1e1b4b;
  --text-2:        #374151;
  --text-3:        #6b7280;
  --text-4:        #9ca3af;

  /* Nav */
  --nav-bg:        rgba(255,255,255,.96);
  --nav-border:    rgba(0,0,0,.07);

  /* Dark zone (CTA, footer) */
  --dark-zone:     #0f0b22;
  --dark-zone-2:   #18133a;
  --dark-border:   rgba(255,255,255,.08);

  /* Radius */
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow:     0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.10);
  --shadow-gold:0 4px 20px rgba(217,119,6,.25);
  --shadow-burg:0 4px 20px rgba(159,18,57,.25);

  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --nav-h:        66px;
  --transition:   all .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font); color:var(--text); background:var(--bg); line-height:1.6; }
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container    { max-width:1160px; margin:0 auto; padding:0 24px; }
.section      { padding:80px 0; }
.section-sm   { padding:56px 0; }
.hidden       { display:none !important; }

/* ── Typography ─────────────────────────────────────────────── */
.display-1 { font-family:var(--font-display); font-size:clamp(2rem,4.5vw,3.5rem);  font-weight:800; line-height:1.12; letter-spacing:-.03em; }
.display-2 { font-family:var(--font-display); font-size:clamp(1.625rem,3.5vw,2.625rem); font-weight:800; line-height:1.15; letter-spacing:-.025em; }
.heading-1 { font-family:var(--font-display); font-size:clamp(1.25rem,2.5vw,1.75rem); font-weight:700; }

.label {
  font-size:.6875rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.section-header { margin-bottom:48px; }
.section-header .label { margin-bottom:8px; }
.section-header h2 {
  font-family:var(--font-display); font-size:clamp(1.5rem,2.5vw,2rem);
  font-weight:800; letter-spacing:-.02em; color:var(--text);
}
.section-header p { margin-top:10px; font-size:1rem; color:var(--text-3); max-width:520px; }
.underline-gold { width:36px; height:3px; background:var(--gold); border-radius:2px; margin-top:14px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 24px; border-radius:var(--r-full);
  font-size:.9rem; font-weight:600;
  transition:var(--transition); white-space:nowrap;
}
.btn-gold {
  background:var(--gold); color:#fff;
  box-shadow:var(--shadow-gold);
}
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-1px); }
.btn-burgundy {
  background:var(--burgundy); color:#fff;
  box-shadow:var(--shadow-burg);
}
.btn-burgundy:hover { background:var(--burgundy-dark); transform:translateY(-1px); }
.btn-outline-gold {
  border:1.5px solid var(--gold); color:var(--gold); background:transparent;
}
.btn-outline-gold:hover { background:var(--gold-light); }
.btn-outline {
  border:1.5px solid var(--card-border); color:var(--text-2); background:transparent;
}
.btn-outline:hover { border-color:var(--card-border-h); background:var(--bg-2); }
.btn-outline-white {
  border:1.5px solid rgba(255,255,255,.3); color:rgba(255,255,255,.85);
}
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.5); }
.btn-lg { padding:13px 32px; font-size:.9375rem; }
.btn-sm { padding:7px 18px; font-size:.8125rem; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display:inline-flex; align-items:center; gap:4px;
  padding:3px 10px; border-radius:var(--r-full);
  font-size:.6875rem; font-weight:700;
}
.badge-gold     { background:var(--gold-light); color:var(--gold-dark); }
.badge-burgundy { background:var(--burgundy-light); color:var(--burgundy); }
.badge-purple   { background:var(--purple-pale); color:var(--purple); }
.badge-done     { background:rgba(16,185,129,.10); color:#059669; }
.badge-soon     { background:rgba(217,119,6,.12); color:var(--gold-dark); }
.badge-future   { background:rgba(109,40,217,.10); color:var(--purple); }

/* ══════════════════════════════════════════════════════════════
   NAV — white / light
   ══════════════════════════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; height:var(--nav-h);
  display:flex; align-items:center; z-index:1000;
  transition:var(--transition);
}
.nav.scrolled {
  background:var(--nav-bg);
  backdrop-filter:blur(20px) saturate(160%);
  border-bottom:1px solid var(--nav-border);
  box-shadow:0 1px 16px rgba(0,0,0,.06);
}
.nav-inner {
  display:flex; align-items:center;
  width:100%; max-width:1160px; margin:0 auto; padding:0 24px;
}
.nav-brand {
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-size:1.1875rem; font-weight:800;
  color:var(--text); letter-spacing:-.02em; flex-shrink:0;
}
.nav-brand img { width:100px; height:34px; border-radius:9px; object-fit:cover; }
.nav-brand .brand-fd  { color:var(--text); }
.nav-brand .brand-sbi { color:var(--gold); }

.nav-links {
  display:flex; align-items:center; gap:2px;
  margin-left:auto; list-style:none;
}
.nav-links a {
  padding:7px 14px; border-radius:var(--r-sm);
  font-size:.875rem; font-weight:500; color:var(--text-2);
  transition:var(--transition);
}
.nav-links a:hover { color:var(--purple); background:var(--purple-pale); }
.nav-links a.active { color:var(--purple); background:var(--purple-pale); font-weight:600; }

.nav-social {
  display:flex; align-items:center; gap:4px; margin-left:14px;
}
.social-icon {
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-3); transition:var(--transition);
}
.social-icon:hover { background:var(--purple-pale); color:var(--purple); }
.social-icon--soon { opacity:.3; pointer-events:none; }

.nav-cta { margin-left:14px; }
.nav-hamburger { display:none; }

/* Mobile nav */
.mobile-nav {
  position:fixed; inset:0; z-index:999;
  background:var(--bg); padding:80px 24px 40px;
  transform:translateX(100%); transition:transform .3s ease;
  display:flex; flex-direction:column; gap:8px;
  border-left:1px solid var(--card-border);
  box-shadow:-8px 0 40px rgba(0,0,0,.08);
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav a {
  padding:12px 16px; border-radius:var(--r-sm);
  font-size:1rem; font-weight:600; color:var(--text);
  display:block; transition:var(--transition);
  border-bottom:1px solid var(--card-border);
}
.mobile-nav a:hover { color:var(--purple); background:var(--purple-pale); }

/* ══════════════════════════════════════════════════════════════
   HERO — soft light
   ══════════════════════════════════════════════════════════════ */
.hero {
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  overflow:hidden;
  background:linear-gradient(150deg, #ffffff 0%, #f8f5ff 35%, #fff4f7 65%, #f5fbff 100%);
}
/* Soft blobs */
.hero::before {
  content:''; position:absolute; top:-10%; right:-5%;
  width:600px; height:600px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(109,40,217,.08) 0%, transparent 70%);
  animation:blob1 10s ease-in-out infinite;
}
.hero::after {
  content:''; position:absolute; bottom:-15%; left:-5%;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(159,18,57,.06) 0%, transparent 70%);
  animation:blob2 13s ease-in-out infinite;
}
.hero-gold-blob {
  position:absolute; top:40%; left:35%;
  width:350px; height:350px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(217,119,6,.06) 0%, transparent 70%);
  animation:blob1 15s ease-in-out infinite reverse;
  pointer-events:none;
}
@keyframes blob1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,30px) scale(1.08)} }
@keyframes blob2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-40px) scale(1.06)} }

.hero-content {
  position:relative; z-index:2;
  max-width:1160px; margin:0 auto; width:100%;
  padding:calc(var(--nav-h) + 56px) 24px 72px;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(109,40,217,.07); border:1px solid rgba(109,40,217,.15);
  padding:5px 16px; border-radius:var(--r-full);
  margin-bottom:24px;
}
.hero-eyebrow .dot { width:6px; height:6px; background:var(--purple); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-eyebrow span { font-size:.75rem; font-weight:600; color:var(--purple); letter-spacing:.06em; text-transform:uppercase; }

.hero-title { color:var(--text); margin-bottom:20px; }
.hero-sub   { color:var(--text-3); font-size:1.0625rem; max-width:520px; line-height:1.72; margin-bottom:36px; }
.hero-btns  { display:flex; gap:12px; flex-wrap:wrap; }

/* Hero stats */
.hero-stats {
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  background:rgba(255,255,255,.7); backdrop-filter:blur(12px);
  border-top:1px solid rgba(0,0,0,.06);
}
.hero-stats-inner {
  max-width:1160px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center;
}
.stat-item {
  flex:1; padding:18px 20px; text-align:center;
  border-right:1px solid rgba(0,0,0,.06);
}
.stat-item:last-child { border-right:none; }
.stat-num   { font-family:var(--font-display); font-size:1.625rem; font-weight:800; color:var(--gold); }
.stat-label { font-size:.75rem; color:var(--text-4); margin-top:2px; }

/* ══════════════════════════════════════════════════════════════
   CARDS — light
   ══════════════════════════════════════════════════════════════ */
.card-dark {
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--r-lg);
  padding:28px;
  box-shadow:var(--card-shadow);
  transition:var(--transition);
}
.card-dark:hover {
  border-color:var(--card-border-h);
  box-shadow:var(--card-shadow-h);
  transform:translateY(-3px);
}
.card-icon {
  width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.375rem; margin-bottom:18px;
}
.card-icon-gold     { background:var(--gold-light); }
.card-icon-burgundy { background:var(--burgundy-light); }
.card-icon-purple   { background:var(--purple-pale); }
.card-dark h3 { font-size:1.0625rem; font-weight:700; margin-bottom:8px; color:var(--text); }
.card-dark p  { font-size:.9rem; color:var(--text-3); line-height:1.65; }

/* Grid */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
@media(max-width:1024px) { .grid-3{grid-template-columns:repeat(2,1fr);} .grid-4{grid-template-columns:repeat(2,1fr);} }
@media(max-width:640px)  { .grid-3,.grid-4,.grid-2{grid-template-columns:1fr;} }

/* ══════════════════════════════════════════════════════════════
   ROADMAP TIMELINE
   ══════════════════════════════════════════════════════════════ */
.timeline { position:relative; padding:40px 0; }
.timeline::before {
  content:''; position:absolute; left:50%; top:0; bottom:0; width:2px;
  background:linear-gradient(to bottom, transparent, var(--card-border) 10%, var(--card-border) 90%, transparent);
  transform:translateX(-50%);
}
.timeline-item {
  display:grid; grid-template-columns:1fr 60px 1fr; gap:0;
  margin-bottom:40px; align-items:start;
}
.timeline-item:nth-child(odd)  .timeline-content { grid-column:1; text-align:right; padding-right:36px; }
.timeline-item:nth-child(odd)  .timeline-empty   { grid-column:3; }
.timeline-item:nth-child(even) .timeline-content { grid-column:3; text-align:left;  padding-left:36px;  }
.timeline-item:nth-child(even) .timeline-empty   { grid-column:1; }
.timeline-dot {
  grid-column:2; display:flex; justify-content:center; align-items:flex-start;
  padding-top:6px;
}
.timeline-dot .dot {
  width:14px; height:14px; border-radius:50%;
  border:2.5px solid var(--card-border);
  background:var(--bg); flex-shrink:0; transition:var(--transition);
  position:relative; z-index:1;
}
.timeline-dot .dot.done    { background:var(--gold); border-color:var(--gold); box-shadow:0 0 0 5px var(--gold-light); }
.timeline-dot .dot.current { background:var(--burgundy); border-color:var(--burgundy); box-shadow:0 0 0 5px var(--burgundy-light); animation:pulseDot 2s infinite; }
.timeline-dot .dot.future  { background:var(--bg); border-color:var(--purple); border-style:dashed; }
@keyframes pulseDot { 0%,100%{box-shadow:0 0 0 5px var(--burgundy-light)} 50%{box-shadow:0 0 0 10px rgba(159,18,57,.04)} }

.timeline-card {
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-lg); padding:20px 24px;
  box-shadow:var(--card-shadow);
  transition:var(--transition);
}
.timeline-card:hover { border-color:var(--card-border-h); box-shadow:var(--card-shadow-h); }
.timeline-card .date { font-size:.75rem; font-weight:700; color:var(--gold-dark); margin-bottom:6px; letter-spacing:.04em; }
.timeline-card h3    { font-size:.9375rem; font-weight:700; margin-bottom:5px; color:var(--text); }
.timeline-card p     { font-size:.8375rem; color:var(--text-3); line-height:1.6; }

@media(max-width:768px) {
  .timeline::before { left:22px; }
  .timeline-item { grid-template-columns:44px 1fr; }
  .timeline-item:nth-child(odd)  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column:2; text-align:left; padding:0 0 0 20px; }
  .timeline-item:nth-child(odd)  .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display:none; }
  .timeline-dot { grid-column:1; padding-top:6px; }
}

/* ══════════════════════════════════════════════════════════════
   ALTERNATING SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section-alt {
  background:var(--bg-3);
}
.section-alt .card-dark {
  background:#fff;
}

/* Legacy section-light (for products.html compatibility) */
.section-light {
  background:var(--bg-3);
  color:var(--text);
}
.section-light .label   { color:var(--burgundy); }
.section-light .card-light {
  background:#fff; border:1px solid var(--card-border);
  border-radius:var(--r-lg); padding:24px;
  box-shadow:var(--card-shadow);
  transition:var(--transition);
}
.section-light .card-light:hover { transform:translateY(-2px); box-shadow:var(--card-shadow-h); }
.section-light .section-header p { color:var(--text-3); }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER — stays dark for contrast
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background:linear-gradient(135deg, var(--dark-zone) 0%, #2d1b69 50%, #6d28d9 100%);
  border-radius:var(--r-xl); padding:56px 48px;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; top:-50%; right:-5%;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(217,119,6,.15) 0%, transparent 70%);
}
.cta-band::after {
  content:''; position:absolute; bottom:-40%; left:-3%;
  width:280px; height:280px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.05) 0%, transparent 70%);
}
.cta-band h2 { font-family:var(--font-display); font-size:1.75rem; font-weight:800; color:#fff; margin-bottom:10px; position:relative; z-index:1; }
.cta-band p  { color:rgba(255,255,255,.75); font-size:1rem; margin-bottom:28px; position:relative; z-index:1; }
.cta-band .btns { display:flex; gap:10px; flex-wrap:wrap; position:relative; z-index:1; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — stays dark
   ══════════════════════════════════════════════════════════════ */
.footer {
  background:var(--dark-zone);
  border-top:1px solid rgba(255,255,255,.06);
  padding:64px 0 28px;
  color:rgba(248,250,252,.55);
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.06);
}
@media(max-width:900px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:600px) { .footer-grid { grid-template-columns:1fr; } }

.footer-brand p    { font-size:.875rem; line-height:1.65; max-width:240px; margin-top:12px; }
.footer-logo {
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-size:1.125rem; font-weight:800;
}
.footer-logo img { width:32px; height:32px; border-radius:8px; }
.footer-logo .fd  { color:rgba(248,250,252,.9); }
.footer-logo .sbi { color:var(--gold); }
.footer-social { display:flex; gap:6px; margin-top:14px; }
.footer-social .social-icon { color:rgba(255,255,255,.4); background:rgba(255,255,255,.05); }
.footer-social .social-icon:hover { background:var(--gold-light); color:var(--gold); }

.footer-col h4  { font-size:.75rem; font-weight:700; color:rgba(255,255,255,.7); text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.footer-col ul  { list-style:none; display:grid; gap:9px; }
.footer-col a   { font-size:.875rem; transition:var(--transition); }
.footer-col a:hover { color:var(--gold); }

.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:24px; flex-wrap:wrap; gap:12px; font-size:.8125rem;
  color:rgba(248,250,252,.35);
}
.footer-bottom a { color:rgba(248,250,252,.35); transition:var(--transition); }
.footer-bottom a:hover { color:var(--gold); }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADERS — light
   ══════════════════════════════════════════════════════════════ */
.page-header {
  padding:calc(var(--nav-h) + 64px) 0 64px;
  background:linear-gradient(150deg, var(--bg-3) 0%, #fff 60%, var(--bg-4) 100%);
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--card-border);
}
.page-header::before {
  content:''; position:absolute; top:-20%; right:-5%;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(109,40,217,.07) 0%, transparent 70%);
}
.page-header .label { margin-bottom:8px; }
.page-header h1 { font-size:clamp(1.75rem,4vw,2.75rem); font-weight:800; margin-bottom:14px; color:var(--text); }
.page-header p  { color:var(--text-3); font-size:1rem; max-width:520px; line-height:1.7; }

/* ══════════════════════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════════════════════ */
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:.8125rem; font-weight:600; color:var(--text-2); margin-bottom:5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:10px 14px;
  background:var(--bg-2); border:1.5px solid var(--card-border);
  border-radius:var(--r-sm); font-family:var(--font); font-size:.9rem;
  color:var(--text); outline:none; transition:var(--transition); resize:vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--text-4); }
.form-group input:focus,
.form-group textarea:focus { border-color:var(--purple); box-shadow:0 0 0 3px var(--purple-pale); background:#fff; }

/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */
.toast {
  position:fixed; bottom:28px; right:28px; z-index:9999;
  background:#fff; color:var(--text); border:1px solid var(--card-border);
  padding:12px 20px; border-radius:var(--r-lg); font-size:.9rem; font-weight:500;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:10px;
  animation:slideUp .3s ease; max-width:340px;
}
.toast.success { border-color:rgba(16,185,129,.3); }
.toast.error   { border-color:rgba(239,68,68,.3); }
@keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media(max-width:768px) {
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger {
    display:flex; align-items:center; justify-content:center;
    margin-left:auto; width:38px; height:38px; color:var(--text-2);
    border-radius:var(--r-sm);
  }
  .nav-hamburger:hover { background:var(--purple-pale); color:var(--purple); }
  .nav-social { display:none; }
  .hero-stats-inner { flex-wrap:wrap; }
  .stat-item { min-width:50%; border-right:none; border-bottom:1px solid rgba(0,0,0,.06); }
  .section { padding:56px 0; }
  .cta-band { padding:36px 24px; }
  .cta-band h2 { font-size:1.375rem; }
  .timeline { padding:20px 0; }
}

/* ── Hero background slideshow ──────────────────────────────── */
.hero-slides {
  position:absolute; inset:0; z-index:0; overflow:hidden;
}
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  transition:opacity 2s cubic-bezier(.4,0,.2,1);
  will-change:opacity,transform;
  transform:scale(1.06);
}
.hero-slide:nth-child(1) { background-position:center 60%; }
.hero-slide:nth-child(2) { background-position:center center; }
.hero-slide:nth-child(3) { background-position:center 30%; }

.hero-slide.active {
  opacity:1;
  animation:kbActive 10s ease-in-out forwards;
}
.hero-slide.prev {
  opacity:0;
  animation:kbPrev 2s ease-in-out forwards;
}

@keyframes kbActive {
  0%   { transform:scale(1.06) translate(0,0); }
  100% { transform:scale(1.14) translate(-2%,-1%); }
}
@keyframes kbPrev {
  0%   { opacity:1; }
  100% { opacity:0; }
}

/* Overlay: light veil — images show through, text stays readable */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to right,  rgba(255,255,255,.62) 0%, rgba(255,255,255,.30) 50%, rgba(255,255,255,.10) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.05) 0%, rgba(255,255,255,.30) 100%);
}

/* Dots */
.hero-dots {
  position:absolute; bottom:94px; left:50%; transform:translateX(-50%);
  z-index:4; display:flex; gap:9px; align-items:center;
}
.hero-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.45);
  border:1.5px solid rgba(255,255,255,.65);
  cursor:pointer; transition:all .35s ease;
  backdrop-filter:blur(4px);
}
.hero-dot.active {
  background:var(--gold); border-color:var(--gold);
  width:22px; border-radius:4px;
  box-shadow:0 0 0 3px rgba(217,119,6,.22);
}
.hero-dot:hover:not(.active) {
  background:rgba(255,255,255,.75);
  transform:scale(1.2);
}

/* Bump z-indexes */
.hero-gold-blob { z-index:2 !important; }
.hero-content   { z-index:3 !important; }
.hero-stats     { z-index:3 !important; position:relative; }
.hero::before,
.hero::after    { z-index:2 !important; }

/* ── Values ──────────────────────────────────────────────────── */
.values-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.value-card {
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-lg); padding:24px;
  box-shadow:var(--card-shadow);
  transition:var(--transition);
}
.value-card:hover { border-color:var(--gold); transform:translateY(-2px); box-shadow:var(--card-shadow-h); }
.value-card .icon { font-size:2rem; margin-bottom:14px; }
.value-card h3 { font-size:1rem; font-weight:700; margin-bottom:6px; color:var(--text); }
.value-card p  { font-size:.875rem; color:var(--text-3); line-height:1.65; }

/* ── Product cards ──────────────────────────────────────────── */
.product-card {
  background:var(--card-bg); border:1px solid var(--card-border);
  border-radius:var(--r-xl); padding:32px 28px;
  box-shadow:var(--card-shadow);
  transition:var(--transition); position:relative; overflow:hidden;
}
.product-card::before {
  content:''; position:absolute; top:-20%; right:-10%;
  width:180px; height:180px; border-radius:50%;
  opacity:.6; transition:var(--transition);
}
.product-card:hover { transform:translateY(-4px); box-shadow:var(--card-shadow-h); border-color:var(--card-border-h); }
.product-card:hover::before { opacity:1; transform:scale(1.15); }
.product-card.gold-accent::before  { background:radial-gradient(ellipse, var(--gold-light) 0%, transparent 70%); }
.product-card.burg-accent::before  { background:radial-gradient(ellipse, var(--burgundy-light) 0%, transparent 70%); }
.product-card.purp-accent::before  { background:radial-gradient(ellipse, var(--purple-pale) 0%, transparent 70%); }

.product-card .product-icon { font-size:2.25rem; margin-bottom:16px; position:relative; z-index:1; }
.product-card h3 { font-size:1.125rem; font-weight:700; margin-bottom:8px; color:var(--text); position:relative; z-index:1; }
.product-card p  { font-size:.9rem; color:var(--text-3); line-height:1.65; position:relative; z-index:1; }
.product-tag {
  display:inline-flex; margin-top:14px; position:relative; z-index:1;
  font-size:.6875rem; font-weight:700; padding:3px 10px;
  border-radius:var(--r-full); border:1px solid;
}
.product-tag-gold { color:var(--gold-dark); border-color:var(--gold); background:var(--gold-light); }
.product-tag-burg { color:var(--burgundy); border-color:var(--burgundy); background:var(--burgundy-light); }
.product-tag-purp { color:var(--purple); border-color:var(--purple); background:var(--purple-pale); }
