/* ============================================
   CigarTrakr — Premium Marketing Site Styles
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0804;
  --charcoal: #111009;
  --dark: #1a1510;
  --dark2: #231d16;
  --dark3: #2e2519;
  --espresso: #3d2f1f;
  --brown: #5c4130;
  --mocha: #7c5c3a;
  --tan: #9b7b5a;
  --gold: #c9a84c;
  --gold-light: #e0c578;
  --gold-dark: #9e7e2e;
  --amber: #d4892a;
  --cream: #f0e8d4;
  --off-white: #f9f5ed;
  --white: #ffffff;
  --red: #cc3333;
  --green: #4a8c5c;
  --text-primary: #f0e8d4;
  --text-secondary: #b8a88a;
  --text-muted: #7a6a55;
  --border: rgba(201, 168, 76, 0.15);
  --border-light: rgba(201, 168, 76, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 20px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.centered { display: flex; justify-content: center; }
.gold-label {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.red-label {
  background: rgba(204, 51, 51, 0.1);
  color: #e06060;
  border: 1px solid rgba(204, 51, 51, 0.25);
}

/* ---- Buttons ---- */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1.5px solid rgba(240, 232, 212, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-lg:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}
.btn-ghost {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 8, 4, 0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--off-white);
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
}
.logo-text { letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 100px;
}
/* Real photo background */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('/static/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Deep dark vignette so text stays legible over the warm photo */
  background:
    linear-gradient(90deg,
      rgba(5,3,1,0.92) 0%,
      rgba(8,5,2,0.80) 45%,
      rgba(5,3,1,0.55) 70%,
      rgba(5,3,1,0.45) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,0,0,0.70) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 2;
}
/* Hero brand image card */
.hero-brand-image {
  margin-bottom: 32px;
}
.hero-logo-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow:
    0 8px 48px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201,168,76,0.15),
    0 0 60px rgba(201,168,76,0.06);
  display: block;
  /* Slight warm overlay frame */
  outline: 1px solid rgba(201,168,76,0.12);
  outline-offset: 4px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-logo-img:hover {
  transform: scale(1.015);
  box-shadow:
    0 16px 64px rgba(0,0,0,0.8),
    0 0 0 1px rgba(201,168,76,0.25),
    0 0 80px rgba(201,168,76,0.1);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: left; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-suffix { font-size: 1.2rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.mockup-browser {
  width: 100%;
  max-width: 520px;
  background: var(--dark2);
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03), var(--shadow-gold);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.red { background: #e05252; }
.browser-dot.yellow { background: #e0b452; }
.browser-dot.green { background: #52a868; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  font-family: monospace;
}
.browser-content { padding: 20px; }

/* Dashboard Mock */
.dashboard-mock { }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--off-white); }
.dash-meta { font-size: 0.72rem; color: var(--text-muted); }
.dash-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 16px; }
.dash-stat-card {
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.ds-icon { font-size: 0.9rem; margin-bottom: 4px; }
.ds-icon.gold { color: var(--gold); }
.ds-icon.brown { color: var(--mocha); }
.ds-icon.amber { color: var(--amber); }
.ds-icon.green { color: var(--green); }
.ds-val { font-size: 1rem; font-weight: 700; color: var(--off-white); }
.ds-label { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; }
.dash-chart-area { background: var(--dark3); border-radius: 8px; border: 1px solid var(--border-light); padding: 12px; margin-bottom: 12px; }
.chart-title { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--mocha) 0%, var(--espresso) 100%);
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: all 0.3s;
}
.chart-bar.active { background: linear-gradient(180deg, var(--gold) 0%, var(--amber) 100%); }
.chart-bar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: 0.55rem; color: var(--text-muted); white-space: nowrap; }
.dash-recent { margin-top: 4px; }
.recent-title { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.cigar-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.cigar-row:last-child { border-bottom: none; }
.cigar-color { width: 4px; height: 28px; border-radius: 2px; flex-shrink: 0; }
.c1 { background: linear-gradient(180deg, #c9a84c, #8b6914); }
.c2 { background: linear-gradient(180deg, #7c5c3a, #3d2f1f); }
.c3 { background: linear-gradient(180deg, #9b7b5a, #5c4130); }
.c4 { background: linear-gradient(180deg, #d4892a, #9e5c14); }
.cigar-info { flex: 1; }
.cigar-name { font-size: 0.75rem; font-weight: 600; color: var(--off-white); }
.cigar-meta { font-size: 0.62rem; color: var(--text-muted); }
.cigar-rating { font-size: 0.7rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* Phone Mockup */
.mockup-phone {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 160px;
  background: var(--dark2);
  border-radius: 20px;
  border: 2px solid rgba(201,168,76,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-gold);
  overflow: hidden;
  padding: 16px 10px;
}
.phone-notch {
  width: 50px; height: 6px;
  background: var(--dark3);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.phone-stat-row { display: flex; gap: 6px; margin-bottom: 10px; }
.phone-stat-card {
  flex: 1;
  background: var(--dark3);
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.ps-val { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.ps-label { font-size: 0.5rem; color: var(--text-muted); text-transform: uppercase; }
.phone-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.6rem;
  color: var(--text-secondary);
}
.pli-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pli-dot.gold { background: var(--gold); }
.pli-dot.amber { background: var(--amber); }
.pli-dot.brown { background: var(--mocha); }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 4px 12px;
}
.trust-item i { color: var(--gold); font-size: 0.75rem; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
.problem-solution {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(92,65,48,0.08) 0%, transparent 60%),
    var(--black);
}
.problem-solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pain-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.pain-item { display: flex; gap: 16px; }
.pain-icon {
  width: 40px; height: 40px;
  background: rgba(204,51,51,0.1);
  border: 1px solid rgba(204,51,51,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #e06060;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.pain-text h4 { font-size: 0.95rem; font-weight: 600; color: var(--off-white); margin-bottom: 4px; }
.pain-text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.solution-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.solution-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.sf-item { display: flex; align-items: center; gap: 12px; }
.sf-check {
  width: 22px; height: 22px;
  background: rgba(74,140,92,0.15);
  border: 1px solid rgba(74,140,92,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #6abf80;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.sf-text { font-size: 0.92rem; color: var(--text-secondary); }
.solution-cta { margin-top: 8px; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 50%),
    var(--charcoal);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  border-color: rgba(201,168,76,0.25);
  background: var(--dark3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap { margin-bottom: 20px; }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: rgba(201,168,76,0.15);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--off-white); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(92,65,48,0.06) 0%, transparent 60%),
    var(--black);
}
.steps-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.steps-line {
  position: absolute;
  left: 32px;
  top: 50px;
  bottom: 50px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step {
  display: grid;
  grid-template-columns: 80px 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  position: relative;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: right;
  padding-top: 18px;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-icon {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 0 24px rgba(201,168,76,0.12);
}
.step-content { padding-top: 12px; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--off-white); margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================
   WHY CIGARTRAKR
   ============================================ */
.why-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 50%),
    var(--charcoal);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.why-item-text h4 { font-size: 1rem; font-weight: 600; color: var(--off-white); margin-bottom: 6px; }
.why-item-text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* Why Visual Card Stack */
.why-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 480px; }
.wc-card {
  position: absolute;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 360px;
}
.wc-back {
  width: 320px; height: 260px;
  transform: rotate(-6deg) translateY(-10px);
  background: var(--dark3);
  opacity: 0.4;
}
.wc-mid {
  transform: rotate(-2deg);
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.wc-front {
  transform: rotate(2deg) translateY(20px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
  border-color: rgba(201,168,76,0.25);
  background: var(--dark);
  top: 160px;
}
.wc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.wc-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 0.85rem;
}
.wc-title { font-size: 0.9rem; font-weight: 700; color: var(--off-white); }
.wc-stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 20px; }
.wc-stat { background: var(--dark3); border-radius: 8px; padding: 12px; text-align: center; border: 1px solid var(--border-light); }
.wcs-val { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.wcs-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.wc-progress-section { }
.wcp-label { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.wcp-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.72rem; color: var(--text-muted); }
.wcp-bar { flex: 1; height: 4px; background: var(--dark3); border-radius: 2px; overflow: hidden; }
.wcp-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; }
.wc-badge-row { display: flex; gap: 8px; margin-bottom: 16px; }
.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
}
.wc-divider { height: 1px; background: var(--border-light); margin-bottom: 16px; }
.notify-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.notify-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.notify-dot.ready { background: #4a8c5c; box-shadow: 0 0 8px rgba(74,140,92,0.5); }
.notify-dot.aging { background: var(--amber); }
.notify-text strong { display: block; font-size: 0.75rem; color: var(--off-white); font-weight: 600; margin-bottom: 2px; }
.notify-text span { font-size: 0.65rem; color: var(--text-muted); }

/* ============================================
   APP PREVIEW
   ============================================ */
.app-preview {
  padding: 100px 0;
  background: var(--black);
}
.preview-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.preview-tab {
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.preview-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  font-weight: 700;
}
.preview-tab:hover:not(.active) { color: var(--gold); background: rgba(201,168,76,0.05); }
.preview-display {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 32px 100px rgba(0,0,0,0.6), var(--shadow-gold);
}
.preview-panel { display: none; }
.preview-panel.active { display: block; }
.app-screen {
  display: flex;
  height: 520px;
  background: var(--dark);
}
.as-sidebar {
  width: 56px;
  background: var(--dark3);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 6px;
}
.as-logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.as-nav-item {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.as-nav-item.active { background: rgba(201,168,76,0.1); color: var(--gold); }
.as-nav-item:hover:not(.active) { color: var(--text-secondary); background: var(--dark2); }
.as-main { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.as-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.as-page-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--off-white); }
.as-topbar-actions { display: flex; gap: 8px; }
.as-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}
.as-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--dark3);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 5px;
  flex: 1;
}
.as-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 16px 20px; flex-shrink: 0; }
.as-kpi {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.as-kpi.gold { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.05); }
.kpi-val { font-size: 1rem; font-weight: 700; color: var(--off-white); }
.as-kpi.gold .kpi-val { color: var(--gold); }
.kpi-label { font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }
.as-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 20px 16px; flex: 1; overflow: hidden; }
.as-chart-block, .as-recent-block {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px;
  overflow: hidden;
}
.as-block-title { font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.as-pie-chart { display: flex; align-items: center; gap: 12px; }
.pie-legend { flex: 1; }
.pie-item { display: flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--text-secondary); margin-bottom: 6px; }
.pie-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.donut-chart {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: conic-gradient(#c9a84c 0% 38%, #7c5c3a 38% 67%, #8b7355 67% 86%, #5a4a3a 86% 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.donut-chart::before {
  content: '';
  position: absolute;
  width: 44px; height: 44px;
  background: var(--dark2);
  border-radius: 50%;
}
.donut-center {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.3;
}
.donut-center small { font-size: 0.45rem; color: var(--text-muted); }
.as-aging-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border-light); }
.as-aging-row:last-child { border-bottom: none; }
.ar-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.as-aging-row.ready .ar-dot { background: #4a8c5c; box-shadow: 0 0 6px rgba(74,140,92,0.5); }
.ar-dot.aging { background: var(--amber); }
.ar-name { flex: 1; font-size: 0.72rem; color: var(--text-secondary); }
.ar-tag { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; white-space: nowrap; }
.ready-tag { background: rgba(74,140,92,0.15); color: #6abf80; border: 1px solid rgba(74,140,92,0.25); }
.soon-tag { background: rgba(212,137,42,0.15); color: var(--amber); border: 1px solid rgba(212,137,42,0.25); }
.later-tag { background: rgba(90,74,58,0.3); color: var(--text-muted); border: 1px solid var(--border-light); }

/* Collection table */
.collection-filters { display: flex; gap: 8px; padding: 0 20px 12px; flex-wrap: wrap; }
.cf-chip {
  padding: 5px 12px;
  background: var(--dark3);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--text-muted);
  cursor: pointer;
}
.cf-chip.active { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.25); color: var(--gold); }
.collection-table { padding: 0 20px; flex: 1; overflow-y: auto; }
.ct-header { display: grid; grid-template-columns: 2fr 1fr 0.5fr 0.5fr 0.6fr; gap: 8px; padding: 0 0 8px; border-bottom: 1px solid var(--border); font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.ct-row { display: grid; grid-template-columns: 2fr 1fr 0.5fr 0.5fr 0.6fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--border-light); align-items: center; }
.ct-cigar { display: flex; align-items: center; gap: 8px; }
.ct-band { width: 4px; height: 32px; border-radius: 2px; flex-shrink: 0; }
.ct-name { font-size: 0.78rem; font-weight: 600; color: var(--off-white); }
.ct-sub { font-size: 0.62rem; color: var(--text-muted); }
.ct-hum, .ct-qty, .ct-yr { font-size: 0.72rem; color: var(--text-secondary); }
.ct-rat { font-size: 0.72rem; font-weight: 700; }
.ct-rat.gold { color: var(--gold); }

/* Humidor grid */
.humidor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px 20px; flex: 1; }
.hum-card {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px;
  transition: all 0.2s;
}
.hum-card.active-hum { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.03); }
.hum-icon { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }
.hum-info { margin-bottom: 10px; }
.hum-name { font-size: 0.85rem; font-weight: 700; color: var(--off-white); }
.hum-meta { font-size: 0.68rem; color: var(--text-muted); }
.hum-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
.hum-stat { text-align: center; }
.hs-val { font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.hs-label { font-size: 0.58rem; color: var(--text-muted); }
.hum-capacity-bar { height: 4px; background: var(--dark3); border-radius: 2px; overflow: hidden; margin-bottom: 4px; }
.hcb-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; }
.hum-cap-label { font-size: 0.62rem; color: var(--text-muted); text-align: right; }

/* Profile view */
.profile-view { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 12px 20px; flex: 1; }
.pv-band-preview {
  background: linear-gradient(135deg, var(--espresso), var(--dark3));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.pv-band-visual {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201,168,76,0.03) 8px, rgba(201,168,76,0.03) 9px),
    linear-gradient(180deg, rgba(201,168,76,0.1) 0%, transparent 30%, transparent 70%, rgba(201,168,76,0.1) 100%);
}
.pv-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--off-white); margin-bottom: 4px; }
.pv-rating { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }
.pv-rating span { color: var(--text-secondary); font-size: 0.75rem; margin-left: 4px; }
.pv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pv-field { background: var(--dark2); border: 1px solid var(--border-light); border-radius: 6px; padding: 8px 10px; }
.pvf-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.pvf-val { font-size: 0.78rem; font-weight: 600; color: var(--off-white); }

/* Notes list */
.notes-list { padding: 12px 20px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.note-card {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px;
}
.note-card.featured { border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); }
.nc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.nc-cigar-name { font-size: 0.82rem; font-weight: 700; color: var(--off-white); }
.nc-date { font-size: 0.65rem; color: var(--text-muted); }
.nc-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.nc-stars { color: var(--gold); font-size: 0.8rem; }
.nc-pts { font-size: 0.72rem; font-weight: 700; color: var(--gold); }
.nc-notes { font-size: 0.75rem; color: var(--text-secondary); line-height: 1.55; font-style: italic; margin-bottom: 8px; }
.nc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.nct { background: var(--dark3); border: 1px solid var(--border-light); color: var(--text-muted); font-size: 0.62rem; padding: 3px 8px; border-radius: 100px; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 50%),
    var(--charcoal);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.pt-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.pt-label.active-label { color: var(--gold); font-weight: 600; }
.pt-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.pt-switch input { opacity: 0; width: 0; height: 0; }
.pt-slider {
  position: absolute;
  inset: 0;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.pt-slider::before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: var(--gold);
  border-radius: 50%;
  transition: all 0.3s;
}
.pt-switch input:checked + .pt-slider::before { transform: translateX(20px); }
.save-badge {
  background: rgba(74,140,92,0.15);
  color: #6abf80;
  border: 1px solid rgba(74,140,92,0.25);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 4px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.featured-plan {
  border-color: rgba(201,168,76,0.35);
  background: linear-gradient(180deg, rgba(201,168,76,0.05) 0%, var(--dark2) 30%);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.1), 0 20px 60px rgba(0,0,0,0.3), var(--shadow-gold);
}
.premium-plan {
  border-color: rgba(92,65,48,0.4);
  background: linear-gradient(180deg, rgba(92,65,48,0.12) 0%, var(--dark2) 30%);
}
.pc-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 16px;
}
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.pc-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}
.pc-period { font-size: 0.9rem; color: var(--text-muted); }
.pc-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.pc-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.pc-features li i { font-size: 0.72rem; width: 16px; text-align: center; }
.pc-features li i.fa-check { color: var(--green); }
.pc-features li.disabled { opacity: 0.5; }
.pc-features li.disabled i.fa-times { color: var(--text-muted); }
.pc-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
}
.pc-btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}
.pc-btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.05); }
.pc-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.pc-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }
.pc-btn-outline-gold {
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--gold);
}
.pc-btn-outline-gold:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testi-card {
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.featured-testi {
  grid-column: span 2;
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, var(--dark2) 40%);
}
.testi-quote { color: rgba(201,168,76,0.2); font-size: 1.5rem; margin-bottom: 12px; }
.testi-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.featured-testi .testi-text { font-size: 1rem; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, var(--gold), var(--amber)); }
.ta2 { background: linear-gradient(135deg, var(--mocha), var(--brown)); color: var(--cream); }
.ta3 { background: linear-gradient(135deg, var(--tan), var(--mocha)); color: var(--cream); }
.ta4 { background: linear-gradient(135deg, var(--amber), var(--gold-dark)); }
.ta5 { background: linear-gradient(135deg, #8b7355, var(--espresso)); color: var(--cream); }
.ta6 { background: linear-gradient(135deg, var(--gold-dark), var(--mocha)); color: var(--cream); }
.testi-info { flex: 1; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--off-white); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
.testi-stars { color: var(--gold); font-size: 0.75rem; white-space: nowrap; margin-left: auto; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 100px 0;
  background: var(--charcoal);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
  background: var(--dark2);
}
.faq-question:hover { background: var(--dark3); }
.faq-question span { font-size: 0.95rem; font-weight: 600; color: var(--off-white); }
.faq-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--dark);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 28px 22px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { padding-top: 16px; }
.faq-item.open .faq-answer p { padding-top: 0; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  position: relative;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(92,65,48,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    var(--dark3);
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a84c' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(212,137,42,0.1));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--off-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 36px; }
.cta-form { margin-bottom: 24px; }
.cta-form-row {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 12px;
}
.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--off-white);
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.3s;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.cta-submit { white-space: nowrap; flex-shrink: 0; font-family: var(--font-sans); border: none; }
.cta-form-note { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-form-note i { color: var(--gold); }
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.ctr-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.ctr-item i { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}
.footer-logo { margin-bottom: 16px; display: flex; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--dark2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-links-group h4 { font-size: 0.82rem; font-weight: 700; color: var(--off-white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links-group a:hover { color: var(--gold); }
.footer-newsletter h4 { font-size: 0.82rem; font-weight: 700; color: var(--off-white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-newsletter p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.footer-form { display: flex; gap: 8px; }
.footer-input {
  flex: 1;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-sans);
  transition: border-color 0.3s;
  min-width: 0;
}
.footer-input::placeholder { color: var(--text-muted); }
.footer-input:focus { border-color: var(--gold); }
.footer-submit {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border: none;
  border-radius: 6px;
  color: var(--black);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.footer-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.fb-right { display: flex; align-items: center; gap: 12px; }
.fb-right a { color: var(--text-muted); }
.fb-right a:hover { color: var(--gold); }

/* ============================================
   ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { order: 1; }
  .hero-mockup { order: 2; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-stats { display: flex; }
  .hero-logo-img { max-width: 420px; margin: 0 auto; }
  .problem-solution .container { grid-template-columns: 1fr; gap: 48px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 380px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .mockup-phone { display: none; }
  /* On tablet, tighten the hero overlay for readability */
  .hero-bg-overlay {
    background:
      linear-gradient(90deg, rgba(5,3,1,0.96) 0%, rgba(5,3,1,0.88) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.75) 100%);
  }
}

@media (max-width: 768px) {
  .navbar { background: rgba(10,8,4,0.97); backdrop-filter: blur(20px); }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,8,4,0.98); flex-direction: column; padding: 24px; gap: 4px; border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--border-light); }
  .nav-ctas .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary-lg, .hero-ctas .btn-outline-lg { width: 100%; justify-content: center; max-width: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testi { grid-column: span 1; }
  .steps-wrapper { padding-left: 0; }
  .step { grid-template-columns: 1fr; text-align: left; }
  .steps-line { display: none; }
  .step-num { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-form-row { flex-direction: column; }
  .cta-input, .cta-submit { width: 100%; }
  .trust-inner { gap: 4px; }
  .trust-divider { display: none; }
  .wc-back { display: none; }
  .why-card-stack { width: 100%; }
  .wc-card { position: relative; width: 100%; transform: none !important; }
  .why-visual { height: auto; flex-direction: column; gap: 16px; }
  .preview-tabs { gap: 2px; }
  .preview-tab { padding: 8px 12px; font-size: 0.78rem; }
  .app-screen { height: 400px; }
  .as-kpis { grid-template-columns: repeat(2,1fr); }
  .as-row { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .cta-trust-row { gap: 16px; }
  .testimonials-grid, .features-grid { gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .section-heading { font-size: 1.4rem; }
  .hero-stats { flex-direction: row; justify-content: space-around; }
  .stat-divider { display: none; }
  .hero-badge { font-size: 0.7rem; }
  .preview-tabs { justify-content: flex-start; overflow-x: auto; }
}
