/* ============================================================
   LAMA MAKER — Marketing Site Design System
   Terracotta · Craft Beige · Soft Sage · Deep Brown
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Quicksand:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand */
  --terracotta:      #D97A4A;
  --terracotta-dark: #B85C2A;
  --terracotta-pale: #FDF0E8;
  --terracotta-mid:  #F5D9C4;

  /* Sage accent */
  --sage:            #5A9E6A;
  --sage-pale:       #EDF7EE;

  /* Amber */
  --amber:           #F59E0B;
  --amber-pale:      #FFFBEB;

  /* Neutrals — warm-tinted */
  --brown-900:       #2C1F16;
  --brown-800:       #3B2F2F;
  --brown-700:       #4A3728;
  --brown-600:       #5C4033;
  --brown-500:       #7D6458;
  --brown-400:       #A89280;
  --brown-300:       #CEBFA9;
  --brown-200:       #E5D9CB;
  --brown-100:       #F2EBE1;
  --brown-50:        #FAF7F2;

  /* Functional */
  --text:            #3B2F2F;
  --muted:           #7D6458;
  --border:          #E5D9CB;
  --bg:              #FDF9F5;
  --bg-warm:         #F5EDE0;
  --bg-section-alt:  #FAF7F2;

  /* Shadows — warm-tinted */
  --shadow-sm:    0 1px 3px rgba(60,30,10,.07), 0 1px 2px rgba(60,30,10,.05);
  --shadow-md:    0 4px 16px rgba(60,30,10,.09);
  --shadow-lg:    0 12px 40px rgba(60,30,10,.11);
  --shadow-terra: 0 8px 30px rgba(217,122,74,.30);

  /* Radius */
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Ease */
  --bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Nunito', 'Inter', sans-serif;
  color: var(--brown-900);
  line-height: 1.2;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1280px; }

.section        { padding: 96px 0; }
.section--sm    { padding: 60px 0; }
.section--alt   { background: var(--bg-section-alt); }
.section--warm  { background: var(--bg-warm); }
.section--dark  { background: var(--brown-800); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-terra);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217,122,74,.42);
}
.btn--ghost {
  background: #fff;
  color: var(--brown-800);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn--sage {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 6px 20px rgba(90,158,106,.28);
}
.btn--sage:hover { background: #4a8a5a; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.w-full { width: 100%; }

/* ─── Badges / Tags ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--terracotta-pale);
  color: var(--terracotta-dark);
  border: 1px solid var(--terracotta-mid);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.04em;
}
.badge--sage {
  background: var(--sage-pale);
  color: var(--sage);
  border-color: #C8E6CD;
}
.badge--dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(217,122,74,.2);
  flex-shrink: 0;
}
.badge--dot.badge--sage::before { background: var(--sage); box-shadow: 0 0 0 3px rgba(90,158,106,.2); }

/* ─── Section heading helper ─────────────────────────────── */
.section-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: block;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--brown-900);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}
.text-center { text-align: center; }
.section-sub.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,249,245,0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,217,203,.6);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(60,30,10,.08);
}
.navbar { width: 100%; }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.navbar__logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; flex-shrink: 0;
}
.navbar__logo-img {
  height: 36px; width: auto;
}
.navbar__logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brown-900);
  letter-spacing: -0.02em;
}
.navbar__logo:hover .navbar__logo-text { color: var(--terracotta); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex: 1;
}
.navbar__links li a {
  display: block;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.navbar__links li a:hover { color: var(--terracotta); background: var(--terracotta-pale); }
.navbar__links li a.active { color: var(--terracotta); }

.navbar__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  border-radius: 8px;
  transition: background 0.2s;
}
.navbar__hamburger:hover { background: var(--terracotta-pale); }
.hamburger__bar {
  display: block; width: 22px; height: 2px;
  background: var(--brown-800);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #FDF4EC 0%, #FAE8D6 35%, #FDF0E8 65%, #FDFAF7 100%);
  padding: 148px 0 108px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 560px;
  background: radial-gradient(ellipse, rgba(217,122,74,.10) 0%, transparent 70%);
  pointer-events: none;
}
/* Subtle dot grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(217,122,74,.11) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.55;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; margin: 0 auto; }

.hero-badge { margin-bottom: 1.75rem; }

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--brown-900);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--terracotta); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 2.25rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--brown-500);
}
.trust-item::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  background: rgba(90,158,106,.14);
  color: var(--sage);
  border-radius: 50%;
  font-size: 0.68rem; font-weight: 900;
  flex-shrink: 0;
}

/* Platform pills */
.platform-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 24px 0;
}
.platform-strip__label {
  text-align: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 14px;
  font-family: 'Quicksand', sans-serif;
}
.platform-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.platform-pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  box-shadow: 0 2px 8px rgba(217,122,74,.12);
}

/* ─── PAIN POINTS ────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.pain-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s var(--bounce);
}
.pain-card:hover {
  border-color: rgba(217,122,74,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pain-card__icon {
  font-size: 1.75rem; margin-bottom: 0.875rem; display: block;
}
.pain-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--brown-900); margin-bottom: 0.5rem;
}
.pain-card p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0;
}

/* ─── FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s var(--bounce);
}
.feature-card:hover {
  border-color: rgba(217,122,74,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--terracotta-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--brown-900); margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin: 0 0 1rem;
}
.feature-card__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.feature-card__list li {
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.feature-card__list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 900; font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(33.33% - 0px); right: calc(33.33% - 0px);
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta-mid), var(--terracotta-mid));
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 0 1rem;
}
.step__number {
  width: 56px; height: 56px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900;
  font-family: 'Nunito', sans-serif;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-terra);
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ─── PRICING CARD ───────────────────────────────────────── */
.pricing-wrapper {
  max-width: 440px; margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden; /* clipped for the top accent bar */
}
/* Cloud "Coming Soon" ribbon needs overflow visible */
.pricing-card--coming-soon { overflow: visible; }
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-dark));
}
.pricing-card__name {
  font-size: 1rem; font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  color: var(--muted); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.pricing-card__price {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0.2rem; margin-bottom: 0.4rem;
  line-height: 1;
}
.price-currency { font-size: 1.75rem; font-weight: 800; color: var(--brown-900); align-self: flex-start; margin-top: 0.5rem; }
.price-amount { font-size: 4rem; font-weight: 900; color: var(--brown-900); font-family: 'Nunito', sans-serif; line-height: 1; }
.price-period { font-size: 1rem; color: var(--muted); margin-bottom: 0.35rem; }
.pricing-card__desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 1.75rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.pricing-features li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.92rem; color: var(--text);
}
.check-icon {
  width: 20px; height: 20px;
  background: rgba(90,158,106,.14);
  color: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 900;
  flex-shrink: 0;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--brown-900);
  text-align: left;
}
.faq-question:hover { color: var(--terracotta); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-out);
  stroke: currentColor;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.25s;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem; color: var(--muted); line-height: 1.7;
}
.faq-answer a { color: var(--terracotta); font-weight: 600; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(217,122,74,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--brown-900);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand__logo {
  height: 36px; width: auto; margin-bottom: 1rem;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.875rem; line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--terracotta); }
.footer-lama-link {
  font-size: 0.82rem; color: rgba(255,255,255,.4);
}
.footer-lama-link a { color: rgba(255,255,255,.55); font-weight: 600; }
.footer-lama-link a:hover { color: var(--terracotta); }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #FDF4EC 0%, #FAE8D6 40%, #FDF0E8 100%);
  padding: 128px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(217,122,74,.10) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.55;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem,3.5vw,2.75rem); font-weight: 900; margin-bottom: 0.75rem; }
.page-hero__sub { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ─── ALL FEATURES PAGE ──────────────────────────────────── */
.features-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.feature-full-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s var(--bounce);
}
.feature-full-card:hover {
  border-color: rgba(217,122,74,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-full-card__icon {
  width: 52px; height: 52px;
  background: var(--terracotta-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-full-card__body { flex: 1; }
.feature-full-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.4rem; }
.feature-full-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0 0 0.75rem; }
.feature-full-card__list {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.3rem 0.75rem;
}
.feature-full-card__list li {
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.35rem;
}
.feature-full-card__list li::before {
  content: '·';
  color: var(--terracotta); font-weight: 900;
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pain-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-2col { grid-template-columns: 1fr !important; max-width: 500px !important; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .features-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .navbar__hamburger { display: flex; }
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(60,30,10,.1);
    z-index: 999;
  }
  .navbar__links.open { display: flex; }
  .pain-grid, .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 72px; }
  .section { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; max-width: 280px; justify-content: center; }
}

/* ─── Utility ────────────────────────────────────────────── */
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.gap-4 { gap: 1rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: flex-start;
}

/* Form */
.contact-form-wrap { min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  font-size: 0.875rem; font-weight: 700;
  color: var(--brown-800);
  font-family: 'Quicksand', sans-serif;
}
.form-label .required { color: var(--terracotta); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217,122,74,.12);
}
.form-group.has-error .form-control { border-color: #EF4444; }
.form-error { font-size: 0.82rem; color: #EF4444; font-weight: 600; }
textarea.form-control { resize: vertical; min-height: 140px; line-height: 1.6; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237D6458' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.25rem; }
.form-privacy { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }
.form-privacy a { color: var(--terracotta); }

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  border: 1.5px solid;
}
.alert-success { background: var(--sage-pale); border-color: #C8E6CD; color: #2D6A3F; }
.alert-error   { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info-card h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.75rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-info-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text); }
.contact-info-list li svg { flex-shrink: 0; stroke: var(--terracotta); }
.contact-info-list a { color: var(--text); font-weight: 500; }
.contact-info-list a:hover { color: var(--terracotta); }
.contact-response-card { text-align: center; background: var(--terracotta-pale); border-color: var(--terracotta-mid); }
.response-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-response-card p { font-size: 0.875rem; color: var(--brown-600); margin-bottom: 0.4rem; }
.contact-response-card .text-muted { font-size: 0.8rem; color: var(--muted); margin: 0; }
.contact-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-links a { font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.contact-links a:hover { color: var(--terracotta); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
  .form-row { grid-template-columns: 1fr; }
}
