/* ==========================================
   VIGUEUR ACTIVE — LANDING PAGE STYLESHEET
   ========================================== */

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

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

body {
  font-family: "Source Sans 3", sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: "Source Sans 3", sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { font-size: 1.4rem; color: #4b5563; }

/* ---------- LOGO ---------- */
.logo-bold { font-family: "Source Sans 3", sans-serif; font-weight: 900; color: #c2410c; font-size: 1.6rem; }
.logo-light { font-family: "Source Sans 3", sans-serif; font-weight: 700; color: #1a1a2e; font-size: 1.6rem; }

/* ---------- LANGUAGE SIDEBAR ---------- */
.lang-sidebar {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  border-radius: 50px;
  padding: 8px 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
}

.lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 40px;
  transition: all 0.2s;
  font-family: "Source Sans 3", sans-serif;
}
.lang-btn:hover, .lang-btn.active { background: #fff4e6; }
.lang-btn .flag { font-size: 1.4rem; line-height: 1; }
.lang-btn .lang-label { font-size: 0.6rem; font-weight: 700; color: #6b7280; letter-spacing: 0.05em; }
.lang-btn.active .lang-label { color: #c2410c; }

/* ---------- SECTION BASE ---------- */
.section-white { background: #fff; padding: 80px 0; }
.section-alt { background: #fafafa; padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: #1a1a2e; margin-bottom: 12px; }
.section-header h2.white { color: #fff; }
.section-sub { color: #6b7280; font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: #fff4e6;
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: #fed7aa; }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: #fed7aa; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(194,65,12,0.35);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,65,12,0.45);
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.mt-6 { margin-top: 24px; }

/* ---------- HERO ---------- */
.hero-section {
  background: #fff
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(234,88,12,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(99,102,241,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(234,88,12,0.2);
  border: 1px solid rgba(234,88,12,0.4);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-headline { color: #fff; margin-bottom: 16px; }
.hero-sub { color: #cbd5e1; font-size: 1.1rem; margin-bottom: 24px; max-width: 480px; }
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-bullets span {
  color: #e2e8f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bullets .fa-check-circle { color: #f97316; font-size: 0.9rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-guarantee { color: #94a3b8; font-size: 0.85rem; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(234,88,12,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-product-img {
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ---------- BENEFITS GRID ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: #fdba74;
}
.benefit-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.benefit-card h3 { margin-bottom: 10px; color: #1a1a2e; }
.benefit-card p { font-size: 0.9rem; color: #6b7280; }

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-text .section-tag { display: inline-block; }
.two-col-text h2 { margin: 12px 0 16px; color: #1a1a2e; }
.two-col-text p { margin-bottom: 14px; }

.img-frame {
  background: linear-gradient(135deg, #fff4e6, #fed7aa20);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid #ffe4c4;
}
.img-frame img { border-radius: 12px; }
.facts-frame { padding: 16px; background: #f8fafc; border-color: #e2e8f0; }

.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.check-list li:last-child { border-bottom: none; }
.check-list .fa-check { color: #22c55e; font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }

/* ---------- STEPS ---------- */
.steps-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.step-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.step-number {
  font-family: "Source Sans 3", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffe4c4;
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #fff4e6, #ffe4c4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #c2410c;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 10px; color: #1a1a2e; }
.step-card p { font-size: 0.9rem; color: #6b7280; }
.step-divider {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #d1d5db;
  font-size: 1.2rem;
}

/* ---------- REVIEWS ---------- */
.section-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.09); }
.review-card.featured {
  background: rgba(234,88,12,0.15);
  border-color: rgba(234,88,12,0.4);
}
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; }
.review-text { color: #e2e8f0; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.reviewer strong { display: block; color: #fff; font-size: 0.95rem; }
.reviewer span { color: #94a3b8; font-size: 0.8rem; }

.reviews-summary {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.rating-big { font-family: "Source Sans 3", sans-serif; font-size: 4rem; font-weight: 900; color: #fff; line-height: 1; }
.rating-stars-big { color: #fbbf24; font-size: 1.8rem; margin: 8px 0; }
.rating-note { color: #94a3b8; font-size: 0.9rem; }

/* ---------- PRICING ---------- */
.offer-banner {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(194,65,12,0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.price-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: relative;
}
.price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: #fdba74; }
.price-card.best-value {
  border-color: #ea580c;
  box-shadow: 0 8px 40px rgba(234,88,12,0.2);
  transform: scale(1.03);
}

.best-badge {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.price-card-inner h3 { color: #1a1a2e; font-size: 1.4rem; margin-bottom: 0; }
.supply { color: #6b7280; font-size: 0.85rem; }
.price-card-inner img { height: 140px; object-fit: contain; }
.price-main { font-family: "Source Sans 3", sans-serif; font-size: 2rem; font-weight: 900; color: #1a1a2e; }
.price-main span { font-size: 1.4rem; color: #6b7280; font-family: "Source Sans 3", sans-serif; font-weight: 400; }
.price-vat { font-size: 0.75rem; color: #9ca3af; }
.savings-badge {
  background: #f0fdf4;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.savings-badge.hot { background: #fff7ed; color: #c2410c; }
.price-total { font-size: 0.95rem; color: #374151; }
.price-total strong { color: #1a1a2e; }
.shipping-note { font-size: 0.8rem; color: #9ca3af; }
.shipping-note.free { color: #15803d; font-weight: 600; }

.btn-buy {
  display: block;
  width: 100%;
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  margin-top: 8px;
}
.btn-buy:hover { background: #0f3460; transform: translateY(-2px); }
.btn-buy.primary {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  box-shadow: 0 4px 20px rgba(194,65,12,0.4);
}
.btn-buy.primary:hover { box-shadow: 0 8px 28px rgba(194,65,12,0.5); }

.payment-trust {
  text-align: center;
  padding-top: 20px;
}
.payment-icons { height: 36px; margin: 0 auto 10px; opacity: 0.7; }
.payment-trust p { font-size: 0.85rem; color: #9ca3af; }
.payment-trust strong { color: #6b7280; }

/* ---------- INGREDIENTS ---------- */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: #fde68a; }
.ing-icon { font-size: 2rem; margin-bottom: 12px; }
.ing-card h4 { margin-bottom: 8px; color: #1a1a2e; font-size: 1.4rem; }
.ing-card p { font-size: 1.2rem; color: #6b7280; line-height: 1.6; }

/* ---------- BENEFITS LIST ---------- */
.benefits-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.ben-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ben-item:hover { border-color: #fdba74; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ben-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #fff4e6, #ffe4c4);
  color: #c2410c;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ben-item h4 { margin-bottom: 4px; color: #1a1a2e; }
.ben-item p { font-size: 1.2rem; color: #6b7280; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
  font-size:  1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: #fafafa; }
.faq-q .fa-chevron-down { flex-shrink: 0; color: #c2410c; transition: transform 0.3s; }
.faq-q.open .fa-chevron-down { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p { font-size:  1.2rem; color: #4b5563; line-height: 1.7; }
.faq-a a { color: #c2410c; font-weight: 600; }

/* ---------- GUARANTEE ---------- */
.guarantee-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-img { max-width: 200px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }
.guarantee-text h2 { color: #1a1a2e; margin-bottom: 16px; }
.guarantee-text .accent { color: #c2410c; }
.guarantee-text p { color: #4b5563; line-height: 1.8; }

/* ---------- FINAL CTA ---------- */
.section-cta-final {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-final h2 { color: #fff; margin-bottom: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-cta-final p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 28px; }
.final-cta-bullets {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.final-cta-bullets span {
  color: #e2e8f0;
  font-size:  1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.final-cta-bullets .fa-check-circle { color: #4ade80; }
.btn-final-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 44px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(194,65,12,0.45);
  transition: all 0.3s;
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.btn-final-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 42px rgba(194,65,12,0.55);
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 32px rgba(194,65,12,0.45); }
  50% { box-shadow: 0 8px 44px rgba(234,88,12,0.65); }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #111827;
  padding: 48px 0;
  text-align: center;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-bold { color: #f97316; }
.footer-logo .logo-light { color: #e5e7eb; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a { color: #9ca3af; font-size: 1.2rem; transition: color 0.2s; }
.footer-links a:hover { color: #f97316; }
.footer-legal { color: #4b5563; font-size: 0.78rem; max-width: 780px; margin: 0 auto 16px; line-height: 1.7; }
.footer-copy { color: #374151; font-size: 0.8rem; }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  padding: 12px 16px;
  background: rgba(17,24,39,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(194,65,12,0.4);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-bullets { align-items: center; }
  .hero-ctas { justify-content: center; }
  .hero-guarantee { text-align: center; }
  .hero-product-img { max-height: 300px; }

  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }

  .steps-wrap { flex-direction: column; }
  .step-divider { transform: rotate(90deg); display: none; }

  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .price-card.best-value { transform: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr; }
  .benefits-list-grid { grid-template-columns: 1fr; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img { margin: 0 auto; }
  .final-cta-bullets { flex-direction: column; align-items: center; gap: 10px; }

  .lang-sidebar { right: 8px; padding: 6px 4px; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  section { padding: 56px 0; }
  .section-white, .section-alt { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-ghost { display: none; }
}
.text-white{
  color: #000 !important;
}

.finalcta img {
    text-align: center;
    margin: 0 auto;
    max-width: 50%;
    height: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-bold {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #c2410c;
}
.nav-logo .logo-light {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1a1a2e;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: #374151;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover {
  background: #fff4e6;
  color: #c2410c;
}

.nav-cta {
  display: block;
  padding: 9px 20px;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(194,65,12,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,65,12,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 20px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .nav-cta { text-align: center; padding: 12px; margin-top: 4px; }
}