/* ===========================
   GastroChatter – Stylesheet
   Warm & Gastro Design
   =========================== */

:root {
  --cream:      #FDFAF5;
  --cream-dark: #F5E6D3;
  --espresso:   #1A0F0A;
  --brown:      #3D2B1F;
  --amber:      #C8873A;
  --amber-dark: #A86E28;
  --beige:      #E8D5B7;
  --text:       #4A3728;
  --text-light: #7A6355;
  --white:      #FFFFFF;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,15,10,0.08);
  --shadow-lg: 0 12px 48px rgba(26,15,10,0.14);
  --transition: 0.25s ease;
}

/* Reset & Base */
*, *::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);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--espresso); }

.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); font-weight: 600; transition: all var(--transition); cursor: pointer; border: none; font-family: var(--font-body); }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,135,58,0.35);
}

.btn-outline {
  border: 2px solid var(--amber);
  color: var(--amber);
  padding: 10px 26px;
  font-size: 0.95rem;
  background: transparent;
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--white);
}

.btn-large { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: all var(--transition); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 140px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,135,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-item .icon {
  width: 28px; height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.chat-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  border: 1px solid var(--beige);
  position: relative;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 16px;
}

.chat-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.chat-title { font-size: 0.9rem; font-weight: 600; color: var(--espresso); }
.chat-status { font-size: 0.75rem; color: #22c55e; font-weight: 500; }

.chat-messages { display: flex; flex-direction: column; gap: 10px; }

.msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  max-width: 85%;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.msg-bot {
  background: var(--cream-dark);
  color: var(--brown);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.msg-user {
  background: var(--amber);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-input {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input-field {
  flex: 1;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.chat-send {
  width: 34px; height: 34px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem;
}

.hero-float-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--espresso);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-float-badge span { display: block; font-size: 1.1rem; font-family: var(--font-head); color: var(--amber); }

/* ===========================
   SECTIONS COMMON
   =========================== */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===========================
   FEATURES
   =========================== */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 10px;
}

.feature-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.67% + 14px); right: calc(16.67% + 14px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px);
}

.step { text-align: center; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--amber);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 10px;
}

.step p { font-size: 0.9rem; color: var(--text-light); }

/* ===========================
   PRICING
   =========================== */
.pricing { background: var(--white); }

.setup-fee-box {
  background: var(--espresso);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.setup-fee-box h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.setup-fee-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.setup-fee-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.setup-fee-price .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.setup-fee-price .amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}

.setup-fee-price .currency {
  font-size: 1rem;
  color: var(--amber);
  font-weight: 600;
}

.setup-fee-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.setup-fee-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.setup-fee-feature span.dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-divider {
  text-align: center;
  margin: 36px 0 0;
  position: relative;
}

.pricing-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--beige);
}

.pricing-divider span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.extra-change-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: inline-block;
  width: 100%;
}

.extra-change-note strong { color: var(--espresso); }

.pricing-card {
  border: 2px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--amber);
  background: var(--espresso);
  color: var(--white);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-price .amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}

.pricing-card.featured .plan-price .amount { color: var(--white); }

.plan-price .currency { font-size: 1.2rem; font-weight: 600; color: var(--text-light); align-self: flex-start; margin-top: 8px; }
.pricing-card.featured .plan-price .currency { color: var(--beige); }

.plan-price .period { font-size: 0.9rem; color: var(--text-light); margin-bottom: 6px; }
.pricing-card.featured .plan-price .period { color: var(--beige); }

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--beige);
}

.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.plan-feature .check {
  width: 20px; height: 20px;
  background: rgba(200,135,58,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-card.featured .plan-feature .check {
  background: rgba(200,135,58,0.25);
}

.plan-feature span { color: var(--text); }
.pricing-card.featured .plan-feature span { color: rgba(255,255,255,0.85); }

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  display: block;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-plan-outline {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
}
.btn-plan-outline:hover { background: var(--amber); color: var(--white); }

.btn-plan-filled {
  background: var(--amber);
  color: var(--white);
}
.btn-plan-filled:hover { background: var(--amber-dark); box-shadow: 0 6px 20px rgba(200,135,58,0.4); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--cream); }

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  width: 100%;
  max-width: 480px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--amber); }

.stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--espresso));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--espresso); }
.author-place { font-size: 0.8rem; color: var(--text-light); }

/* ===========================
   STATS
   =========================== */
.stats-section {
  background: var(--espresso);
  padding: 96px 0;
}

.stats-section .section-tag {
  background: rgba(200,135,58,0.15);
  border-color: rgba(200,135,58,0.3);
  color: var(--amber);
}

.stats-section .section-title { color: var(--white); }

.stats-section .section-sub { color: rgba(255,255,255,0.55); }

.stats-inner {
  margin-top: 56px;
}

.stats-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stats-numbers--centered {
  max-width: 700px;
  margin: 56px auto 0;
}

.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.12);
  margin: 0 64px;
  flex-shrink: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.stat-value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--amber);
  font-weight: 700;
  padding-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.stat-source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.stats-chart-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.chart-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .stats-numbers { flex-direction: column; gap: 32px; }
  .stat-divider { width: 80px; height: 1px; margin: 0; }
}

/* ===========================
   FAQ
   =========================== */
.faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--amber);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--espresso);
  padding: 80px 0;
}

.cta-banner-inner {
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner h2 em { font-style: italic; color: var(--amber); }

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-banner .btn-primary {
  padding: 16px 44px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 14px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.detail-icon {
  width: 40px; height: 40px;
  background: var(--cream-dark);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--amber); }

.footer-desc { font-size: 0.88rem; line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--amber); }

/* ===========================
   MOBILE NAV OVERLAY
   =========================== */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--amber); }

.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--espresso);
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .features-grid,
  .testimonials-grid,
  .steps { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .steps::before { display: none; }

  .hero-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .hero-visual { display: none; }

  .nav-links { display: none; }

  .hamburger { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 64px 0; }
  .hero { padding: 110px 0 64px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .setup-fee-box { flex-direction: column; align-items: flex-start; }
}
