/* ==========================================================================
   accommodation.dog — Waitlist Landing Page
   Design tokens derived from the dgrd tenant admin design system.
   Adapted for marketing: more whitespace, larger type, bolder CTAs.
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Palette — warm stone canvas, evergreen primary, amber accent */
  --stone-50:  hsl(40 33% 99%);
  --stone-100: hsl(40 20% 96%);
  --stone-200: hsl(40 12% 92%);
  --stone-300: hsl(40 12% 86%);
  --stone-400: hsl(40 10% 70%);
  --stone-500: hsl(40 8% 52%);
  --stone-600: hsl(210 10% 46%);
  --stone-700: hsl(210 18% 25%);
  --stone-800: hsl(210 24% 16%);
  --stone-900: hsl(210 28% 10%);

  --evergreen-50:  hsl(164 40% 96%);
  --evergreen-100: hsl(164 38% 88%);
  --evergreen-200: hsl(164 42% 72%);
  --evergreen-300: hsl(164 48% 48%);
  --evergreen-400: hsl(164 54% 34%);
  --evergreen-500: hsl(164 54% 24%);
  --evergreen-600: hsl(164 58% 18%);
  --evergreen-700: hsl(164 62% 13%);

  --amber-50:  hsl(38 80% 96%);
  --amber-100: hsl(38 78% 88%);
  --amber-200: hsl(38 76% 72%);
  --amber-300: hsl(38 74% 58%);
  --amber-400: hsl(38 72% 47%);
  --amber-500: hsl(38 76% 40%);
  --amber-600: hsl(38 80% 32%);

  /* Semantic */
  --bg:         var(--stone-100);
  --bg-card:    var(--stone-50);
  --fg:         var(--stone-800);
  --fg-muted:   var(--stone-600);
  --fg-subtle:  var(--stone-500);
  --primary:    var(--evergreen-500);
  --primary-fg: #ffffff;
  --accent:     var(--amber-400);
  --accent-fg:  #ffffff;
  --border:     var(--stone-300);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-md: 0 2px 8px -2px rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 4px 12px -3px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 8px 20px -4px rgb(0 0 0 / 0.08), 0 4px 8px -4px rgb(0 0 0 / 0.04);

  /* Radii */
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;

  /* Spacing */
  --section-pad-y: clamp(4rem, 8vw, 7rem);
  --container-max: 72rem;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--stone-900);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
}

p {
  max-width: 65ch;
}

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

.text-subtle {
  color: var(--fg-subtle);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- Section ---------- */
.section {
  padding-block: var(--section-pad-y);
}

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

.section-header p {
  margin-inline: auto;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 52ch;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--evergreen-400);
  background: var(--evergreen-50);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  padding-top: clamp(5rem, 12vw, 9rem);
  padding-bottom: var(--section-pad-y);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

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

.hero-content {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-brand svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--primary);
}

.hero-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-top: 1.5rem;
}

.hero-social-proof .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--evergreen-300);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ---------- Signup Form ---------- */
.signup-form {
  max-width: 34rem;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone-700);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--fg-subtle);
}

.form-input,
.form-select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--stone-300);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 4.5rem;
  max-height: 10rem;
  line-height: 1.5;
}

.form-input::placeholder {
  color: var(--stone-400);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(164 54% 24% / 0.12);
}

.form-input.error {
  border-color: hsl(0 65% 48%);
  box-shadow: 0 0 0 3px hsl(0 65% 48% / 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: hsl(0 65% 48%);
  min-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-fg);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--evergreen-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-submit:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-fg);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .spinner {
  display: block;
}

.btn-submit.loading .btn-text {
  opacity: 0.7;
}

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

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.visible {
  display: block;
  animation: successFadeIn 0.5s ease-out;
}

.form-success .checkmark-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--evergreen-50);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.form-success .checkmark-circle svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.form-success h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.form-success p {
  color: var(--fg-muted);
  margin-inline: auto;
  font-size: 1.05rem;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes checkBounce {
  from { opacity: 0; transform: scale(0.3); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Hero Image ---------- */
.hero-image {
  margin-top: 3.5rem;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  line-height: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- Photo Break ---------- */
.photo-break {
  position: relative;
  overflow: hidden;
  max-height: 400px;
  line-height: 0;
}

.photo-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.photo-break-casual {
  max-height: 500px;
}

.photo-break-casual img {
  height: 500px;
  object-position: center 30%;
}

/* ---------- Features Grid ---------- */
.features-section {
  background: var(--stone-50);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.feature-card {
  background: white;
  border: 1px solid hsl(40 12% 90%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-icon.evergreen {
  background: var(--evergreen-50);
  color: var(--primary);
}

.feature-icon.amber {
  background: var(--amber-50);
  color: var(--amber-500);
}

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

.feature-card p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Pet Owners Section ---------- */
.pet-owners-section {
  background: var(--bg);
}

.pet-owners-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.pet-owners-header-text {
  text-align: left;
}

.pet-owners-header-text .section-label {
  display: inline-block;
  margin-bottom: 1rem;
}

.pet-owners-header-text h2 {
  margin-bottom: 1rem;
}

.pet-owners-header-text p {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 52ch;
}

.pet-owners-header-image {
  width: 260px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  line-height: 0;
}

.pet-owners-header-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

.pet-owners-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  max-width: 58rem;
  margin-inline: auto;
}

.pet-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid hsl(40 12% 90%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pet-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pet-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--evergreen-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.pet-card h3 {
  margin-bottom: 0.6rem;
}

.pet-card p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-inline: auto;
}

/* ---------- Final CTA Section ---------- */
.final-cta {
  background: var(--evergreen-700);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  pointer-events: none;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, hsl(164 50% 20% / 0.5) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 50%, hsl(38 60% 30% / 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.final-cta .section-subtitle {
  color: hsl(164 30% 80%);
  font-size: 1.15rem;
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.final-cta .signup-form {
  background: hsl(164 40% 16%);
  border-color: hsl(164 30% 28%);
}

.final-cta .form-group label {
  color: hsl(164 20% 80%);
}

.final-cta .form-input,
.final-cta .form-select {
  background: hsl(164 35% 12%);
  border-color: hsl(164 25% 25%);
  color: white;
}

.final-cta .form-input::placeholder {
  color: hsl(164 15% 50%);
}

.final-cta .form-input:focus,
.final-cta .form-select:focus {
  border-color: var(--amber-300);
  box-shadow: 0 0 0 3px hsl(38 72% 47% / 0.2);
}

.final-cta .btn-submit {
  background: var(--accent);
  color: var(--stone-900);
}

.final-cta .btn-submit:hover {
  background: var(--amber-300);
}

.final-cta .form-success .checkmark-circle {
  background: hsl(164 40% 20%);
}

.final-cta .form-success .checkmark-circle svg {
  color: var(--amber-300);
}

.final-cta .form-success h3 {
  color: white;
}

.final-cta .form-success p {
  color: hsl(164 20% 75%);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid hsl(164 25% 25%);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--amber-200);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: hsl(164 20% 65%);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--stone-900);
  color: hsl(40 10% 60%);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-weight: 700;
  color: hsl(40 15% 80%);
  font-size: 1rem;
}

.footer a {
  color: hsl(40 10% 60%);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: hsl(40 15% 80%);
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: hsl(210 15% 20%);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-card:hover,
  .pet-card:hover {
    transform: none;
  }

  .hero-social-proof .dot {
    animation: none;
    opacity: 1;
  }

  .btn-submit:hover {
    transform: none;
  }

  .form-success .checkmark-circle {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .form-success.visible {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .stat-number {
    transition: none;
  }
}

/* ---------- Checkbox Grid ---------- */
.form-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.form-fieldset legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 0.6rem;
}

.form-fieldset legend .optional {
  font-weight: 400;
  color: var(--fg-subtle);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--stone-400);
  background: var(--stone-200);
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--stone-300);
  background: white;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.checkbox-label input:checked ~ .checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsl(164 54% 24% / 0.15);
}

.checkbox-label input:checked ~ .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.checkbox-label input:focus-visible ~ .checkbox-box {
  box-shadow: 0 0 0 3px hsl(164 54% 24% / 0.2);
}

.checkbox-label:has(input:checked) {
  border-color: hsl(164 54% 24% / 0.3);
  background: hsl(164 40% 96%);
}

/* Dark CTA section checkbox overrides */
.final-cta .form-fieldset legend {
  color: hsl(164 20% 80%);
}

.final-cta .checkbox-label {
  border-color: hsl(164 25% 25%);
  background: hsl(164 35% 12%);
  color: hsl(164 15% 90%);
}

.final-cta .checkbox-label:hover {
  border-color: hsl(164 30% 35%);
  background: hsl(164 30% 16%);
}

.final-cta .checkbox-box {
  border-color: hsl(164 25% 30%);
  background: hsl(164 30% 10%);
}

.final-cta .checkbox-label input:checked ~ .checkbox-box {
  background: var(--amber-400);
  border-color: var(--amber-400);
  box-shadow: 0 0 0 2px hsl(38 72% 47% / 0.2);
}

.final-cta .checkbox-label input:checked ~ .checkbox-box::after {
  border-color: var(--evergreen-700);
}

.final-cta .checkbox-label:has(input:checked) {
  border-color: hsl(38 72% 47% / 0.3);
  background: hsl(164 30% 14%);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .pet-owners-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pet-owners-header-text {
    text-align: center;
  }

  .pet-owners-header-text p {
    margin-inline: auto;
  }

  .pet-owners-header-image {
    width: 200px;
    margin-inline: auto;
  }

  .pet-owners-header-image img {
    height: 260px;
  }

  .photo-break,
  .photo-break img {
    max-height: 250px;
    height: 250px;
  }

  .photo-break-casual,
  .photo-break-casual img {
    max-height: 300px;
    height: 300px;
  }

  .cta-bg-image {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

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

  .signup-form {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .stats-bar {
    gap: 1.5rem;
  }
}
