/* =============================================
   DESIGN SYSTEM — Obtenemos tu Indemnización
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --navy:        #1B2A4A;
  --navy-deep:   #111D35;
  --navy-light:  #2A3D63;
  --gold:        #C7923E;
  --gold-light:  #D9AD6A;
  --gold-dark:   #A9772F;
  --cream:       #F7F5F0;
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --gray-100:    #F3F3F3;
  --gray-200:    #E5E5E5;
  --gray-300:    #CCCCCC;
  --gray-500:    #888888;
  --gray-700:    #555555;
  --charcoal:    #2D2D2D;
  --text:        #333333;
  --text-light:  #6B6B6B;
  --success:     #2E7D4F;
  --danger:      #C0392B;
  --orange:      #E8721A;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container:   1140px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.14);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.highlight {
  color: var(--gold);
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--space-2xl) 0;
}
.section--light {
  background: var(--white);
}
.section--dark {
  background: var(--navy);
}
.section--cream {
  background: var(--cream);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.section__label--gold { color: var(--gold-light); }

.section__title {
  margin-bottom: var(--space-sm);
}
.section__title--white { color: var(--white); }

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(199, 146, 62, 0.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(199, 146, 62, 0.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-300);
}
.btn--outline-dark:hover {
  border-color: var(--navy);
  background: rgba(27,42,74,0.05);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}
.btn--full {
  width: 100%;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s var(--ease);
  padding: var(--space-sm) 0;
}
.navbar.scrolled {
  background: rgba(27, 42, 74, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 0.6rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  z-index: 1001;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-size: 0.78rem;
  line-height: 1.3;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
  font-weight: 400;
}
.logo-text strong {
  font-weight: 700;
  font-size: 0.88rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.navbar__menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar__menu a:hover { color: var(--white); }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.navbar__call-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: linear-gradient(135deg, #2E7D4F 0%, #27ae60 100%);
  color: var(--white) !important;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.72rem;
  line-height: 1.2;
  text-align: center;
  transition: all var(--transition) !important;
  box-shadow: 0 3px 12px rgba(46,125,79,0.3);
  animation: pulseGlow 2s ease-in-out infinite;
}
.navbar__call-btn:hover {
  background: linear-gradient(135deg, #27ae60 0%, #2E7D4F 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(46,125,79,0.4);
}
.navbar__call-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 3px 12px rgba(46,125,79,0.3); }
  50%      { box-shadow: 0 3px 20px rgba(46,125,79,0.55); }
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* =============================================
   POPUP — Llamada Gratis
   ============================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 29, 53, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease);
}
.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}

.popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(199,146,62,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(199,146,62,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  z-index: 10;
}
.popup__close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.popup__close svg {
  width: 18px;
  height: 18px;
}

.popup__content {
  position: relative;
  padding: var(--space-lg);
  text-align: center;
}

.popup__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.popup__logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}
.popup__brand-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  text-align: left;
  line-height: 1.3;
}
.popup__brand-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.popup__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.popup__highlight {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: var(--space-xs);
}

.popup__description {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup__form-group input[type="text"],
.popup__form-group input[type="email"],
.popup__form-group input[type="tel"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.popup__form-group input::placeholder {
  color: rgba(255,255,255,0.4);
}
.popup__form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(199,146,62,0.15);
}

.popup__form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}
.popup__form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.popup__form-group--checkbox label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.popup__form-group--checkbox label a {
  color: var(--gold-light);
  text-decoration: underline;
}

.popup__submit {
  margin-top: 0.5rem;
  font-size: 1rem !important;
  padding: 0.9rem 1.5rem !important;
}

.popup__success {
  text-align: center;
  padding: var(--space-lg) 0;
}
.popup__success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: rgba(46,125,79,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup__success .success-icon svg {
  width: 32px;
  height: 32px;
  color: #2E7D4F;
}
.popup__success h3 {
  font-family: var(--font-body);
  color: #2E7D4F;
  margin-bottom: var(--space-sm);
}
.popup__success p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =============================================
   1. HERO
   ============================================= */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 110px 0 40px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(199,146,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(199,146,62,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(199,146,62,0.15);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(199,146,62,0.2);
  margin-bottom: var(--space-md);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}
.hero__title .highlight {
  color: var(--gold);
  display: inline-block;
}

.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero__subtitle-highlight {
  margin: 0.5rem auto var(--space-md);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.hero__subtitle-highlight strong {
  color: var(--white);
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero__subtitle-highlight strong::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: -2%;
  width: 104%;
  height: 3px;
  background: var(--gold);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.8;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

/* Hero CTA Pulse Animation */
.hero__cta-group .btn--primary {
  position: relative;
  overflow: visible;
}
.hero__cta-group .btn--primary::before,
.hero__cta-group .btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.hero__cta-group .btn--primary::before {
  box-shadow: 0 0 0 0 rgba(199, 146, 62, 0.5);
  animation: heroPulse 2.5s infinite;
}
.hero__cta-group .btn--primary::after {
  box-shadow: 0 0 0 0 rgba(199, 146, 62, 0.3);
  animation: heroPulse 2.5s 0.4s infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(199, 146, 62, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(199, 146, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 146, 62, 0); }
}

/* Hero Image */
.hero__image-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto var(--space-md);
  transform: translateX(10px);
}

.hero__image {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 3px solid rgba(199,146,62,0.3);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transform: none;
}

.hero__badge-success {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--primary-color);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}

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

.hero__badge-success .badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(46,125,79,0.1);
  color: #2E7D4F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge-success .badge-icon svg {
  width: 18px;
  height: 18px;
}

.hero__badge-success .badge-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero__badge-success .badge-content strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
}
.hero__badge-success .badge-content span {
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.hero__trust-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.trust-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.trust-title strong {
  color: var(--gold);
}

.trust-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.trust-check {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   CALCULATOR SECTION
   ============================================= */
.calculator-section {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.calculator {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.calc-step {
  display: none;
}
.calc-step.active {
  display: block;
  animation: fadeSlideIn 0.4s var(--ease);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.calc-step__header {
  margin-bottom: var(--space-md);
}

.calc-step__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.calc-back-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.calc-back-btn:hover {
  background: var(--gray-100);
  color: var(--primary-color);
}
.calc-back-btn svg {
  width: 16px;
  height: 16px;
}

.calc-step__number {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.calc-step__title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.calc-step__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.2rem;
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition);
  cursor: pointer;
}
.calc-option:hover {
  border-color: var(--gold);
  background: rgba(199,146,62,0.05);
  transform: translateX(4px);
}
.calc-option.selected {
  border-color: var(--gold);
  background: rgba(199,146,62,0.08);
  box-shadow: 0 2px 12px rgba(199,146,62,0.15);
}

/* Calculator Direct Number Inputs */
.calc-input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.calc-number-input {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  justify-content: center;
}

.calc-input-field {
  width: 140px;
  font-size: 2.2rem;
  font-family: var(--font-heading);
  text-align: center;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  background: var(--white);
  transition: all var(--transition);
  -moz-appearance: textfield;
}

.calc-input-field::-webkit-outer-spin-button,
.calc-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input-field:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,146,62,0.15);
}

.calc-input-text {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 500;
}

.calc-next-btn {
  margin-top: var(--space-sm);
  padding: 0.8rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
}

.calc-option__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(199,146,62,0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.calc-option__text {
  flex: 1;
}
.calc-option__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.calc-option__text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Calculator Progress */
.calc-progress {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin-top: var(--space-lg);
  overflow: hidden;
}
.calc-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}

/* Calculator Result */
.calc-result {
  text-align: center;
  animation: fadeSlideIn 0.5s var(--ease);
}

.calc-result__header {
  margin-bottom: var(--space-md);
}

.calc-result__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-sm);
  background: rgba(46,125,79,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-result__icon svg {
  width: 36px;
  height: 36px;
  color: var(--success);
}

.calc-result__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.calc-result__amount {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.calc-result__range {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.calc-result__disclaimer {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.calc-result__breakdown {
  text-align: left;
  margin-bottom: var(--space-lg);
}
.calc-result__breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}
.calc-result__breakdown-item:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--navy);
  padding-top: 0.8rem;
  margin-top: 0.3rem;
  border-top: 2px solid var(--navy);
}
.calc-result__breakdown-label {
  color: var(--text-light);
}
.calc-result__breakdown-value {
  font-weight: 600;
  color: var(--navy);
}

.calc-result__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.calc-result__cta-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* =============================================
   2. PROBLEM SECTION
   ============================================= */
#problema {
  padding-top: var(--space-xl);
}

.problem-image-wrapper {
  max-width: 400px;
  width: 100%;
  margin: var(--space-md) auto var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.problem-hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.problem-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199,146,62,0.2);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199,146,62,0.1);
  border-radius: 12px;
  margin-bottom: var(--space-sm);
}
.problem-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.problem-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   3. AGITATION SECTION
   ============================================= */
.agitation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.agitation-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.agitation-text strong { color: var(--white); }

.agitation-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
}
.stat-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-card__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.agitation-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  color: #F1948A;
  font-size: 0.92rem;
  font-weight: 500;
}
.agitation-warning svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #E74C3C;
}

/* Comparison Cards */
.comparison-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.comparison-card--good {
  border-color: rgba(199,146,62,0.3);
}

.comparison-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: 0.9rem;
}
.comparison-card__header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.comparison-card__header--bad {
  background: rgba(192,57,43,0.15);
  color: #F1948A;
}
.comparison-card__header--good {
  background: rgba(199,146,62,0.15);
  color: var(--gold-light);
}

.comparison-card__list {
  padding: var(--space-sm) var(--space-md);
}
.comparison-card__list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.2rem;
  position: relative;
}
.comparison-card__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}
.comparison-card--good .comparison-card__list li::before {
  content: '✓';
  color: var(--gold);
}

/* =============================================
   4. SOLUTION SECTION
   ============================================= */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.solution-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.solution-list {
  list-style: none;
}
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-200);
}
.solution-list li:last-child { border-bottom: none; }
.solution-list svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.solution-list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.solution-list span {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Solution Feature Cards */
.solution-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.solution-feature-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  transition: all var(--transition);
}
.solution-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199,146,62,0.2);
}

.solution-feature-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.solution-feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.solution-feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* =============================================
   5. VALUE PROPOSITION
   ============================================= */
.value-prop {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden;
}

.value-prop__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(199,146,62,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.value-prop__content {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.value-prop__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.value-prop__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}
.value-prop__text strong { color: var(--white); }

.value-prop__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.vp-badge {
  text-align: center;
}
.vp-badge__icon {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.vp-badge__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* =============================================
   6. STEPS / PROCESS
   ============================================= */
.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-xl);
}
.step:last-child { padding-bottom: 0; }

.step__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199,146,62,0.08);
  border: 2px solid rgba(199,146,62,0.2);
  border-radius: 50%;
}

.step__content h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  margin-top: 0.3rem;
}
.step__content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.step__connector {
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(199,146,62,0.3), rgba(199,146,62,0.05));
}
.step:last-child .step__connector { display: none; }

.steps-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* =============================================
   7. TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 0;
}

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

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
}
.testimonial__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =============================================
   8. FAQ
   ============================================= */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--gold); }

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item__answer p {
  padding-bottom: var(--space-md);
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   9. URGENCY
   ============================================= */
.urgency {
  padding: var(--space-2xl) 0;
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

.urgency__content {
  text-align: center;
  max-width: 700px;
}

.urgency__icon {
  margin: 0 auto var(--space-md);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199,146,62,0.1);
  border-radius: 50%;
}
.urgency__icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.urgency__title {
  margin-bottom: var(--space-md);
}

.urgency__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.urgency__text strong { color: var(--navy); }

/* Premium Urgency List */
.urgency__list {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199,146,62,0.2);
  margin-bottom: var(--space-lg);
  list-style: none;
  text-align: left;
}

.urgency__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

.urgency__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.urgency__list li:first-child {
  padding-top: 0;
}

.urgency__list-icon {
  width: 32px;
  height: 32px;
  background: rgba(192, 57, 43, 0.1);
  color: #C0392B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.urgency__list li:last-child .urgency__list-icon {
  background: rgba(199,146,62,0.15);
  color: var(--gold);
}

.urgency__list-icon svg {
  width: 18px;
  height: 18px;
}

.urgency__list-content {
  display: flex;
  flex-direction: column;
}

.urgency__list-content strong {
  font-family: var(--font-body);
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.urgency__list-content span {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.urgency .btn {
  margin-top: var(--space-sm);
}

/* =============================================
   10. CONTACT / CTA FINAL
   ============================================= */
.contact {
  padding: var(--space-2xl) 0;
  background: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info__title {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.contact-info__title .highlight { color: var(--gold); }

.contact-info__text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.contact-info__benefits {
  list-style: none;
}
.contact-info__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.6rem 0;
}
.contact-info__benefits svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
}

.contact-form__title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.form-group .optional {
  font-weight: 400;
  color: var(--text-light);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,146,62,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--danger);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 0.25rem;
  font-weight: 500;
}
.form-group.has-error .form-error {
  display: block;
}

/* Checkbox */
.form-group--checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-group--checkbox label {
  flex: 1;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.form-group--checkbox label a {
  color: var(--gold);
  text-decoration: underline;
}
.form-group--checkbox .form-error {
  width: 100%;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
}

.contact-form .btn {
  margin-top: var(--space-sm);
}

/* Form Success */
.contact-form-success {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: rgba(46,125,79,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--success);
}
.contact-form-success h3 {
  font-family: var(--font-body);
  color: var(--success);
  margin-bottom: var(--space-sm);
}
.contact-form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-deep);
  padding-top: var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: var(--space-sm);
  line-height: 1.6;
}

.footer__links h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding: var(--space-md) 0;
}
.footer__bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  text-align: center;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.anim-fade-in,
.anim-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim-fade-in.visible,
.anim-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for children */
.problem-grid .anim-slide-up:nth-child(2),
.testimonials-grid .anim-slide-up:nth-child(2),
.solution-visual .solution-feature-card:nth-child(2) { transition-delay: 0.1s; }

.problem-grid .anim-slide-up:nth-child(3),
.testimonials-grid .anim-slide-up:nth-child(3),
.solution-visual .solution-feature-card:nth-child(3) { transition-delay: 0.2s; }

.problem-grid .anim-slide-up:nth-child(4) { transition-delay: 0.3s; }

.hero .anim-fade-in:nth-child(2) { transition-delay: 0.15s; }
.hero .anim-fade-in:nth-child(3) { transition-delay: 0.3s; }
.hero .anim-fade-in:nth-child(4) { transition-delay: 0.45s; }
.hero .anim-fade-in:nth-child(5) { transition-delay: 0.6s; }
.hero .anim-fade-in:nth-child(6) { transition-delay: 0.75s; }

/* Loading Spinner */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .agitation-layout,
  .solution-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right 0.4s var(--ease);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
    gap: var(--space-xs);
  }
  .navbar__menu.open { right: 0; }
  .navbar__menu a {
    display: block;
    padding: 0.7rem 0;
    font-size: 1rem;
    width: 100%;
  }
  .navbar__call-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
    gap: 0.1rem;
  }
  .navbar__call-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .navbar__toggle { display: flex; }

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero__content {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: center !important;
    padding: 0;
    width: 100%;
  }

  .hero__subtitle-highlight {
    white-space: nowrap;
    font-size: 1.05rem;
  }

  .hero__cta-group .btn--lg {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .agitation-stats {
    grid-template-columns: 1fr;
  }

  .value-prop__badges {
    flex-direction: column;
    gap: var(--space-md);
  }

  .step {
    gap: var(--space-md);
  }

  .hero__image-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  .hero__image {
    max-width: 100%;
    height: 200px;
  }

  .hero__badge-success {
    left: 0;
    bottom: -15px;
  }

  .calc-result__cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    padding: 100px 0 30px;
  }

  .contact-form-wrapper {
    padding: var(--space-md);
  }

  .calculator {
    padding: var(--space-md);
  }

  .popup__content {
    padding: var(--space-md);
  }

  .popup__title {
    font-size: 1.5rem;
  }
}

/* Calculator Contact Form (Step 6) */
.calc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.calc-form-group label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.calc-form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition);
}

.calc-form-group input:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(199,146,62,0.15);
}

.calc-form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.calc-form-group--checkbox input {
  margin-top: 4px;
}

.calc-form-group--checkbox label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.calc-form-group--checkbox a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* =============================================
   PRIVACY POPUP
   ============================================= */
.privacy-popup-container {
  max-width: 800px;
  width: 95%;
  max-height: 85vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.privacy-content {
  overflow-y: auto;
  padding: var(--space-xl);
  text-align: left;
}

.privacy-content h2.popup__title {
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
  text-align: left;
}

.privacy-content .privacy-date {
  font-size: 0.85rem;
  color: #CCCCCC;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.privacy-content h3 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin: var(--space-lg) 0 var(--space-sm);
}

.privacy-content p {
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.privacy-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.privacy-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.privacy-content ul li::before {
  content: '🔹';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.7rem;
}

.privacy-content strong {
  color: #FFFFFF;
}

.privacy-content a {
  color: var(--gold);
  text-decoration: underline;
}
