/* =========================================================================
   HouseSnap Landing — Dark Luxury Edition
   Tema: Oscuro premium · Dorado · Glassmorphism suave
   ========================================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  /* Fondos */
  --bg:            #06080f;
  --bg-deep:       #030508;
  --surface:       #0d1120;
  --surface-2:     #131827;
  --surface-glass: rgba(255,255,255,0.04);

  /* Dorado */
  --gold:          #c9a24b;
  --gold-light:    #e8c96b;
  --gold-bright:   #f5df99;
  --gold-dim:      rgba(201,162,75,0.18);
  --gold-glow:     rgba(201,162,75,0.35);

  /* Texto */
  --text:          #eef2f8;
  --text-secondary:#8a95a8;
  --text-muted:    #4a5568;

  /* Bordes */
  --border:        rgba(201,162,75,0.15);
  --border-hover:  rgba(201,162,75,0.45);
  --border-input:  rgba(255,255,255,0.1);

  /* Sombras */
  --shadow-card:   0 8px 40px rgba(0,0,0,0.55), 0 1px 0 rgba(201,162,75,0.12);
  --shadow-gold:   0 0 30px rgba(201,162,75,0.25), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-btn:    0 4px 20px rgba(201,162,75,0.3);

  /* UI */
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   999px;

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

  /* Timing */
  --t-fast:  150ms;
  --t-base:  220ms;
  --t-slow:  350ms;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in:  cubic-bezier(0.55, 0, 0.78, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;

  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,162,75,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(15,44,76,0.3) 0%, transparent 60%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(201,162,75,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 20%, rgba(201,162,75,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, rgba(201,162,75,0.12) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-nav { width: 100%; padding: 0 24px; display: flex; justify-content: center; align-items: center; gap: 3rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }

a { color: var(--gold); text-decoration: none; transition: color var(--t-base) var(--ease-out); }
a:hover { color: var(--gold-light); }

.text-gold { color: var(--gold); }
.muted { color: var(--text-muted); }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,8,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--t-base);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Hamburger menu (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--t-base);
}

.nav-toggle:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,162,75,0.2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--t-base);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6,8,15,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    text-align: center;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(201,162,75,0.08);
    width: 100%;
  }

  .nav-cta {
    margin: 0.5rem 2rem 0;
    padding: 10px 18px;
    width: calc(100% - 4rem);
    text-align: center;
    border-radius: var(--radius-sm);
  }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  box-shadow: var(--shadow-btn);
  color: var(--bg-deep);
  transform: scale(1.04);
}

.btn-secondary {
  background: rgba(201,162,75,0.08);
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(201,162,75,0.15);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  padding: 6rem 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin-bottom: 2rem;
  object-fit: contain;
  border-radius: var(--radius-sm);
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat { }

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero { padding: 3rem 0; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}

/* =========================================================================
   PROBLEM SECTION
   ========================================================================= */
.problem {
  padding: 5rem 0;
  background: rgba(13,17,32,0.5);
}

.problem h2 {
  margin-bottom: 3rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--t-base) var(--ease-out);
}

.problem-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.icon-problem {
  color: var(--gold);
  margin-bottom: 1rem;
}

.problem-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================================================================
   FEATURES SECTION
   ========================================================================= */
.features {
  padding: 5rem 0;
}

.features h2 {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(201,162,75,0.1), rgba(201,162,75,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--t-base) var(--ease-out);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(201,162,75,0.15), rgba(201,162,75,0.1));
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */
.video-section {
  padding: 5rem 0;
}

.video-section h2 {
  margin-bottom: 0.5rem;
}

.video-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.video-container video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================================
   BENEFITS SECTION
   ========================================================================= */
.benefits {
  padding: 5rem 0;
  background: rgba(13,17,32,0.5);
}

.benefits h2 {
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.benefit-item {
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 2rem;
  transition: all var(--t-base) var(--ease-out);
}

.benefit-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(6px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,162,75,0.1);
  border: 1px solid rgba(201,162,75,0.25);
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================================================
   PRICING SECTION
   ========================================================================= */
.pricing {
  padding: 5rem 0;
}

.pricing h2 { margin-bottom: 0.5rem; }

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(201,162,75,0.15), rgba(201,162,75,0.08));
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.price-note {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.price-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.price-highlight {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.05rem;
}

.pricing-total {
  text-align: center;
  background: rgba(201,162,75,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}

.total-calculation {
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin-top: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.calc-row.total {
  border: none;
  padding: 1rem 0;
  margin-top: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.calc-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.cta-section {
  padding: 5rem 0;
  background: rgba(13,17,32,0.8);
}

.cta-box {
  background: linear-gradient(135deg, rgba(201,162,75,0.12), rgba(201,162,75,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 0.5rem;
}

.cta-box p:nth-of-type(2) {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cta-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  width: 100%;
}

.contact-form input {
  width: 100%;
  padding: 14px 16px;
  min-height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--t-base);
}

.contact-form input::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.2);
}

.contact-form button {
  padding: 12px 32px;
  min-height: 44px;
  align-self: center;
}

/* ---- Privacy Checkbox ---- */
.privacy-check-wrapper {
  margin-bottom: 1.5rem;
}

.privacy-check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.privacy-check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.privacy-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold-dim);
  border-color: rgba(201,162,75,0.4);
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.privacy-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  transition: all 0.15s ease;
}

.privacy-check-input:checked + .privacy-check-box {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201,162,75,0.4);
}

.privacy-check-input:checked + .privacy-check-box::after {
  border-color: #06080f;
}

.privacy-check-label:hover .privacy-check-box {
  border-color: var(--gold);
  background: rgba(201,162,75,0.08);
}

.privacy-check-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.privacy-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201,162,75,0.4);
  transition: color 0.2s;
}

.privacy-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  text-align: left;
}

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-message.success {
  background: rgba(76,175,80,0.2);
  border: 1px solid rgba(76,175,80,0.4);
  color: #4caf50;
}

.form-message.error {
  background: rgba(231,76,60,0.2);
  border: 1px solid rgba(231,76,60,0.4);
  color: #ff6b6b;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .cta-box { padding: 2rem; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: auto; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
  background: rgba(3,5,8,0.8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  display: block;
}

.footer-logo-section h4 {
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 42px;
}

.footer-section h4 {
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =========================================================================
   UTILITIES & RESPONSIVE GLOBAL
   ========================================================================= */

/* Soporte para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Texto centrado en todas las secciones */
.hero, .problem, .features, .benefits, .pricing, .cta-section, .footer {
  text-align: center;
}

.benefits-grid, .footer-content { text-align: left; }
.benefit-item, .next-steps { text-align: left; }

/* Grids — colapsan a 1 columna en móvil */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.1rem; }

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

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }

  .hero-stats { flex-direction: column; gap: 1.5rem; }

  .cta-box { padding: 2rem 1.5rem; }

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

  /* Pricing total */
  .total-calculation { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container, .container-nav { padding: 0 16px; }

  .hero { padding: 2.5rem 0; }
  .problem, .features, .benefits, .pricing, .cta-section { padding: 3rem 0; }

  .hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }

  .stat-value { font-size: 1.6rem; }

  .feature-card, .problem-card { padding: 1.5rem; }
  .feature-number { width: 42px; height: 42px; font-size: 1.5rem; }

  .cta-box { padding: 1.5rem 1rem; }
  .contact-form button { width: 100%; }
}
