/*
Theme Name: Imersão Prosperar
Theme URI: https://institutomelinadani.com.br
Author: Instituto Melina Dani
Description: Landing page premium para a Imersão Prosperar
Version: 1.0
License: Proprietary
Text Domain: imersao-prosperar
*/

/* ========================================
   DESIGN SYSTEM - Imersão Prosperar
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Navy depth spectrum */
  --navy-deep: hsl(222, 47%, 4%);
  --navy-dark: hsl(222, 47%, 8%);
  --navy-base: hsl(222, 47%, 11%);
  --navy-light: hsl(222, 40%, 18%);
  --navy-muted: hsl(222, 30%, 25%);

  /* Gold accent spectrum */
  --gold-rich: hsl(32, 45%, 55%);
  --gold-base: hsl(32, 40%, 65%);
  --gold-light: hsl(32, 35%, 75%);
  --gold-muted: hsl(32, 25%, 50%);

  /* Semantic */
  --background: hsl(222, 47%, 6%);
  --foreground: hsl(45, 20%, 95%);
  --card: hsl(222, 47%, 8%);
  --muted-foreground: hsl(220, 15%, 60%);
  --border: hsl(222, 30%, 20%);
  --destructive: hsl(0, 84%, 60%);

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-base) 50%, var(--navy-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-base) 50%, var(--gold-light) 100%);
  --gradient-text-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-rich) 50%, var(--gold-base) 100%);
  --gradient-section: linear-gradient(180deg, var(--navy-dark) 0%, var(--background) 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient-gold {
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none; }

/* ========================================
   CTA BUTTON
   ======================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

.cta-button:hover {
  box-shadow: 0 0 40px hsla(32, 45%, 55%, 0.5);
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(1);
}

.cta-button--xl {
  height: 4rem;
  padding: 0 3rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
}

.cta-button:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

.section--hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--navy { background: var(--navy-deep); }
.section--gradient { background: var(--gradient-section); }

/* Decorative lines */
.section__line-top,
.section__line-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-base), transparent);
  opacity: 0.3;
}
.section__line-top { top: 0; }
.section__line-bottom { bottom: 0; }

/* ========================================
   HERO SECTION
   ======================================== */

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content {
  text-align: center;
  order: 2;
}

@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
    order: 1;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 9999px;
  border: 1px solid hsla(32, 40%, 65%, 0.3);
  background: hsla(32, 40%, 65%, 0.05);
  font-size: 0.875rem;
  color: var(--gold-base);
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 3.75rem; } }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero__subtitle { margin-left: 0; margin-right: 0; }
}

.hero__subtitle strong {
  display: block;
  margin-top: 1rem;
  color: var(--foreground);
  font-weight: 500;
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .hero__info { justify-content: flex-start; }
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__info-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-base);
}

.hero__quote {
  margin-top: 2.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold-base);
  opacity: 0.8;
  font-size: 1.125rem;
}

/* Hero photo */
.hero__photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  order: 1;
}

@media (min-width: 1024px) {
  .hero__photo-wrapper { order: 2; }
}

.hero__photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(32, 40%, 65%, 0.2), hsla(32, 45%, 55%, 0.1));
  border-radius: 9999px;
  filter: blur(48px);
  transform: scale(1.1);
}

.hero__photo-container {
  position: relative;
  aspect-ratio: 3/4;
  width: 16rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid hsla(32, 40%, 65%, 0.3);
  box-shadow: 0 10px 40px hsla(222, 47%, 4%, 0.4);
}

@media (min-width: 768px) { .hero__photo-container { width: 20rem; } }
@media (min-width: 1024px) { .hero__photo-container { width: 24rem; } }

.hero__photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero__photo-frame {
  position: absolute;
  inset: 0;
  border: 2px solid hsla(32, 40%, 65%, 0.2);
  border-radius: 1.5rem;
  transform: translate(1rem, 1rem);
  z-index: -1;
}

.hero__photo-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--card);
  border: 1px solid hsla(32, 40%, 65%, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  font-family: var(--font-heading);
  color: var(--gold-base);
  white-space: nowrap;
}

/* ========================================
   PAIN SECTION
   ======================================== */

.pain__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pain__grid { grid-template-columns: 1fr 1fr; }
}

.pain__card {
  padding: 2rem;
  border-radius: 1rem;
  background: hsla(222, 47%, 8%, 0.5);
  border: 1px solid hsla(222, 30%, 20%, 0.5);
  transition: border-color 0.5s;
}

.pain__card:hover {
  border-color: hsla(32, 40%, 65%, 0.3);
}

.pain__card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pain__card-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(32, 40%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-base);
  font-family: var(--font-heading);
  font-size: 1.125rem;
}

.pain__card-title {
  font-size: 1.25rem;
  color: var(--foreground);
  line-height: 1.3;
  padding-top: 0.25rem;
}

@media (min-width: 768px) { .pain__card-title { font-size: 1.5rem; } }

.pain__card-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  padding-left: 3.5rem;
}

.pain__closing {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) { .pain__closing { font-size: 1.5rem; } }

/* ========================================
   BELIEF BREAK SECTION
   ======================================== */

.belief__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .belief__grid { grid-template-columns: 1fr 1fr; }
}

.belief__card {
  padding: 2rem;
  border-radius: 1rem;
}

.belief__card--myths {
  background: hsla(222, 47%, 8%, 0.5);
  border: 1px solid hsla(222, 30%, 20%, 0.3);
}

.belief__card--truths {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--gradient-gold) border-box;
}

.belief__card-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.belief__icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.belief__icon-circle--red { background: hsla(0, 84%, 60%, 0.2); }
.belief__icon-circle--gold { background: hsla(32, 40%, 65%, 0.2); }

.belief__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.belief__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.belief__list-item--myth { color: var(--muted-foreground); }
.belief__list-item--truth { color: var(--foreground); }

.belief__closing {
  margin-top: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.belief__closing p:first-child {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.belief__closing p:last-child {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .belief__closing p:last-child { font-size: 1.875rem; }
}

/* ========================================
   IMMERSION SECTION
   ======================================== */

.immersion__features {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .immersion__features { grid-template-columns: 1fr 1fr; }
}

.immersion__feature {
  padding: 2rem;
  border-radius: 1rem;
  background: hsla(222, 47%, 8%, 0.3);
  border: 1px solid hsla(222, 30%, 20%, 0.3);
  transition: border-color 0.5s;
}

.immersion__feature:hover {
  border-color: hsla(32, 40%, 65%, 0.3);
}

.immersion__feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsla(32, 40%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-base);
  font-size: 1.75rem;
}

.immersion__feature h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.immersion__feature p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.immersion__highlight {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--gradient-gold) border-box;
  position: relative;
  overflow: hidden;
}

.immersion__highlight h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) { .immersion__highlight h3 { font-size: 1.875rem; } }

.immersion__highlight p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========================================
   AUTHORITY SECTION
   ======================================== */

.authority__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .authority__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.authority__photo {
  position: relative;
  order: 2;
}

@media (min-width: 1024px) { .authority__photo { order: 1; } }

.authority__photo-img {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid hsla(32, 40%, 65%, 0.2);
}

.authority__photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.authority__quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsla(32, 40%, 65%, 0.3);
  box-shadow: 0 10px 40px hsla(222, 47%, 4%, 0.4);
  max-width: 20rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--gold-base);
  font-style: italic;
}

.authority__content {
  order: 1;
}

@media (min-width: 1024px) { .authority__content { order: 2; } }

.authority__label {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--gold-base);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.authority__name {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .authority__name { font-size: 3rem; } }

.authority__bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.authority__bio strong {
  color: var(--foreground);
  font-weight: 500;
}

.authority__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.authority__credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: hsla(222, 47%, 8%, 0.5);
  font-size: 0.875rem;
  color: var(--foreground);
}

.authority__credential svg {
  color: var(--gold-base);
  flex-shrink: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: 1fr 1fr 1fr; } }

.benefits__card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsla(222, 47%, 8%, 0.3);
  border: 1px solid hsla(222, 30%, 20%, 0.3);
  transition: border-color 0.5s;
}

.benefits__card:hover {
  border-color: hsla(32, 40%, 65%, 0.3);
}

.benefits__card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(32, 40%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold-base);
  font-size: 1.5rem;
}

.benefits__card h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefits__card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials__grid { grid-template-columns: 1fr 1fr 1fr; } }

.testimonials__card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsla(222, 47%, 8%, 0.5);
  border: 1px solid hsla(222, 30%, 20%, 0.3);
  transition: border-color 0.5s;
  position: relative;
}

.testimonials__card:hover {
  border-color: hsla(32, 40%, 65%, 0.3);
}

.testimonials__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold-base);
}

.testimonials__text {
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonials__highlight {
  font-family: var(--font-heading);
  color: var(--gold-base);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsla(32, 40%, 65%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--gold-base);
  font-size: 0.875rem;
}

.testimonials__author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.testimonials__author-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ========================================
   FOR WHO SECTION
   ======================================== */

.forwho__grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .forwho__grid { grid-template-columns: 1fr 1fr; }
}

.forwho__card {
  padding: 2rem;
  border-radius: 1rem;
}

.forwho__card--yes {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--gradient-gold) border-box;
  position: relative;
  overflow: hidden;
}

.forwho__card--no {
  background: hsla(222, 47%, 8%, 0.3);
  border: 1px solid hsla(222, 30%, 20%, 0.3);
}

.forwho__card-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.forwho__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forwho__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.forwho__list-item--yes { color: var(--foreground); }
.forwho__list-item--no { color: var(--muted-foreground); }

.forwho__closing {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   COURAGE CTA SECTION
   ======================================== */

.courage__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.courage__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) { .courage__text { font-size: 1.875rem; } }

.courage__text span { color: var(--muted-foreground); }

.courage__headline {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .courage__headline { font-size: 3rem; } }
@media (min-width: 1024px) { .courage__headline { font-size: 3.75rem; } }

.courage__sub {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) { .courage__sub { font-size: 1.25rem; } }

.courage__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-base);
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .courage__quote { font-size: 1.875rem; } }

.courage__meta {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 3rem 0;
  background: var(--navy-deep);
  border-top: 1px solid hsla(222, 30%, 20%, 0.3);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  text-align: center;
}

@media (min-width: 768px) { .footer__brand { text-align: left; } }

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer__links {
    flex-direction: row;
    gap: 1rem;
  }
}

.footer__links a:hover {
  color: var(--gold-base);
  transition: color 0.3s;
}

.footer__links .separator {
  display: none;
}

@media (min-width: 768px) {
  .footer__links .separator { display: inline; }
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(222, 30%, 20%, 0.2);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer__bottom p + p {
  margin-top: 0.5rem;
  opacity: 0.6;
}

/* ========================================
   SECTION HEADER (reusable)
   ======================================== */

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--gold-base);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-header__title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) { .section-header__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-header__title { font-size: 3rem; } }

.section-header__desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ========================================
   LEAD CAPTURE MODAL
   ======================================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid hsla(32, 40%, 65%, 0.3);
  box-shadow: 0 10px 40px hsla(222, 47%, 4%, 0.4);
  padding: 1.5rem 2rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.3s;
}

.modal__close:hover { color: var(--foreground); }

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

@media (min-width: 768px) { .modal__title { font-size: 1.5rem; } }

.modal__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: var(--background);
  border: 1px solid hsla(222, 30%, 20%, 0.5);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.modal__input::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.modal__input:focus {
  border-color: var(--gold-base);
  box-shadow: 0 0 0 3px hsla(32, 40%, 65%, 0.2);
}

.modal__error {
  font-size: 0.75rem;
  color: hsl(0, 84%, 60%);
  margin-top: 0.25rem;
}

.modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.modal__consent input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--gold-base);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.modal__consent span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.modal__submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  cursor: pointer;
  transition: all 0.3s;
}

.modal__submit:hover {
  box-shadow: 0 0 40px hsla(32, 45%, 55%, 0.5);
  transform: scale(1.02);
}

.modal__submit:active { transform: scale(1); }
.modal__submit:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.modal__success {
  text-align: center;
  padding: 2rem 0;
}

.modal__success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal__success-desc {
  color: var(--muted-foreground);
}

/* SVG icon inline helper */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.75rem; height: 1.75rem; }
