:root {
  --bg-deep: #0F0908;
  --bg-soft: #1A0F0D;
  --bg-card: rgba(28, 18, 16, 0.65);
  --bg-card-hover: rgba(38, 24, 21, 0.85);

  --red-bright: #DC2626;
  --red: #B91C1C;
  --red-deep: #7F1D1D;
  --orange-warm: #EA580C;

  --gold: #E5B947;
  --gold-bright: #F2C94C;
  --gold-deep: #B8860B;

  --cream: #FFF8E7;
  --cream-soft: #F4E5C2;

  --text-primary: #F8F1E7;
  --text-secondary: #C9B8A0;
  --text-muted: #8A7A65;
  --text-dim: #5A4D3E;

  --border-subtle: rgba(229, 185, 71, 0.12);
  --border-glow: rgba(229, 185, 71, 0.35);

  --glow-gold: 0 0 60px rgba(229, 185, 71, 0.25);
  --glow-red: 0 0 80px rgba(220, 38, 38, 0.35);
  --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.8);

  /* Brand colors GoFood/GrabFood */
  --gofood: #DC1818;
  --grabfood: #00B14F;
  --whatsapp: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

/* === ATMOSPHERIC BACKGROUND === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(220, 38, 38, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(234, 88, 12, 0.08), transparent 50%),
    linear-gradient(180deg, #0F0908 0%, #1A0F0D 50%, #0F0908 100%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 185, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 185, 71, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(229, 185, 71, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
}
.display-1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.display-2 {
  font-size: clamp(36px, 5vw, 64px);
}
.display-2 em { color: var(--gold); font-style: italic; }

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: white;
  box-shadow: 0 8px 32px -8px rgba(220, 38, 38, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(220, 38, 38, 0.7), var(--glow-red);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1A0F0D;
  box-shadow: 0 8px 32px -8px rgba(229, 185, 71, 0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(229, 185, 71, 0.7), var(--glow-gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-glow);
}

.promo-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 38px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--gold-deep));
  color: white;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.promo-strip span {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}
.promo-strip strong { color: var(--cream); }

/* === NAVBAR === */
.nav {
  position: fixed;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 100;
  background: rgba(15, 9, 8, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(15, 9, 8, 0.92);
  border-color: var(--border-glow);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-brand em { font-style: italic; color: var(--text-primary); }

.nav-menu {
  display: flex;
  gap: 18px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold); }

.nav-cta {
  padding: 8px 18px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  .promo-strip {
    min-height: 44px;
    padding: 7px 12px;
    font-size: 12px;
  }
  .promo-strip strong { display: none; }
  .nav {
    top: 54px;
    padding: 10px 14px;
  }
  .nav-brand { font-size: 20px; }
  .nav-cta {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 170px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent 60%);
  filter: blur(80px);
  top: -200px;
  right: -300px;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 185, 71, 0.18), transparent 60%);
  filter: blur(80px);
  bottom: -200px;
  left: -200px;
  z-index: 0;
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -40px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Hero visual - dimsum SVG */
.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dimsum-main {
  width: 380px;
  filter: drop-shadow(0 20px 40px rgba(229, 185, 71, 0.3))
          drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  transform: translateY(0);
}

.hero-dimsum-small {
  position: absolute;
  width: 130px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}
.hero-dimsum-small.s1 {
  top: 40px;
  right: -10px;
  transform: rotate(15deg);
  animation: floatUp 6s ease-in-out infinite 1s;
}
.hero-dimsum-small.s2 {
  bottom: 30px;
  left: -10px;
  transform: rotate(-12deg);
  animation: floatUp 7s ease-in-out infinite 0.5s;
}
.hero-chopsticks {
  position: absolute;
  top: 78px;
  right: 42px;
  width: 260px;
  height: 110px;
  transform: rotate(-23deg);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
  pointer-events: none;
}
.hero-chopsticks span {
  position: absolute;
  right: 0;
  width: 260px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7A3E1D 0%, #C88945 42%, #F0C87A 100%);
  transform-origin: right center;
}
.hero-chopsticks span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 44px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.22);
}
.hero-chopsticks span:first-child {
  top: 34px;
  transform: rotate(-4deg);
}
.hero-chopsticks span:last-child {
  top: 64px;
  transform: rotate(4deg);
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}
.hero-dimsum-small.s1 { --r: 15deg; }
.hero-dimsum-small.s2 { --r: -12deg; }

@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 40px; }
  .hero-dimsum-main { width: 280px; }
  .hero-chopsticks {
    top: 56px;
    right: 80px;
    width: 210px;
  }
  .hero-chopsticks span { width: 210px; }
}
@media (max-width: 520px) {
  .hero-chopsticks {
    top: 72px;
    right: 28px;
    width: 170px;
  }
  .hero-chopsticks span { width: 170px; height: 10px; }
}

/* === SECTION === */
section { padding: 100px 0; position: relative; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
}

/* === BUYER PATHS === */
.path-section {
  padding-top: 80px;
}
.buyer-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.buyer-path {
  background: linear-gradient(145deg, rgba(28, 18, 16, 0.82), rgba(127, 29, 29, 0.24));
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.buyer-path:nth-child(2) {
  background: linear-gradient(145deg, rgba(229, 185, 71, 0.14), rgba(28, 18, 16, 0.82));
  border-color: rgba(229, 185, 71, 0.32);
}
.buyer-path:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}
.buyer-path-label {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 26px;
  box-shadow: 0 12px 30px -12px rgba(220, 38, 38, 0.7);
}
.buyer-path:nth-child(2) .buyer-path-label {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1A0F0D;
}
.buyer-path h3 {
  font-size: 34px;
  margin-bottom: 14px;
  color: var(--cream);
}
.buyer-path p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}
.buyer-path-highlight {
  margin-top: auto;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === TRUST BUILDER === */
.trust-section { padding-top: 40px; }
.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 42px;
  backdrop-filter: blur(20px);
}
.trust-copy p {
  color: var(--text-secondary);
  margin-top: 18px;
  max-width: 520px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-stat {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--bg-card);
}
.trust-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
}
.trust-stat span {
  display: block;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-stat p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 968px) {
  .buyer-paths,
  .trust-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .buyer-path,
  .trust-panel { padding: 26px; border-radius: 20px; }
  .buyer-path h3 { font-size: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* === REASONS === */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reason-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reason-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}
.reason-card:hover::before { opacity: 1; }
.reason-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px -8px rgba(220, 38, 38, 0.6);
}
.reason-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: rgba(229, 185, 71, 0.08);
  line-height: 1;
  pointer-events: none;
}
.reason-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.reason-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
@media (max-width: 968px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reasons { grid-template-columns: 1fr; } }

/* === PRODUCTS === */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-display {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.product-display:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.product-display.premium {
  border-color: rgba(229, 185, 71, 0.3);
  background: linear-gradient(135deg, rgba(229, 185, 71, 0.08) 0%, var(--bg-card) 100%);
}
.product-display.premium .product-badge {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1A0F0D;
}
.product-display.regular { border-color: rgba(220, 38, 38, 0.3); }
.product-display.regular .product-badge {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: white;
}
.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.product-svg-wrapper {
  width: 130px;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 20px rgba(229, 185, 71, 0.3));
}
.product-svg-wrapper svg { width: 100%; height: auto; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-tagline {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 14px;
}
.product-price-block {
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px dashed var(--border-subtle);
  border-bottom: 1px dashed var(--border-subtle);
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.product-price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}
.product-price-note {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 10px;
}
.product-special-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.11);
  border: 1px solid rgba(34, 197, 94, 0.28);
}
.product-special-price span {
  color: #86EFAC;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 800;
}
.product-special-price strong {
  color: #4ADE80;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1;
}
.product-b2b-note {
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(229, 185, 71, 0.08);
  border: 1px solid rgba(229, 185, 71, 0.18);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.product-features { list-style: none; }
.product-features li {
  padding: 8px 0 8px 28px;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
}
.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 768px) { .products { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .product-special-price {
    align-items: flex-start;
    flex-direction: column;
  }
}

.b2b-callout {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(229, 185, 71, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(229, 185, 71, 0.12), rgba(28, 18, 16, 0.78));
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  backdrop-filter: blur(20px);
}
.b2b-callout span {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 8px;
}
.b2b-callout h3 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 10px;
}
.b2b-callout p {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 14px;
}
.b2b-callout ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 14px;
}
.b2b-callout li {
  padding: 6px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 12px;
}
@media (max-width: 768px) {
  .b2b-callout { flex-direction: column; align-items: flex-start; }
}

/* === STRATEGIES === */
.strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.strategy {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
}
.strategy:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}
.strategy.featured {
  background: linear-gradient(180deg, rgba(229, 185, 71, 0.1) 0%, var(--bg-card) 100%);
  border-color: rgba(229, 185, 71, 0.3);
}
.strategy.featured::before {
  content: "★ POPULER";
  position: absolute;
  top: -10px; left: 20px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #1A0F0D;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.strategy-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 600;
}
.strategy-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.strategy-tag {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 16px;
}
.strategy-profit {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}
.strategy-profit-label {
  font-size: 10px;
  color: #86EFAC;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.strategy-profit-amount {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #4ADE80;
}
.strategy-profit-per { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.strategy-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.strategy-desc strong { color: var(--cream); font-weight: 600; }
@media (max-width: 968px) { .strategies { grid-template-columns: 1fr; } }

.sauce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.sauce-card {
  background: linear-gradient(135deg, rgba(229, 185, 71, 0.1), rgba(28, 18, 16, 0.78));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(20px);
}
.sauce-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 8px;
}
.sauce-card h3 {
  color: var(--cream);
  font-size: 26px;
  margin-bottom: 8px;
}
.sauce-card strong {
  display: block;
  color: #4ADE80;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
}
.sauce-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .sauce-grid { grid-template-columns: 1fr; }
}

/* === CALC === */
.calc-section {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.4), rgba(15, 9, 8, 0.6));
  border: 1px solid var(--border-subtle);
  border-radius: 32px;
  padding: 42px;
  text-align: left;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(229, 185, 71, 0.2), transparent 70%);
  border-radius: 50%;
}
.calc-hero,
.success-schemes,
.success-note,
.location-ideas,
.calc-note {
  position: relative;
  z-index: 1;
}
.calc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}
.calc-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 10px;
}
.calc-hero h3 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
}
.calc-hero p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 720px;
}
.calc-hero-number {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(22, 101, 52, 0.16));
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 18px 46px -30px rgba(34, 197, 94, 0.8);
}
.calc-hero-number span,
.calc-hero-number small {
  color: #86EFAC;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-weight: 800;
}
.calc-hero-number strong {
  display: block;
  color: #4ADE80;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1;
  margin: 12px 0;
}
.success-schemes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.success-card {
  min-width: 0;
  padding: 20px;
  border-radius: 20px;
  background: rgba(28, 18, 16, 0.74);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.success-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}
.success-card.best {
  background: linear-gradient(180deg, rgba(229, 185, 71, 0.16), rgba(28, 18, 16, 0.78));
  border-color: rgba(229, 185, 71, 0.42);
}
.success-pack {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 185, 71, 0.12);
  border: 1px solid rgba(229, 185, 71, 0.24);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 900;
  margin-bottom: 16px;
}
.success-card h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 10px;
}
.success-route {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(229, 185, 71, 0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}
.success-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.success-metrics div {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.success-metrics span,
.success-profit span,
.success-monthly span {
  display: block;
  color: var(--text-muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin-bottom: 4px;
}
.success-metrics strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.15;
}
.success-profit {
  padding: 13px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  margin-bottom: 8px;
}
.success-profit strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #4ADE80;
}
.success-monthly {
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(229, 185, 71, 0.12);
  border: 1px solid rgba(229, 185, 71, 0.24);
  margin-bottom: 12px;
}
.success-monthly strong {
  display: block;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1;
}
.success-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}
.success-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(229, 185, 71, 0.1);
  border: 1px solid rgba(229, 185, 71, 0.24);
  color: var(--text-secondary);
  font-size: 14px;
}
.success-note strong { color: var(--gold); }
.location-ideas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.location-ideas span {
  color: var(--cream);
  font-weight: 800;
  font-size: 13px;
}
.location-ideas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.location-ideas li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px;
}
.calc-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 1100px) {
  .success-schemes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .calc-section { padding: 28px 20px; border-radius: 24px; }
  .calc-hero,
  .success-schemes { grid-template-columns: 1fr; }
  .calc-hero-number { min-height: 150px; }
  .calc-hero-number strong { font-size: 42px; }
}

/* === PERSONA === */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.persona-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.persona-emoji { font-size: 42px; margin-bottom: 12px; display: block; }
.persona-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.persona-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
@media (max-width: 968px) { .personas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .personas { grid-template-columns: 1fr; } }

/* === DELIVERY APPS (GoFood + GrabFood) === */
.delivery-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.delivery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-color, transparent) 0%, transparent 50%);
  opacity: 0.1;
  transition: opacity 0.4s ease;
}
.delivery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px -10px var(--accent-shadow);
}
.delivery-card:hover::before { opacity: 0.2; }
.delivery-card.gofood { --accent-color: #DC1818; --accent-shadow: rgba(220, 24, 24, 0.3); }
.delivery-card.grabfood { --accent-color: #00B14F; --accent-shadow: rgba(0, 177, 79, 0.3); }
.delivery-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}
.delivery-card.gofood .delivery-icon {
  background: linear-gradient(135deg, #DC1818, #8B0000);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(220, 24, 24, 0.6);
}
.delivery-card.grabfood .delivery-icon {
  background: linear-gradient(135deg, #00B14F, #006D32);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(0, 177, 79, 0.6);
}
.delivery-info { flex: 1; }
.delivery-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.delivery-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.delivery-loc {
  font-size: 13px;
  color: var(--text-secondary);
}
.delivery-arrow {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.delivery-card:hover .delivery-arrow { transform: translateX(4px); }
@media (max-width: 768px) { .delivery-apps { grid-template-columns: 1fr; } }

/* === INSTAGRAM GALLERY === */
.gallery-section {
  overflow: hidden;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -28px 0 34px;
}
.gallery-filter {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: rgba(229, 185, 71, 0.12);
  border-color: var(--border-glow);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}
.gallery-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 20%, rgba(229, 185, 71, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(127, 29, 29, 0.55), rgba(15, 9, 8, 0.88));
  overflow: hidden;
}
.gallery-media img,
.gallery-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-media.is-placeholder {
  display: grid;
  place-items: center;
}
.gallery-placeholder-art {
  width: 58%;
  max-width: 190px;
  opacity: 0.9;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}
.gallery-placeholder-art svg {
  width: 100%;
  height: auto;
}
.gallery-type {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}
.gallery-body {
  padding: 20px;
}
.gallery-body span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 8px;
}
.gallery-body h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 8px;
}
.gallery-body p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}
.gallery-card[hidden] { display: none; }
@media (max-width: 968px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* === BONUS === */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bonus-tier {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bonus-tier:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-gold);
}
.bonus-tier.best {
  background: linear-gradient(135deg, rgba(229, 185, 71, 0.15) 0%, rgba(184, 134, 11, 0.25) 100%);
  border-color: rgba(229, 185, 71, 0.4);
}
.bonus-tier.best::before {
  content: "★ TERBAIK";
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #1A0F0D;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
.bonus-tier-pack {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.bonus-tier-pack small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  font-weight: 500;
}
.bonus-tier-divider { width: 30px; height: 2px; background: var(--gold); margin: 16px auto; }
.bonus-tier-prize {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.4;
}
.bonus-tier-prize small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}
@media (max-width: 968px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

/* === ORDER BUILDER === */
.order-section {
  padding-top: 70px;
}
.order-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.32), rgba(28, 18, 16, 0.76));
  padding: 44px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}
.order-panel::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 185, 71, 0.24), transparent 68%);
}
.order-copy,
.order-form {
  position: relative;
  z-index: 1;
}
.order-copy p {
  color: var(--text-secondary);
  margin-top: 16px;
}
.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.order-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 800;
}
.order-form input,
.order-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(15, 9, 8, 0.72);
  color: var(--cream);
  padding: 0 14px;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}
.order-form input:focus,
.order-form select:focus {
  border-color: var(--border-glow);
  box-shadow: 0 0 0 4px rgba(229, 185, 71, 0.08);
}
.order-products,
.order-addons,
.order-note {
  grid-column: 1 / -1;
}
.order-products,
.order-addons {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: rgba(15, 9, 8, 0.32);
}
.order-group-title {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 900;
}
.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(229, 185, 71, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}
.order-item-row strong {
  display: block;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.2;
}
.order-item-row span,
.order-item-row small {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
  letter-spacing: 0;
  text-transform: none;
}
.order-qty-field {
  min-width: 0;
}
.order-addon-check {
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
  min-width: 0;
  color: var(--text-primary) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.order-addon-check input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 0;
  accent-color: var(--gold);
}
.order-note {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #86EFAC;
  font-size: 13px;
  line-height: 1.4;
}
.order-note.is-error {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.32);
  color: #FCA5A5;
}
.order-submit {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 4px;
}
.order-submit.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
  filter: grayscale(0.5);
}
@media (max-width: 968px) {
  .order-panel { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .order-panel { padding: 26px; border-radius: 22px; }
  .order-form { grid-template-columns: 1fr; }
  .order-item-row { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-glow); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--cream);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* === CTA FINAL === */
.cta-final-section {
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.cta-final-card {
  background: linear-gradient(135deg, var(--red-deep), var(--red), var(--orange-warm));
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-red);
}
.cta-final-card::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229, 185, 71, 0.4), transparent 60%);
  border-radius: 50%;
}
.cta-final-card::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: white; margin-bottom: 20px; }
.cta-content h2 em { color: var(--gold-bright); }
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand em { color: var(--text-primary); font-style: italic; }
.footer-tagline {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-meta {
  color: var(--gold);
  font-size: 13px;
  margin-top: 14px;
  max-width: 360px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-content > div:first-child { grid-column: 1 / -1; }
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform 0.3s ease;
  animation: bounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
