/* ============================================
   Aldo Landing — "Le Bistrot Moderne"
   Warm cream backgrounds, burgundy accents
   Cormorant Garamond (display) + Outfit (body)
   ============================================ */

:root {
  --l-cream: #faf6f0;
  --l-cream-dark: #f0e8dc;
  --l-warm: #f5ede2;
  --l-burgundy: #722f37;
  --l-burgundy-light: #8c3a44;
  --l-burgundy-bg: rgba(114, 47, 55, 0.06);
  --l-gold: #b8860b;
  --l-gold-light: #d4a853;
  --l-text: #2c1810;
  --l-text-mid: #5a4336;
  --l-text-light: #8a7668;
  --l-border: rgba(44, 24, 16, 0.08);
  --l-card: #ffffff;
  --l-shadow: 0 2px 20px rgba(44, 24, 16, 0.06);
  --l-shadow-hover: 0 8px 40px rgba(44, 24, 16, 0.1);
  --l-radius: 16px;
}

[data-theme="light"] {
  --l-cream: #f5f0eb;
  --l-cream-dark: #ede6dd;
  --l-warm: #f9f5f0;
  --l-burgundy: #722f37;
  --l-burgundy-light: #8c3a44;
  --l-burgundy-bg: rgba(114, 47, 55, 0.08);
  --l-gold: #b8860b;
  --l-gold-light: #d4a853;
  --l-text: #2c1810;
  --l-text-mid: #5a4a3f;
  --l-text-light: #8a7a6f;
  --l-border: rgba(0, 0, 0, 0.08);
  --l-card: #ffffff;
  --l-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --l-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --l-radius: 16px;
}

.landing-body {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background: var(--l-cream);
  color: var(--l-text);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.1s !important; }
}

/* ============================================ NAV */

.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.landing-nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(44, 24, 16, 0.06);
}

.landing-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}

.landing-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.landing-logo-icon { font-size: 26px; }
.landing-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700;
  color: var(--l-burgundy);
}

.landing-nav-links { display: none; gap: 32px; }
.landing-nav-links a {
  color: var(--l-text-mid); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.landing-nav-links a:hover, .landing-nav-links a.active { color: var(--l-burgundy); }

.landing-nav-cta { display: none; gap: 16px; align-items: center; }
.btn-nav-login { color: var(--l-text-mid); text-decoration: none; font-size: 14px; font-weight: 500; }
.btn-nav-login:hover { color: var(--l-burgundy); }
.btn-nav-trial {
  background: var(--l-burgundy); color: #fff;
  padding: 10px 24px; border-radius: 50px; text-decoration: none;
  font-size: 14px; font-weight: 600; transition: all 0.25s;
}
.btn-nav-trial:hover { background: var(--l-burgundy-light); transform: translateY(-1px); box-shadow: var(--l-shadow); }

.landing-burger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.landing-burger span { width: 22px; height: 2px; background: var(--l-text); border-radius: 2px; transition: all 0.3s; }
.landing-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.landing-burger.open span:nth-child(2) { opacity: 0; }
.landing-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.landing-nav-links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--l-cream); padding: 24px; gap: 20px;
  border-bottom: 1px solid var(--l-border);
  box-shadow: var(--l-shadow);
}

/* Mobile nav login/trial links */
.mobile-nav-login, .mobile-nav-trial {
  display: none;
}
.landing-nav-links.open .mobile-nav-login,
.landing-nav-links.open .mobile-nav-trial {
  display: block;
  margin-top: 8px;
  padding: 12px 16px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.landing-nav-links.open .mobile-nav-login {
  color: var(--l-text);
  border: 1px solid var(--l-border);
}
.landing-nav-links.open .mobile-nav-trial {
  background: var(--l-burgundy);
  color: white;
}

@media (min-width: 768px) {
  .mobile-nav-login, .mobile-nav-trial { display: none !important; }
  .landing-nav-links { display: flex; }
  .landing-nav-cta { display: flex; }
  .landing-burger { display: none; }
}

/* ============================================ HERO */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 60px;
  max-width: 1140px; margin: 0 auto;
  gap: 48px;
}

.hero-content { flex: 1; }

.hero-kicker {
  font-size: 14px; font-weight: 600; color: var(--l-burgundy);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700; line-height: 1.1; margin-bottom: 24px;
  color: var(--l-text);
}

.hero-title em {
  font-style: italic; color: var(--l-burgundy);
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--l-text-mid); line-height: 1.7; margin-bottom: 36px;
  max-width: 520px;
}

.hero-subtitle strong { color: var(--l-burgundy); font-weight: 600; }

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--l-burgundy); color: #fff;
  padding: 16px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 600; font-family: 'Outfit', sans-serif;
  text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--l-burgundy-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(114, 47, 55, 0.2); }
.btn-large { padding: 20px 40px; font-size: 18px; }

.btn-secondary {
  color: var(--l-text-mid); padding: 16px 24px; font-size: 16px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--l-burgundy); }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
  font-size: 13px; color: var(--l-text-light);
}

.hero-proof span { white-space: nowrap; }

.hero-image {
  flex: 0 0 380px; display: none;
}

.hero-image img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 200px 200px 24px 24px;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
}

@media (min-width: 1024px) {
  .hero-image { display: block; }
}

/* Social proof bar removed — stats moved into hero-proof */

/* ============================================ SECTIONS */

.section { padding: 100px 24px; }
.section-alt { background: var(--l-warm); }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-narrow { max-width: 760px; }

.section-kicker {
  font-size: 13px; font-weight: 600; color: var(--l-burgundy);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700; line-height: 1.2; margin-bottom: 48px;
  color: var(--l-text);
}

/* ============================================ PROBLEM CARDS */

.problem-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 600px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }

.card-problem {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--l-shadow);
}
.card-problem:hover { transform: translateY(-4px); box-shadow: var(--l-shadow-hover); }

.card-emoji { font-size: 40px; display: block; margin-bottom: 16px; }
.card-problem h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--l-text);
}
.card-problem p { font-size: 15px; color: var(--l-text-mid); line-height: 1.7; }

.problem-cta {
  text-align: center; margin-top: 40px;
}

.problem-cta-text {
  font-size: 18px; color: var(--l-burgundy);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* ============================================ FEATURE CARDS */

.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.card-feature {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--l-shadow);
}
.card-feature:hover { transform: translateY(-4px); box-shadow: var(--l-shadow-hover); }

.feature-img-wrap { height: 180px; overflow: hidden; }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card-feature:hover .feature-img-wrap img { transform: scale(1.04); }

.feature-body { padding: 24px; }

/* Phone mockup — analyse d'étiquette */
.feature-mock-photo {
  background: linear-gradient(135deg, #1a1520, #2d1f35);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.mock-phone {
  width: 160px; background: #0d0a0e;
  border-radius: 20px; border: 3px solid rgba(255,255,255,0.1);
  padding: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.mock-phone-screen { text-align: center; color: #f0e6f0; }

.mock-phone-header {
  font-size: 11px; color: #4caf50;
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-phone-result {
  font-size: 11px; line-height: 1.8;
  text-align: left;
}

.mock-phone-result strong { color: #d4a853; font-size: 13px; }
.mock-phone-result span { color: rgba(255,255,255,0.6); }

/* Invoice mockup — facture vers cave */
.feature-mock-invoice {
  background: linear-gradient(135deg, #f8f4ee, #efe8dc);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}

.mock-invoice {
  width: 100%; max-width: 280px;
  background: #fff; border-radius: 8px;
  padding: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  font-size: 12px;
}

.mock-inv-header {
  font-weight: 700; color: var(--l-text);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px dashed var(--l-border);
}

.mock-inv-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; color: var(--l-text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.mock-inv-line span:last-child { color: #4caf50; font-weight: 600; }

.mock-inv-total {
  margin-top: 8px; padding-top: 8px;
  border-top: 1px dashed var(--l-border);
  font-weight: 700; color: #4caf50; text-align: center;
}

/* Mini dashboard mockup inside feature card */
.feature-dashboard-mock {
  background: #1a1520;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}

.mini-dash { width: 100%; }

.mini-dash-kpis {
  display: flex; gap: 8px; margin-bottom: 12px;
}

.mini-kpi {
  flex: 1; background: rgba(255,255,255,0.05);
  border-radius: 8px; padding: 8px; text-align: center;
}

.mini-kpi-val {
  display: block; font-size: 16px; font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: #d4a853;
}

.mini-kpi-green .mini-kpi-val { color: #4caf50; }

.mini-kpi-lab {
  display: block; font-size: 8px; color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.mini-dash-bars {
  display: flex; flex-direction: column; gap: 6px;
}

.mini-bar {
  display: flex; align-items: center; gap: 6px;
}

.mini-bar span {
  font-size: 9px; color: rgba(255,255,255,0.5);
  min-width: 36px; text-align: right;
}

.mini-bar-track {
  flex: 1; height: 12px; background: rgba(255,255,255,0.05);
  border-radius: 3px; overflow: hidden;
}

.mini-bar-fill { height: 100%; border-radius: 3px; }
.feature-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--l-text); }
.feature-body p { font-size: 14px; color: var(--l-text-mid); line-height: 1.7; }

/* ============================================ STEPS */

.steps-row {
  display: flex; flex-direction: column; gap: 20px; align-items: center;
}

.step-card {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); padding: 32px; text-align: center;
  max-width: 320px; width: 100%; box-shadow: var(--l-shadow);
  position: relative;
}

.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--l-burgundy); color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.step-emoji { font-size: 48px; margin: 8px 0 16px; }
.step-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--l-text-mid); line-height: 1.7; }

.step-arrow {
  display: none; font-size: 28px; color: var(--l-burgundy); font-weight: 300;
}

@media (min-width: 1024px) {
  .steps-row { flex-direction: row; justify-content: center; gap: 24px; }
  .step-arrow { display: block; padding-top: 20px; }
}

/* ============================================ DEMO */

.demo-tabs { display: flex; gap: 8px; margin-bottom: 24px; justify-content: center; flex-wrap: wrap; }
.demo-tab {
  background: var(--l-card); border: 1px solid var(--l-border);
  color: var(--l-text-mid); padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.demo-tab.active { background: var(--l-burgundy); border-color: var(--l-burgundy); color: #fff; }
.demo-tab:hover:not(.active) { border-color: var(--l-burgundy); color: var(--l-burgundy); }

.demo-window {
  background: #1a1520; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(44, 24, 16, 0.2);
  max-width: 800px; margin: 0 auto;
}

.demo-titlebar {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  background: #221c2a; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #ffbd2e; } .dot-g { background: #28c840; }
.demo-titlebar-text { margin-left: 12px; font-size: 12px; color: rgba(255, 255, 255, 0.4); }

.demo-screen { padding: 24px; min-height: 260px; color: #f0e6f0; }

.demo-chat { display: flex; flex-direction: column; gap: 14px; }
.demo-bubble { display: flex; gap: 10px; max-width: 88%; }
.demo-aldo { align-self: flex-start; }
.demo-user { align-self: flex-end; flex-direction: row-reverse; }
.demo-av { font-size: 18px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-msg {
  background: rgba(255, 255, 255, 0.06); padding: 12px 16px; border-radius: 14px;
  font-size: 13px; line-height: 1.6;
}
.demo-user .demo-msg { background: var(--l-burgundy); border-radius: 14px 14px 4px 14px; }
.demo-aldo .demo-msg { border-radius: 14px 14px 14px 4px; }

/* Demo cave & dashboard mockups use the same dark theme as the real app */
.demo-cave-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.demo-bottle { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px; position: relative; }
.demo-bottle::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; border-radius: 10px 0 0 10px; }
.demo-bottle.rouge::before { background: #9b2335; }
.demo-bottle.blanc::before { background: #e8d88c; }
.demo-bottle-name { font-size: 12px; font-weight: 600; margin-bottom: 3px; }
.demo-bottle-detail { font-size: 10px; color: rgba(255,255,255,0.4); }

/* Dashboard mockup */
.demo-dash { display: flex; flex-direction: column; gap: 12px; }
.demo-dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (min-width: 600px) { .demo-dash-kpis { grid-template-columns: repeat(6, 1fr); } }
.demo-kpi { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 10px 6px; text-align: center; }
.demo-kpi-val { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: #d4a853; }
.demo-kpi-gain .demo-kpi-val { color: #4caf50; }
.demo-kpi-label { font-size: 8px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.demo-dash-row { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 600px) { .demo-dash-row { grid-template-columns: 1fr 1fr; } }
.demo-dash-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; }
.demo-dash-title { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.demo-bar-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.demo-bar-label { font-size: 9px; color: rgba(255,255,255,0.5); min-width: 55px; text-align: right; }
.demo-bar-track { flex: 1; height: 14px; background: rgba(255,255,255,0.03); border-radius: 4px; overflow: hidden; }
.demo-bar-fill { height: 100%; border-radius: 4px; }
.demo-bar-val { font-size: 9px; color: rgba(255,255,255,0.35); min-width: 20px; text-align: right; }
.demo-top-item { display: flex; align-items: center; gap: 6px; padding: 4px 0; font-size: 10px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.demo-top-item:last-child { border: none; }
.demo-top-rank { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: #d4a853; min-width: 14px; }
.demo-top-name { flex: 1; color: #f0e6f0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-top-price { color: #d4a853; font-weight: 600; white-space: nowrap; }
.demo-alert { font-size: 10px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.03); color: rgba(255,255,255,0.6); }
.demo-alert:last-child { border: none; }
.demo-alert-urgent { color: #f44336; }
.demo-alert-ending { color: #ff9800; }
.demo-alert-peak { color: #4caf50; }
.demo-alert-soon { color: #d4a853; }

/* ============================================ MOMENTS */

.moments-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .moments-grid { grid-template-columns: repeat(4, 1fr); } }

.moment-card {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--l-shadow);
}
.moment-card:hover { transform: translateY(-4px); box-shadow: var(--l-shadow-hover); }
.moment-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.moment-card:hover img { transform: scale(1.04); }

.moment-visual {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; letter-spacing: 8px;
  background: linear-gradient(135deg, var(--l-cream-dark), var(--l-warm));
}

.moment-body { padding: 20px; }
.moment-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.moment-quote { font-size: 14px; color: var(--l-text-light); font-style: italic; margin-bottom: 12px; }
.moment-answer { font-size: 14px; color: var(--l-burgundy); font-weight: 600; }

/* ============================================ PRICING */

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto; align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); padding: 36px 28px; text-align: center;
  position: relative; box-shadow: var(--l-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--l-shadow-hover); }

.pricing-pop {
  border-color: var(--l-burgundy); border-width: 2px;
  box-shadow: 0 8px 40px rgba(114, 47, 55, 0.1);
}
@media (min-width: 768px) { .pricing-pop { transform: scale(1.05); } .pricing-pop:hover { transform: scale(1.05) translateY(-4px); } }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--l-burgundy); color: #fff;
  padding: 5px 20px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}

.pricing-name { font-size: 16px; font-weight: 600; color: var(--l-text-mid); margin-bottom: 16px; }
.price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; color: var(--l-text);
}
.price-period { font-size: 16px; color: var(--l-text-light); }

.pricing-list { list-style: none; text-align: left; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-list li { font-size: 14px; color: var(--l-text-mid); }

.btn-pricing {
  display: block; padding: 13px 24px; border-radius: 50px; text-decoration: none;
  font-size: 14px; font-weight: 600; text-align: center;
  border: 1px solid var(--l-border); color: var(--l-text-mid); transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-pricing:hover { border-color: var(--l-burgundy); color: var(--l-burgundy); }
.btn-pricing-main { background: var(--l-burgundy); border-color: var(--l-burgundy); color: #fff; }
.btn-pricing-main:hover { background: var(--l-burgundy-light); border-color: var(--l-burgundy-light); color: #fff; }

/* ============================================ TESTIMONIALS */

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: var(--l-radius); padding: 28px;
  box-shadow: var(--l-shadow);
}

.testi-stars { color: var(--l-gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--l-text-mid); line-height: 1.7; margin-bottom: 20px; }
.testimonial-card em { color: var(--l-burgundy); font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--l-burgundy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
}

.testi-photo {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--l-cream-dark);
}
.testi-author strong { font-size: 14px; color: var(--l-text); }
.testi-author span { font-size: 12px; color: var(--l-text-light); }

/* ============================================ FAQ */

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--l-card); border: 1px solid var(--l-border);
  border-radius: 12px; overflow: hidden; box-shadow: var(--l-shadow);
}
.faq-item[open] { border-color: var(--l-burgundy); }

.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--l-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; color: var(--l-burgundy); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; font-size: 14px; color: var(--l-text-mid); line-height: 1.8; }

/* ============================================ FINAL CTA */

.section-cta-final {
  padding: 120px 24px;
  background: var(--l-burgundy);
  color: #fff;
}

.cta-final-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; margin-bottom: 16px; line-height: 1.2;
  color: #fff;
}
.cta-final-title em { font-style: italic; color: var(--l-gold-light); }
.cta-final-sub { font-size: 18px; color: rgba(255, 255, 255, 0.7); margin-bottom: 36px; }

.section-cta-final .btn-primary {
  background: #fff; color: var(--l-burgundy);
}
.section-cta-final .btn-primary:hover { background: var(--l-cream); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }

/* ============================================ FOOTER */

.landing-footer {
  border-top: 1px solid var(--l-border);
  padding: 48px 24px 24px;
  background: var(--l-cream-dark);
}

.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 32px;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--l-burgundy); margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: var(--l-text-light); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--l-text-mid); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--l-text-light); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--l-burgundy); }

.footer-bottom {
  max-width: 1140px; margin: 32px auto 0; padding-top: 16px;
  border-top: 1px solid var(--l-border); text-align: center;
}
.footer-bottom p { font-size: 11px; color: var(--l-text-light); margin-bottom: 4px; }

/* ============================================ SCROLL REVEAL */

[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* Language selector for landing */
.landing-lang-selector {
  position: relative;
}

.landing-lang-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.landing-lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.landing-lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--l-card);
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 160px;
  box-shadow: var(--l-shadow);
  z-index: 200;
}

.landing-lang-dropdown.open {
  display: block;
}

.landing-lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: var(--l-text-mid);
  text-decoration: none;
  font-size: 14px;
}

.landing-lang-dropdown a:hover {
  background: var(--l-warm);
  color: var(--l-burgundy);
}
