/* ============================================================
   ItalyGetOS — Landing Page Stylesheet
   Vibe: warm Italian editorial, not generic SaaS
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;1,9..144,400;1,9..144,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg:          #faf4ee;   /* warm parchment */
  --bg-dark:     #1e1409;   /* espresso night */
  --surface:     #ffffff;
  --surface-alt: #f5ede4;
  --terracotta:  #b5451b;   /* primary accent */
  --terracotta-dark: #8c3414;
  --gold:        #c9960c;   /* highlight accent */
  --gold-light:  #f0d580;
  --text:        #1a1008;
  --text-mid:    #6b5a45;
  --text-muted:  #a08b72;
  --border:      #e8d8c8;
  --shadow:      rgba(26, 16, 8, 0.10);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   12px;
  --max-w:       1120px;
  --section-pad: 96px;
}

/* ── 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(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--terracotta); color: #fff; }

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

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { max-width: 62ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: var(--section-pad); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--border);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 69, 27, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--text-mid);
  background: var(--surface-alt);
}

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  padding-inline: 0;
  border-radius: 0;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--terracotta-dark); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 150, 12, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(181, 69, 27, 0.18) 0%, transparent 50%),
    linear-gradient(160deg, #1e1409 0%, #2d1a0a 50%, #1a0e06 100%);
}

.hero-bg::after {
  content: '';
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 150, 12, 0.15);
  border: 1px solid rgba(201, 150, 12, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

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

.hero-sub {
  color: #c4a882;
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 54ch;
}

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

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

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-trust p {
  font-size: 0.85rem;
  color: #a0856a;
  max-width: 30ch;
  line-height: 1.4;
}

.hero-trust p strong { color: #d4b896; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--text);
  color: #fff;
  padding-block: 40px;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: #a0856a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
  background: var(--surface);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--gold) 100%);
}

.how-intro {
  max-width: 560px;
  margin-bottom: 64px;
}

.how-intro p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-top: 12px;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.step-card h3 { margin-bottom: 10px; color: var(--text); }

.step-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── SERVICE TIERS ────────────────────────────────────────── */
.service-tiers {
  background: var(--bg);
  position: relative;
}

.tiers-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.tiers-intro .eyebrow { justify-content: center; }
.tiers-intro .section-label::after { display: none; }
.tiers-intro h2 { margin-bottom: 16px; }
.tiers-intro p { color: var(--text-mid); margin: 0 auto; }

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

.tier-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.tier-card.tier-featured {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(181, 69, 27, 0.08);
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.tier-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.tier-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.tier-price .suffix {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.tier-includes { list-style: none; margin-bottom: 32px; }

.tier-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--surface-alt);
}

.tier-includes li:last-child { border-bottom: none; }

.tier-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(181, 69, 27, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b5451b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

.tier-includes li.excluded {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.tier-includes li.excluded::before {
  background: none;
  border: 1.5px solid var(--text-muted);
  background-image: none;
}

.tier-cta { width: 100%; justify-content: center; }

/* ── WHY ITALYGETOS ───────────────────────────────────────── */
.why-section {
  background: var(--text);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(181, 69, 27, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(201, 150, 12, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.why-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
  position: relative;
}

.why-intro h2 { color: #fff; margin-bottom: 16px; }
.why-intro p  { color: #a0856a; margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.25s, border-color 0.25s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(181, 69, 27, 0.4);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(181, 69, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.why-card h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p { font-size: 0.875rem; color: #a0856a; line-height: 1.65; }

/* ── TESTIMONIALS (PILOT) ─────────────────────────────────── */
.testimonials-section {
  background: var(--surface);
  padding-block: 80px;
  border-top: 1px solid var(--border);
}

.testimonials-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}

.testimonials-intro .eyebrow { justify-content: center; }
.testimonials-intro .section-label::after { display: none; }
.testimonials-intro h2 { margin-bottom: 14px; }
.testimonials-intro p  { color: var(--text-mid); margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(181, 69, 27, 0.3);
  box-shadow: 0 8px 28px var(--shadow);
}

.testimonial-quote-mark {
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card p em {
  font-style: normal;
  font-weight: 500;
  color: var(--text);
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.testimonials-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 40px; }
}

/* ── GUARANTEE STRIPE ─────────────────────────────────────── */
.guarantee-stripe {
  background: var(--surface-alt);
  padding-block: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg { width: 36px; height: 36px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.guarantee-content { }

.guarantee-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.guarantee-content p { color: var(--text-mid); font-size: 0.95rem; }

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section {
  background: var(--surface);
  padding-block: 80px;
}

.faq-intro { max-width: 500px; margin-bottom: 48px; }
.faq-intro h2 { margin-bottom: 12px; }
.faq-intro p  { color: var(--text-mid); }

.faq-list { max-width: 680px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}

.faq-item summary {
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--terracotta);
}

.faq-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-top: 12px;
  padding-bottom: 4px;
}

/* ── NEWSLETTER SECTION ──────────────────────────────────── */
.newsletter-section {
  background: var(--surface-alt);
  padding-block: 72px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.newsletter-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(181, 69, 27, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-icon svg { width: 36px; height: 36px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }

.newsletter-content { flex: 1; }

.newsletter-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}

.newsletter-content p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 24px; }

.newsletter-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.newsletter-fields input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s;
}

.newsletter-fields input[type="email"]:focus {
  outline: none;
  border-color: var(--terracotta);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
}

.newsletter-msg {
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 20px;
}

.newsletter-msg.success { color: #2d7a4f; }
.newsletter-msg.error   { color: var(--terracotta); }

@media (max-width: 700px) {
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-fields { flex-direction: column; }
  .newsletter-fields input[type="email"] { min-width: unset; }
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(181, 69, 27, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content { position: relative; max-width: 620px; margin: 0 auto; }

.cta-content .eyebrow { color: var(--gold); justify-content: center; margin-bottom: 16px; }
.cta-content h2 { color: #fff; margin-bottom: 20px; }
.cta-content p  { color: #a0856a; margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-note {
  font-size: 0.8rem;
  color: #6b5a45;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #120d06;
  color: #6b5a45;
  padding-block: 40px 32px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #a0856a;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: #6b5a45;
  transition: color 0.2s;
}

.footer-links a:hover { color: #a0856a; }

.footer-copy { font-size: 0.78rem; }

/* ── WAITLIST SECTION ────────────────────────────────────── */
.waitlist-section {
  background: var(--bg-dark);
  padding-block: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.waitlist-copy h2 {
  color: #fff;
  margin-block: 12px 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.waitlist-copy p {
  color: #a0856a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.waitlist-form { width: 100%; }

.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.waitlist-fields input[type="text"],
.waitlist-fields input[type="email"],
.waitlist-fields select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: border-color 0.2s;
}

.waitlist-fields input::placeholder { color: #6b5a45; }

.waitlist-fields select {
  color: #a0856a;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5a45' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.waitlist-fields select option { background: #2a1a0c; color: #fff; }

.waitlist-fields input[type="text"]:focus,
.waitlist-fields input[type="email"]:focus,
.waitlist-fields select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.waitlist-msg {
  font-size: 0.85rem;
  min-height: 20px;
  margin-top: 4px;
}

.waitlist-msg.success { color: #6fc99a; }
.waitlist-msg.error   { color: #e8836a; }

@media (max-width: 800px) {
  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .guarantee-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  section { padding-block: 64px; }
  h1 { font-size: 2.2rem; }
  .hero { min-height: 80vh; }
  .hero-content { padding-block: 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
}