/*
Theme Name: FourFeel - Instituto Melina Dani
Theme URI: https://foufeel-blck.lovable.app
Author: Instituto Melina Dani
Description: Tema WordPress da landing page do Método FourFeel - Formação em Terapia Integrativa
Version: 1.0.0
Text Domain: fourfeel
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* FourFeel Brand Colors (HSL) */
  --background: hsl(30, 30%, 97%);
  --foreground: hsl(220, 40%, 10%);
  --card: hsl(30, 30%, 97%);
  --card-foreground: hsl(220, 40%, 10%);
  --primary: hsl(220, 40%, 10%);
  --primary-foreground: hsl(30, 30%, 97%);
  --secondary: hsl(0, 70%, 85%);
  --secondary-foreground: hsl(220, 40%, 10%);
  --muted: hsl(30, 20%, 94%);
  --muted-foreground: hsl(220, 20%, 35%);
  --accent: hsl(40, 50%, 70%);
  --accent-foreground: hsl(220, 40%, 10%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --border: hsl(220, 20%, 85%);
  --radius: 0.75rem;

  /* Custom tokens */
  --rose-glow: hsl(0, 70%, 85%);
  --navy-deep: hsl(220, 40%, 10%);
  --gold-soft: hsl(40, 50%, 70%);
  --pearl: hsl(30, 30%, 97%);

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, hsl(220, 60%, 25%) 0%, hsl(220, 55%, 20%) 30%, hsl(220, 45%, 15%) 70%, hsl(220, 40%, 10%) 100%);
  --gradient-rose: linear-gradient(135deg, hsl(0, 70%, 85%) 0%, hsl(0, 65%, 88%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(40, 50%, 70%) 0%, hsl(40, 45%, 75%) 100%);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(14, 19, 33, 0.08);
  --shadow-glow: 0 0 30px hsla(0, 70%, 85%, 0.3);
  --shadow-elegant: 0 10px 40px rgba(14, 19, 33, 0.12);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ===== UTILITIES ===== */
.bg-texture {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, hsla(220, 40%, 12%, 0.03) 10px, hsla(220, 40%, 12%, 0.03) 20px);
}

.hero-gradient { background: var(--gradient-hero); }
.rose-gradient { background: var(--gradient-rose); }
.gold-gradient { background: var(--gradient-gold); }

.text-glow { text-shadow: 0 0 20px hsla(0, 70%, 85%, 0.4); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-cta {
  background: linear-gradient(135deg, var(--secondary), hsl(0, 60%, 78%));
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-glow);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px hsla(0, 70%, 85%, 0.5);
}

.btn-hero {
  background: var(--primary-foreground);
  color: var(--primary);
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  box-shadow: var(--shadow-elegant);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(14, 19, 33, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
}

/* ===== TOP BANNER ===== */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(0, 70%, 85%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--secondary);
  padding: 0.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.top-banner p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-foreground);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, hsl(220, 50%, 18%) 0%, hsl(220, 40%, 10%) 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 3rem;
  }
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--primary-foreground);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsla(30, 30%, 97%, 0.9);
  font-weight: 300;
}

.hero .subtitle strong {
  color: var(--secondary);
  font-weight: 600;
}

.hero-highlight {
  background: hsla(0, 70%, 85%, 0.2);
  backdrop-filter: blur(8px);
  border: 2px solid var(--secondary);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.hero-highlight p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-foreground);
}

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsla(30, 30%, 97%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-badge {
    left: -1.5rem;
    bottom: -1.5rem;
    transform: none;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 1rem;
}

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

.hero-stats .stat-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: hsla(30, 30%, 97%, 0.8);
}

.hero-stats .divider {
  width: 1px;
  height: 3rem;
  background: hsla(30, 30%, 97%, 0.2);
}

/* Floating orbs */
.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero .orb-1 {
  top: 5rem;
  left: 2rem;
  width: 16rem;
  height: 16rem;
  background: hsla(0, 70%, 85%, 0.05);
  animation: float 6s ease-in-out infinite;
}

.hero .orb-2 {
  bottom: 5rem;
  right: 2rem;
  width: 24rem;
  height: 24rem;
  background: hsla(40, 50%, 70%, 0.05);
  animation: float 6s ease-in-out infinite 2s;
}

.hero .orb-3 {
  top: 50%;
  right: 25%;
  width: 37rem;
  height: 37rem;
  background: hsla(230, 100%, 65%, 0.25);
  filter: blur(120px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== AUTHORITY / 7 MEDICINAS ===== */
.authority {
  padding: 5rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--foreground);
}

.section-header p {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.medicines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .medicines-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .medicines-grid { grid-template-columns: repeat(3, 1fr); }
}

.medicine-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid hsla(220, 20%, 85%, 0.5);
  transition: all 0.3s;
}

.medicine-card:hover {
  box-shadow: var(--shadow-soft);
}

.medicine-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.medicine-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.medicine-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* MEC Credibility Box */
.mec-box {
  background: linear-gradient(to bottom right, var(--card), hsla(30, 30%, 97%, 0.5));
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  padding: 2rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .mec-box { padding: 3rem; }
}

.mec-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.mec-seal {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.mec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
}

.trust-indicator {
  text-align: center;
}

.trust-indicator svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin: 0 auto 0.5rem;
}

.trust-indicator p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

/* ===== TRANSFORMATION ===== */
.transformation {
  padding: 5rem 0;
  background: hsla(30, 20%, 94%, 0.3);
}

.transformation .challenge-label,
.transformation .solution-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.transformation .challenge-label { color: var(--destructive); }
.transformation .solution-label { color: var(--secondary); }

.transformation h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.transformation h2 .highlight-secondary { color: var(--secondary); }
.transformation h3 .highlight-accent { color: var(--accent); }

.transformation h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.arrow-divider {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.arrow-divider .circle {
  background: linear-gradient(to bottom, hsla(0, 84%, 60%, 0.2), hsla(0, 70%, 85%, 0.2));
  border-radius: 9999px;
  padding: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar-card {
  padding: 1.5rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s;
}

.pillar-card:hover { box-shadow: var(--shadow-soft); }

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-card:nth-child(1) .pillar-number { color: var(--primary); }
.pillar-card:nth-child(2) .pillar-number { color: var(--secondary); }
.pillar-card:nth-child(3) .pillar-number { color: var(--accent); }

.pillar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 5rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.benefit-card:hover { box-shadow: var(--shadow-soft); }

.benefit-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon { transform: scale(1.1); }

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.benefits-cta {
  background: hsla(30, 20%, 94%, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .benefits-cta { padding: 3rem; }
}

.benefits-cta p {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 5rem 0;
  background: hsla(30, 20%, 94%, 0.3);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover { box-shadow: var(--shadow-soft); }

.testimonial-quote {
  width: 2rem;
  height: 2rem;
  color: hsla(0, 70%, 85%, 0.3);
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-author .role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-author .location {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .social-proof { grid-template-columns: repeat(4, 1fr); }
}

.social-proof .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.social-proof .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== OFFER SECTION ===== */
.offer {
  padding: 5rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  animation: glow-pulse 4s ease-in-out infinite;
}

.offer-card {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-elegant);
  border: 2px solid hsla(0, 70%, 85%, 0.2);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .offer-card { padding: 3rem; }
}

.offer-card .corner-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: var(--gradient-rose);
  opacity: 0.1;
  border-bottom-left-radius: 100%;
}

.offer-card .corner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background: var(--gradient-gold);
  opacity: 0.1;
  border-top-right-radius: 100%;
}

.offer-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .offer-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.offer-benefit {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.offer-benefit svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
}

.offer-benefit h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.offer-benefit p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.offer-benefit:nth-child(1),
.offer-benefit:nth-child(4) {
  background: hsla(0, 70%, 85%, 0.1);
}

.offer-benefit:nth-child(2) {
  background: hsla(40, 50%, 70%, 0.1);
}

.offer-benefit:nth-child(3) {
  background: hsla(220, 40%, 10%, 0.1);
}

.offer-benefit:nth-child(1) svg,
.offer-benefit:nth-child(4) svg { color: var(--secondary); }
.offer-benefit:nth-child(2) svg { color: var(--accent); }
.offer-benefit:nth-child(3) svg { color: var(--primary); }

.offer-includes {
  background: hsla(30, 20%, 94%, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.offer-includes .title {
  text-align: center;
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.offer-includes ul {
  list-style: none;
}

.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.offer-includes li .check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===== LEAD FORM SECTION ===== */
.lead-form-section {
  padding: 5rem 0;
  background: hsla(30, 20%, 94%, 0.3);
  position: relative;
  overflow: hidden;
}

.lead-form-card {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .lead-form-card { padding: 3rem; }
}

.lead-form-card .icon-circle {
  display: inline-flex;
  background: var(--gradient-rose);
  border-radius: 9999px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.lead-form-card .icon-circle svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.lead-form-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.lead-form-card > p {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
}

.trust-row svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.trust-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
}

.trust-bottom .label {
  font-weight: 600;
  color: var(--foreground);
}

.trust-bottom .desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

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

.modal {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-elegant);
}

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

.modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.modal-header .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gradient-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.modal-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px hsla(0, 70%, 85%, 0.2);
}

.form-group input.error {
  border-color: var(--destructive);
}

.form-error {
  font-size: 0.8rem;
  color: var(--destructive);
  margin-top: 0.25rem;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 2rem 0;
}

.modal-success .check-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: hsla(40, 50%, 70%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-success .check-circle svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.modal-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-success p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta .btn-cta {
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.site-footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: hsla(30, 30%, 97%, 0.8);
}

.footer-mec {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-mec img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.footer-mec .label {
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-mec .desc {
  font-size: 0.8rem;
  color: hsla(30, 30%, 97%, 0.7);
}

.footer-quote {
  font-style: italic;
  font-size: 0.875rem;
  color: hsla(30, 30%, 97%, 0.6);
  margin-top: 1.5rem;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsla(30, 30%, 97%, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--secondary); }

.footer-contact a .label {
  font-weight: 500;
  color: var(--primary-foreground);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid hsla(30, 30%, 97%, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: hsla(30, 30%, 97%, 0.6);
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: hsla(30, 30%, 97%, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--secondary); }

/* ===== HONEYPOT ===== */
.hp-field {
  position: absolute;
  left: -9999px;
}
