/* ==========================================================================
   3P EDUCAÇÃO — EMPRESAS (EDUCAÇÃO FINANCEIRA CORPORATIVA)
   Design System: Warm Cream (#FAF8F5), Deep Pine (#001E22), Brand Lime (#CEF5A4).
   ========================================================================== */

:root {
  /* Colors - Light Surface */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3ECE1;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F4F1EA;
  --bg-white: #FFFFFF;

  /* Colors - Dark Deep Pine */
  --bg-dark: #001E22;
  --bg-dark-card: #08282D;
  --bg-dark-elevated: #0E343A;
  --bg-dark-accent: #03171A;

  /* Harmonious Palettes */
  --pastel-lavender: #F4F1EA;
  --pastel-sage: #EBF3E8;
  --brand-deep: #001E22;
  --brand-forest: #144941;
  --brand-green: #3A7568;
  --brand-lime: #CEF5A4;
  --brand-lime-hover: #bde88c;

  /* Text Colors */
  --text-main: #001E22;
  --text-muted: #4A6360;
  --text-subtle: #7A918E;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #A5BCB9;
  --text-on-dark-subtle: #6D8481;

  /* Borders & Shadows */
  --border-light: rgba(0, 30, 34, 0.08);
  --border-strong: rgba(0, 30, 34, 0.16);
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-dark-strong: rgba(255, 255, 255, 0.22);

  --shadow-sm: 0 2px 8px rgba(0, 30, 34, 0.04);
  --shadow-md: 0 4px 18px rgba(0, 30, 34, 0.06), 0 12px 28px -6px rgba(0, 30, 34, 0.08);
  --shadow-lg: 0 12px 36px -8px rgba(0, 30, 34, 0.12);
  --shadow-dark: 0 20px 48px -12px rgba(0, 0, 0, 0.45);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Typography & Layout */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section-pad {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

.section-eyebrow.light {
  color: var(--brand-lime);
}

.section-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.section-title.light {
  color: var(--text-on-dark);
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.section-subtitle.light {
  color: var(--text-on-dark-muted);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  box-shadow: 0 4px 16px rgba(0, 30, 34, 0.15);
}

.btn-primary:hover {
  background-color: var(--brand-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 30, 34, 0.22);
}

.btn-lime {
  background-color: var(--brand-lime);
  color: var(--brand-deep);
  box-shadow: 0 4px 16px rgba(206, 245, 164, 0.35);
}

.btn-lime:hover {
  background-color: var(--brand-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 245, 164, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(0, 30, 34, 0.03);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid var(--border-dark-strong);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-on-dark);
}

.btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-empresas {
  position: relative;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  background: radial-gradient(100% 60% at 50% 0%, rgba(206, 245, 164, 0.18) 0%, rgba(250, 248, 245, 0) 100%), var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(20, 73, 65, 0.08);
  border: 1px solid rgba(20, 73, 65, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-forest);
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-forest);
  box-shadow: 0 0 0 0 rgba(20, 73, 65, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 73, 65, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(20, 73, 65, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 73, 65, 0); }
}

.hero-headline {
  font-size: clamp(2.15rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.035em;
  color: var(--text-main);
  margin-bottom: 1.35rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-reinforcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.15rem;
  background-color: var(--bg-card-subtle);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  align-self: flex-start;
}

.hero-reinforcement-badge svg {
  flex-shrink: 0;
  color: var(--brand-forest);
}

/* Hero Visual Image */
.hero-visual-col {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-visual-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(0, 30, 34, 0.14), 0 0 0 1px rgba(0, 30, 34, 0.08);
  background-color: var(--bg-card-subtle);
}

.hero-visual-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual-img-wrap:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   2. O PROBLEMA (PERSPECTIVA RH & DADOS REAIS)
   ========================================================================== */
.problem-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.problem-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.problem-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.problem-copy p strong {
  color: var(--text-main);
}

.problem-stats-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card-corporate {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card-corporate:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.stat-card-number {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-forest);
  line-height: 1;
}

.stat-card-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #c44040;
  background: rgba(196, 64, 64, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

.stat-card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.stat-card-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  border-top: 1px solid var(--border-light);
  padding-top: 0.6rem;
  width: 100%;
}

/* ==========================================================================
   3. O QUE A 3P LEVA PARA DENTRO DA EMPRESA (CARDS BENTO)
   ========================================================================== */
.what-we-bring-section {
  background-color: var(--bg-primary);
}

.cards-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bento-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.bento-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-feature-card:hover::before {
  background: var(--brand-forest);
}

.bento-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-forest);
  margin-bottom: 1.5rem;
}

.bento-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.bento-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   4. A PALESTRA: 8 PASSOS (O MIOLO DA PÁGINA)
   ========================================================================== */
.palestra-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
}

.palestra-tech-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.tech-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.tech-spec-pill svg {
  color: var(--brand-lime);
}

/* 8 Passos Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-lime);
  background: rgba(255, 255, 255, 0.09);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-lime);
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* O Que Acontece Na Sala */
.in-room-container {
  background: #062b31;
  border: 1px solid rgba(206, 245, 164, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.in-room-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.in-room-header h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.in-room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.in-room-card {
  background: rgba(0, 30, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.in-room-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-lime);
  margin-bottom: 0.75rem;
}

.in-room-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
}

.in-room-card p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

.in-room-final-banner {
  background: rgba(206, 245, 164, 0.08);
  border: 1px solid rgba(206, 245, 164, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.in-room-final-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.in-room-final-banner p {
  font-size: 0.925rem;
  color: var(--text-on-dark);
  line-height: 1.5;
}

.in-room-final-banner strong {
  color: var(--brand-lime);
}

/* ==========================================================================
   5. O QUE A EMPRESA RECEBE DE VOLTA
   ========================================================================== */
.return-section {
  background-color: var(--bg-primary);
}

.return-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.return-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.return-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(20, 73, 65, 0.08);
  color: var(--brand-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.return-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.65rem;
}

.return-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   6. COMO FUNCIONA (3 PASSOS)
   ========================================================================== */
.how-it-works-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.how-step-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-forest);
  margin-bottom: 1rem;
}

.how-step-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.how-step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   7. FAQ (QUEBRA DE OBJEÇÃO PARA RH)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand-forest);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.faq-trigger:hover {
  color: var(--brand-forest);
}

.faq-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-icon-circle svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-main);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-circle {
  background: var(--bg-dark);
}

.faq-item.active .faq-icon-circle svg {
  stroke: var(--brand-lime);
  transform: rotate(45deg);
}

.faq-content {
  display: none;
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-item.active .faq-content {
  display: block;
}

/* ==========================================================================
   8. FORMULÁRIO DE AGENDAMENTO (CTA FINAL EM BENTO CARD)
   ========================================================================== */
.form-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.form-wrapper-bento {
  background: radial-gradient(circle at top right, #05333a 0%, #001e22 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark-strong);
  box-shadow: var(--shadow-dark);
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--text-on-dark);
}

.form-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-copy-side h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}

.form-copy-side p {
  font-size: 1.05rem;
  color: var(--text-on-dark-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

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

.form-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-on-dark);
}

.form-highlight-item svg {
  color: var(--brand-lime);
  flex-shrink: 0;
}

.form-box-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
}

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

.form-box-card .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.35rem;
}

.form-box-card .form-group input,
.form-box-card .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-dark-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-box-card .form-group select option {
  background: var(--bg-dark-card);
  color: var(--text-on-dark);
}

.form-box-card .form-group input::placeholder {
  color: var(--text-on-dark-subtle);
}

.form-box-card .form-group input:focus,
.form-box-card .form-group select:focus {
  border-color: var(--brand-lime);
  box-shadow: 0 0 0 3px rgba(206, 245, 164, 0.2);
}

.form-submit-wrap {
  margin-top: 0.75rem;
}

.form-microcopy {
  display: block;
  text-align: center;
  font-size: 0.775rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.75rem;
}

.form-error {
  display: none;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #ff8b8b;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.success-message {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.success-message.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-lime);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
}

.success-message p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER (Site-Wide)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--border-dark);
  padding: 4.5rem 0 2.5rem;
}

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

.footer-brand .brand-logo img {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-on-dark-subtle);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark);
  margin-bottom: 1.25rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}

.footer-col-links a:hover {
  color: var(--brand-lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8rem;
  color: var(--text-on-dark-subtle);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-img-wrap {
    min-height: 380px;
    aspect-ratio: 16 / 10;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-bento-grid,
  .in-room-grid,
  .return-cards-grid,
  .how-steps-grid {
    grid-template-columns: 1fr;
  }

  .form-layout-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero-visual-img-wrap {
    min-height: 240px;
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }


  .steps-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-fields {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
