:root {
  --brown: #2c1a0e;
  --brown-mid: #4a2c18;
  --brown-light: #7a4828;
  --olive: #5c6b3a;
  --olive-light: #7a8f52;
  --olive-pale: #a8b87a;
  --beige: #ede5d4;
  --beige-light: #f7f2ea;
  --warm-white: #fdfaf5;
  --cream: #f3ede0;
  --text: #1e1208;
  --text-mid: #4a3020;
  --text-light: #7a5c40;
  --gold: #c8952a;
  --gold-light: #e8b84a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

/* ===================== STICKY MOBILE CTA ===================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--brown);
  padding: 14px 20px;
  text-align: center;
}
.sticky-cta a {
  display: block;
  background: var(--gold);
  color: var(--warm-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.sticky-cta a:hover {
  background: var(--gold-light);
}
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 149, 42, 0.15);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--brown);
  text-decoration: none;
  font-style: italic;
}
.nav-brand span {
  color: var(--olive);
  font-style: normal;
  font-weight: 700;
}
.nav-cta {
  background: var(--brown);
  color: var(--warm-white);
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  nav {
    padding: 16px 20px;
  }
  .nav-cta {
    font-size: 12px;
    padding: 9px 16px;
  }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background: var(--brown);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(92, 107, 58, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200, 149, 42, 0.12) 0%, transparent 50%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 149, 42, 0.15);
  border: 1px solid rgba(200, 149, 42, 0.35);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(237, 229, 212, 0.8);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 300;
}
.hero-form-wrap {
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-email-row {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
  border-radius: 7px;
  overflow: hidden;
  border: 1.5px solid rgba(200, 149, 42, 0.4);
}
.hero-email-row input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--warm-white);
}
.hero-email-row input::placeholder {
  color: rgba(237, 229, 212, 0.45);
}
.hero-email-row button {
  background: var(--gold);
  color: var(--brown);
  border: none;
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-email-row button:hover {
  background: var(--gold-light);
}
.hero-trust {
  font-size: 12.5px;
  color: rgba(237, 229, 212, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust::before {
  content: '🔒';
  font-size: 11px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--warm-white);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(237, 229, 212, 0.55);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Hero right: visual card */
.hero-visual {
  position: relative;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-card {
  background: var(--beige-light);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 149, 42, 0.2);
}
.hero-card-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-card h3 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.3;
}
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
}
.hero-card-item:last-child {
  border-bottom: none;
}
.hero-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-card-check svg {
  width: 11px;
  height: 11px;
}
.hero-card-item span {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}
.hero-card-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--gold);
  color: var(--brown);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-stats {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 70px;
  }
  .hero-email-row {
    flex-direction: column;
    border-radius: 7px;
  }
  .hero-email-row input,
  .hero-email-row button {
    border-radius: 6px;
  }
  .hero-email-row button {
    padding: 14px;
  }
}

/* ===================== FADE ANIMATION ===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== SECTION SHARED ===================== */
section {
  padding: 96px 40px;
}
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--olive);
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 600px;
  font-weight: 300;
}

@media (max-width: 600px) {
  section {
    padding: 72px 20px;
  }
}

/* ===================== SECTION 2: PAIN POINTS ===================== */
.pain-section {
  background: var(--cream);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.pain-card {
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover {
  border-color: var(--olive-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 26, 14, 0.06);
}
.pain-icon {
  font-size: 22px;
  margin-bottom: 12px;
}
.pain-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.pain-cta-row {
  text-align: center;
  margin-top: 56px;
}
.pain-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--brown-mid);
  margin-bottom: 24px;
}

/* ===================== SECTION 3: WHAT YOU'LL LEARN ===================== */
.learn-section {
  background: var(--brown);
}
.learn-section .section-tag {
  color: var(--gold-light);
}
.learn-section .section-title {
  color: var(--warm-white);
}
.learn-section .section-title em {
  color: var(--gold-light);
}
.learn-section .section-sub {
  color: rgba(237, 229, 212, 0.7);
}
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.learn-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 149, 42, 0.2);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.learn-card:hover {
  background: rgba(200, 149, 42, 0.1);
  border-color: rgba(200, 149, 42, 0.4);
}
.learn-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: rgba(200, 149, 42, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}
.learn-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.learn-card p {
  font-size: 13.5px;
  color: rgba(237, 229, 212, 0.6);
  line-height: 1.65;
}

/* ===================== SECTION 4: WHO IT'S FOR ===================== */
.for-section {
  background: var(--beige-light);
}
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 56px;
}
.for-card {
  background: var(--warm-white);
  border: 1.5px solid var(--beige);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.for-card:hover {
  border-color: var(--olive-pale);
  box-shadow: 0 6px 20px rgba(44, 26, 14, 0.07);
  transform: translateY(-2px);
}
.for-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.for-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 8px;
}
.for-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================== SECTION 5: FORM ===================== */
.form-section {
  background: var(--warm-white);
}
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 16px;
  padding: 56px;
  border: 1px solid var(--beige);
  box-shadow: 0 20px 60px rgba(44, 26, 14, 0.07);
}
.form-header {
  text-align: center;
  margin-bottom: 48px;
}
.form-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 32px;
}
.prog-step {
  height: 4px;
  flex: 1;
  max-width: 80px;
  border-radius: 2px;
  background: var(--beige);
  transition: background 0.3s;
}
.prog-step.active {
  background: var(--olive);
}
.prog-step.done {
  background: var(--olive-pale);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.3px;
}
.form-group label span {
  color: var(--gold);
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--warm-white);
  border: 1.5px solid var(--beige);
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(92, 107, 58, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-group select {
  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='%237A5C40' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--beige);
  background: var(--warm-white);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-label:hover {
  border-color: var(--olive-pale);
  background: var(--beige-light);
}
.checkbox-label:has(input:checked) {
  border-color: var(--olive);
  background: #eef2e6;
  color: var(--olive);
  font-weight: 600;
}
.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--olive);
  padding: 0;
  border: none;
  border-radius: 3px;
  flex-shrink: 0;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--beige);
  background: var(--warm-white);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  width: 100%;
}
.radio-label:hover {
  border-color: var(--olive-pale);
  background: var(--beige-light);
}
.radio-label:has(input:checked) {
  border-color: var(--olive);
  background: #eef2e6;
  color: var(--olive);
  font-weight: 600;
}
.radio-label input[type="radio"] {
  accent-color: var(--olive);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.form-divider {
  grid-column: 1/-1;
  border: none;
  border-top: 1px solid var(--beige);
  margin: 8px 0;
}
.form-section-title {
  grid-column: 1/-1;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--brown);
  padding-top: 8px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--beige);
  background: var(--warm-white);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.consent-label:hover {
  border-color: var(--olive-pale);
  background: var(--beige-light);
}
.consent-label:has(input:checked) {
  border-color: var(--olive);
  background: #eef2e6;
  color: var(--text-mid);
}
.consent-label input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--olive);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--brown);
  color: var(--warm-white);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.submit-btn:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
}
.submit-btn:active {
  transform: translateY(0);
}
.form-trust {
  text-align: center;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-light);
}

@media (max-width: 680px) {
  .form-wrap {
    padding: 32px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
}

/* ===================== SECTION 6: SOCIAL PROOF ===================== */
.proof-section {
  background: var(--cream);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.proof-card {
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.proof-quote {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--beige);
  line-height: 0.8;
  margin-bottom: 12px;
}
.proof-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.proof-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--brown-light);
  font-size: 16px;
}
.proof-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
}
.proof-role {
  font-size: 12.5px;
  color: var(--text-light);
}
.proof-stars {
  color: var(--gold);
  font-size: 13px;
  margin-top: 4px;
}
.proof-placeholder {
  background: var(--beige-light);
  border: 2px dashed var(--beige);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}
.proof-placeholder strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--brown-mid);
  margin-bottom: 8px;
}

/* ===================== SECTION 7: FAQ ===================== */
.faq-section {
  background: var(--warm-white);
}
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--beige);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--olive);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #c8b89a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 16px;
  color: var(--brown-light);
}
.faq-item.open .faq-icon {
  background: var(--olive);
  color: var(--warm-white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  background: var(--olive);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(44, 26, 14, 0.2) 0%, transparent 70%);
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta p {
  font-size: 17px;
  color: rgba(253, 250, 245, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--warm-white);
  color: var(--brown);
  padding: 18px 44px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.final-trust {
  font-size: 13px;
  color: rgba(253, 250, 245, 0.55);
  margin-top: 16px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--brown);
  padding: 40px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--beige);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(237, 229, 212, 0.4);
}

/* ===================== THANK YOU PAGE ===================== */
.ty-page {
  display: none;
  min-height: 100vh;
  background: var(--brown);
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}
.ty-page.active {
  display: flex;
}
.ty-inner {
  max-width: 560px;
}
.ty-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 30px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ty-inner h1 {
  font-size: 38px;
  color: var(--warm-white);
  margin-bottom: 16px;
}
.ty-inner p {
  font-size: 17px;
  color: rgba(237, 229, 212, 0.75);
  line-height: 1.75;
  margin-bottom: 48px;
}
.ty-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.ty-btn:hover {
  transform: translateY(-2px);
}
.ty-btn-ig {
  background: var(--gold);
  color: var(--brown);
}
.ty-btn-share {
  background: rgba(255, 255, 255, 0.1);
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ty-divider {
  border: none;
  border-top: 1px solid rgba(237, 229, 212, 0.15);
  width: 100%;
  margin: 8px 0;
}
