/* =============================================
   BUONGUSTO.CLOUD — Style
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================= */

:root {
  --charcoal: #1a1512;
  --charcoal-soft: #2c2520;
  --cream: #f5f0e8;
  --cream-warm: #ede6d8;
  --terracotta: #c4593a;
  --terracotta-light: #d4694a;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --text-dark: #1a1512;
  --text-mid: #5a4f45;
  --text-light: #9a8f85;
  --white: #ffffff;
  --shadow: rgba(26,21,18,0.12);
  --shadow-deep: rgba(26,21,18,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.desktop-only { display: none; }
@media (min-width: 768px) { .desktop-only { display: inline; } }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--terracotta); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.04em;
  padding: 14px 32px; border-radius: 6px; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border: none; text-align: center;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 16px rgba(196,89,58,0.35);
}
.btn-primary:hover {
  background: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,89,58,0.4);
}
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,240,232,0.4);
}
.btn-ghost:hover { background: rgba(245,240,232,0.08); border-color: rgba(245,240,232,0.7); }
.btn-outline {
  background: transparent; color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }
.btn-demo {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.btn-demo:hover { background: var(--gold); color: var(--charcoal); }
.btn-demo.btn-full { margin-bottom: 12px; }
.btn-full { width: 100%; display: block; }

/* Floating demo CTA */
.floating-demo {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(200,169,110,0.35);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.floating-demo.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-demo:hover {
  background: #d4b87a;
  box-shadow: 0 6px 32px rgba(200,169,110,0.5);
}
@media (max-width: 600px) {
  .floating-demo {
    bottom: 20px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
.btn-large { font-size: 1.05rem; padding: 18px 44px; }

/* ============ LANGUAGE BAR ============ */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding: 7px 20px;
  background: #0f0d0b;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  height: 36px;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.5);
  background: transparent;
  border: 1px solid transparent;
  padding: 3px 10px; border-radius: 4px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  line-height: 1.4;
}
.lang-btn:hover { color: var(--gold); border-color: rgba(200,169,110,0.3); }
.lang-btn.active {
  color: var(--gold);
  border-color: rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.1);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(26,21,18,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow-deep);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 500; color: var(--cream);
  text-decoration: none;
}
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-icon { font-size: 1.3rem; }
.logo-dot { color: var(--gold); }

/* FOOTER LOGO FIX */
.logo-footer { color: var(--cream) !important; }
.logo-footer .logo-text { color: var(--cream); }
.logo-footer .logo-dot { color: var(--gold); }

.nav-cta {
  font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 500; color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 9px 22px; border-radius: 5px; letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; background: var(--charcoal);
  position: relative; display: flex; align-items: center;
  padding: 160px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(196,89,58,0.22), transparent 70%); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,169,110,0.15), transparent 70%); bottom: -80px; left: 10%; }

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; line-height: 1.1; color: var(--cream); margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: rgba(245,240,232,0.72); margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge { font-size: 0.8rem; color: rgba(245,240,232,0.5); display: flex; align-items: center; gap: 10px; letter-spacing: 0.03em; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); display: inline-block; animation: pulse 2.5s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* PHONE MOCKUP */
.hero-phone { position: absolute; right: max(5%, calc(50% - 540px)); top: 160px; bottom: 80px; display: none; align-items: center; z-index: 2; }
@media (min-width: 900px) { .hero-phone { display: flex; } }

.phone-mockup {
  width: 240px; background: var(--charcoal-soft);
  border: 2px solid rgba(200,169,110,0.25); border-radius: 36px;
  padding: 20px 12px 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 70px; height: 18px; background: var(--charcoal); border-radius: 10px; }
.phone-screen { font-size: 0.75rem; }
.phone-header { background: var(--terracotta); margin: 0 -12px; margin-top: 8px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center; color: white; }
.phone-rest-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.phone-table { font-size: 0.68rem; opacity: 0.85; }
.phone-menu { padding: 10px 4px; }
.phone-category { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 10px 0 6px; }
.phone-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(245,240,232,0.06); }
.phone-item-info { display: flex; flex-direction: column; gap: 2px; }
.phone-item-name { color: var(--cream); font-size: 0.72rem; }
.phone-item-price { color: var(--gold); font-size: 0.65rem; }
.phone-item-tag { font-size: 0.6rem; color: var(--text-light); background: rgba(154,143,133,0.15); padding: 1px 6px; border-radius: 3px; display: inline-block; }
.phone-item-oos .phone-item-name { opacity: 0.4; text-decoration: line-through; }
.phone-add { width: 22px; height: 22px; background: var(--terracotta); color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.phone-waiter-btn { margin: 10px -4px 0; background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.3); color: var(--gold-light); text-align: center; padding: 8px; border-radius: 8px; font-size: 0.68rem; cursor: pointer; }

/* ============ PROBLEM ============ */
.problem { padding: 100px 0; background: var(--cream); }
.pain-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 60px; }
@media (min-width: 600px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }
.pain-card { background: var(--white); border: 1px solid rgba(26,21,18,0.08); border-radius: var(--radius); padding: 28px 24px; transition: transform var(--transition), box-shadow var(--transition); }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow); }
.pain-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.pain-card p { font-size: 0.925rem; color: var(--text-mid); line-height: 1.65; }
.pain-card strong { color: var(--charcoal); }
.problem-solution { text-align: center; padding: 48px 24px; position: relative; }
.solution-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--terracotta)); margin: 0 auto 24px; }
.solution-text { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--charcoal); line-height: 1.5; }

/* ============ HOSTING REASSURANCE ============ */
.hosting { padding: 60px 0; background: var(--charcoal-soft); }
.hosting-inner {
  display: flex; gap: 32px; align-items: flex-start;
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
@media (max-width: 600px) { .hosting-inner { flex-direction: column; } }
.hosting-icon { font-size: 2.5rem; flex-shrink: 0; }
.hosting-content h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 500; color: var(--cream); margin-bottom: 12px;
}
.hosting-content p { font-size: 0.95rem; color: rgba(245,240,232,0.65); line-height: 1.75; }

/* ============ HOW IT WORKS ============ */
.how { padding: 100px 0; position: relative; overflow: hidden; }
.how-bg { position: absolute; inset: 0; background: var(--charcoal); }
.how .section-label { color: var(--gold); }
.how .section-title { color: var(--cream); }
.how .section-title em { color: var(--gold); }
.how .container { position: relative; z-index: 1; }
.steps { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 900px) { .steps { flex-direction: row; align-items: stretch; gap: 0; } }
.step { flex: 1; background: rgba(245,240,232,0.04); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius); padding: 32px 24px; transition: background var(--transition), border-color var(--transition); }
.step:hover { background: rgba(245,240,232,0.07); border-color: rgba(200,169,110,0.35); }
.step-number { font-family: var(--font-display); font-size: 2.5rem; color: rgba(200,169,110,0.2); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 1.6rem; margin-bottom: 14px; }
.step h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--cream); margin-bottom: 10px; line-height: 1.3; }
.step p { font-size: 0.875rem; color: rgba(245,240,232,0.55); line-height: 1.7; }
.step p em { color: var(--gold-light); font-style: normal; }
.step-arrow { display: none; color: rgba(200,169,110,0.35); font-size: 1.4rem; padding: 0 8px; align-self: center; flex-shrink: 0; }
@media (min-width: 900px) { .step-arrow { display: block; } }

/* ============ FEATURES ============ */
.features { padding: 100px 0; background: var(--cream-warm); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--white); border: 1px solid rgba(26,21,18,0.07); border-radius: var(--radius); padding: 32px 24px; transition: transform var(--transition), box-shadow var(--transition); }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px var(--shadow); }
.feature-card-large { grid-column: 1 / -1; background: var(--charcoal); color: var(--cream); padding: 48px 40px; display: flex; flex-direction: column; }
@media (min-width: 900px) { .feature-card-large { flex-direction: row; align-items: flex-start; gap: 32px; } .feature-card-large .feature-icon { font-size: 3rem; flex-shrink: 0; } }
/* Centre the lone orphan card in the last row (8th card = index 8, which is position 2 in a 3-col grid after the full-width card) */
@media (min-width: 900px) {
  .feature-card:last-child:nth-child(3n + 2) { grid-column: 2 / 3; }
}
.feature-icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; color: var(--charcoal); }
.feature-card-large h3 { color: var(--cream); font-size: 1.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.feature-card-large p { color: rgba(245,240,232,0.65); }
.feature-card-large p em { color: var(--gold-light); font-style: normal; }

/* ============ PRICING ============ */
.pricing { padding: 100px 0; position: relative; }
.pricing-bg { position: absolute; inset: 0; background: var(--charcoal-soft); }
.pricing .section-label { color: var(--gold); }
.pricing .section-title { color: var(--cream); }
.pricing .container { position: relative; z-index: 1; }

.pricing-intro {
  font-size: 1rem; color: rgba(245,240,232,0.6);
  max-width: 620px; line-height: 1.7;
  margin-top: -28px; margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 700px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }

.pricing-card {
  background: rgba(245,240,232,0.09);
  border: 1px solid rgba(200,169,110,0.28);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: rgba(245,240,232,0.13);
  border-color: rgba(200,169,110,0.55);
  box-shadow: 0 0 0 1px rgba(200,169,110,0.18), 0 24px 48px rgba(0,0,0,0.3);
}
.pricing-card-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.pricing-popular-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 4px 12px; border-radius: 99px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--cream); margin-bottom: 10px;
}

.pricing-plan-desc {
  font-size: 0.875rem; color: rgba(245,240,232,0.7);
  line-height: 1.65; margin-bottom: 28px;
}

.pricing-setup {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.pricing-setup-label { font-size: 0.75rem; color: rgba(245,240,232,0.7); letter-spacing: 0.05em; }
.pricing-setup-amount { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }

.pricing-amount { display: flex; align-items: flex-start; gap: 4px; color: var(--cream); }
.pricing-currency { font-family: var(--font-display); font-size: 1.8rem; margin-top: 10px; color: var(--gold); }
.pricing-number { font-family: var(--font-display); font-size: 5rem; line-height: 1; font-weight: 300; }
.pricing-period { font-size: 1.1rem; color: rgba(245,240,232,0.65); align-self: flex-end; padding-bottom: 12px; }
.pricing-sub { font-size: 0.8rem; color: rgba(245,240,232,0.55); margin-top: 6px; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }

.pricing-free-months { margin-bottom: 24px; }
.free-badge {
  display: inline-block;
  font-size: 0.78rem; font-weight: 500;
  color: #e8846a;
  background: rgba(196,89,58,0.18);
  border: 1px solid rgba(196,89,58,0.35);
  padding: 5px 14px; border-radius: 99px;
}

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
.pricing-list li { font-size: 0.9rem; color: rgba(245,240,232,0.85); }

.pricing-note { font-size: 0.78rem; color: rgba(245,240,232,0.45); margin-top: 14px; text-align: center; }

/* ============ CTA SECTION ============ */
.cta-section { padding: 120px 0; background: var(--cream); text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-ornament { font-size: 1.5rem; color: var(--gold); margin-bottom: 24px; display: block; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; color: var(--charcoal); line-height: 1.2; margin-bottom: 20px; }
.cta-section h2 em { font-style: italic; color: var(--terracotta); }
.cta-section p { font-size: 1rem; color: var(--text-mid); margin-bottom: 40px; }

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: var(--cream-warm); }
.contact-sub { font-size: 1rem; color: var(--text-mid); margin-top: -28px; margin-bottom: 28px; }
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 4px;
  margin-bottom: 48px;
  color: #25D366;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.06);
  padding: 10px 20px; border-radius: 99px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.whatsapp-link:hover {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.6);
  transform: translateY(-2px);
}
.contact-form { max-width: 680px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); }
.required-star { color: var(--terracotta); font-weight: 700; }
.optional-hint { font-size: 0.72rem; font-weight: 400; color: var(--text-light); letter-spacing: 0.03em; text-transform: none; }
.form-group input, .form-group textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal); background: var(--white); border: 1.5px solid rgba(26,21,18,0.12); border-radius: 8px; padding: 13px 16px; transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(196,89,58,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input.error, .form-group textarea.error { border-color: #e05252; box-shadow: 0 0 0 3px rgba(224,82,82,0.12); background: rgba(224,82,82,0.03); }
.form-group .error-msg { font-size: 0.75rem; color: #e05252; margin-top: -4px; display: none; }
.form-group input.error ~ .error-msg, .form-group textarea.error ~ .error-msg { display: block; }

/* ============ FOOTER ============ */
.footer { background: var(--charcoal); padding: 36px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-size: 0.8rem; color: rgba(245,240,232,0.55); }
.footer-email { font-size: 0.85rem; color: var(--gold); transition: color var(--transition); }
.footer-email:hover { color: var(--gold-light); }

/* Footer logo — force light text on dark background */
.logo-footer,
.logo-footer .logo-text { color: var(--cream) !important; }
.logo-footer .logo-dot { color: var(--gold) !important; }

/* ============ MODAL ============ */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,21,18,0.8); backdrop-filter: blur(8px); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--cream); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 400px; width: 100%; text-align: center; transform: scale(0.9) translateY(20px); transition: transform 0.35s ease; }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-icon { font-size: 3rem; margin-bottom: 20px; }
.modal h3 { font-family: var(--font-display); font-size: 2rem; color: var(--charcoal); margin-bottom: 12px; }
.modal p { color: var(--text-mid); margin-bottom: 28px; line-height: 1.65; }

/* ---- STAGGER DELAYS ---- */
.pain-card:nth-child(1) { transition-delay: 0s; }
.pain-card:nth-child(2) { transition-delay: 0.1s; }
.pain-card:nth-child(3) { transition-delay: 0.2s; }
.pain-card:nth-child(4) { transition-delay: 0.3s; }
.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(3) { transition-delay: 0.1s; }
.step:nth-child(5) { transition-delay: 0.2s; }
.step:nth-child(7) { transition-delay: 0.3s; }
.step:nth-child(9) { transition-delay: 0.4s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.08s; }
.feature-card:nth-child(6) { transition-delay: 0.16s; }
.feature-card:nth-child(7) { transition-delay: 0.24s; }
.feature-card:nth-child(8) { transition-delay: 0.32s; }
.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.12s; }

/* ═══════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--charcoal);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  padding: 20px 24px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}
.cookie-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.6;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cookie-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-decline {
  background: transparent;
  color: rgba(245,240,232,0.5);
  border: 1px solid rgba(245,240,232,0.2);
}
.cookie-decline:hover { color: rgba(245,240,232,0.8); border-color: rgba(245,240,232,0.4); opacity: 1; }
.cookie-accept {
  background: var(--gold);
  color: var(--charcoal);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.form-group input.error, .form-group textarea.error {
  animation: shake 0.35s ease;
}
