/* === Letecký den Břeclav 2026 — VIP registration LP === */

/* TOKEN_START */
:root {
  /* Brand Colors */
  --purple-50: #e7e7f2;
  --purple-100: #c3c2df;
  --purple-300: #7574b2;
  --purple-500: #433c94;
  --purple-700: #382d80;
  --purple-900: #23105f;

  --gold-50: #ffcc00;
  --gold-300: #eabb00;
  --gold-500: #e0af00;
  --gold-700: #d6a700;

  --dark-500: #363c43;
  --dark-700: #272d34;
  --dark-900: #10171c;

  --neutral-50: #f9f9f9;
  --neutral-100: #f5f5f5;
  --neutral-200: #ededed;
  --neutral-400: #d6d6d6;
  --neutral-600: #6b6b6b;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;
  --line-height: 1.6;

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

  /* Layout */
  --max-width: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition: 0.2s ease;
}
/* TOKEN_END */

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--dark-900);
  background: var(--neutral-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--purple-700); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

/* WOM-aligned section variants */
.section--light { background: var(--neutral-50); }
.section--purple { background: var(--purple-900); color: var(--white); }
.section--form { background: var(--neutral-100); }

/* WOM section header (BEM) */
.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section__title {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--purple-900);
}
.section__title-note {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--neutral-600);
  display: inline-block;
  margin-left: var(--space-xs);
}
.section--dark .section__title,
.section--purple .section__title { color: var(--white); }
.section__subtitle {
  color: var(--neutral-600);
  font-size: var(--font-size-lg);
  margin-top: var(--space-sm);
}
.section--purple .section__subtitle { color: rgba(255, 255, 255, 0.85); }

/* === Site Header === */
.site-header {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--white);
  padding: var(--space-md) 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.site-header__logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
}

.site-header__logo:hover { text-decoration: none; opacity: 0.9; }

.site-header__brand {
  font-size: var(--font-size-lg);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.site-header__tagline {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gold-50);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__info {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--font-size-sm);
  opacity: 0.9;
}

.site-header__date { font-weight: 700; color: var(--gold-50); }

/* === Site Footer === */
.site-footer {
  background: var(--dark-900);
  color: var(--neutral-400);
  padding: var(--space-2xl) 0;
  margin-top: 0;
  font-size: var(--font-size-sm);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__org,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.site-footer__org strong { color: var(--white); }

.site-footer a { color: var(--neutral-400); }
.site-footer a:hover { color: var(--white); }

/* === Hero === */
.hero {
  background:
    linear-gradient(135deg, rgba(35, 16, 95, 0.92) 0%, rgba(56, 45, 128, 0.85) 100%);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(117, 116, 178, 0.25), transparent 50%);
  pointer-events: none;
}

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

.hero__eyebrow {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-50);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, var(--font-size-4xl));
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__date {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gold-50);
  margin-bottom: var(--space-lg);
}

.hero__lead {
  font-size: var(--font-size-lg);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  opacity: 0.92;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  color: var(--purple-900);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 175, 0, 0.4);
  text-decoration: none;
}

.btn--primary:active { transform: translateY(0); }

.btn--primary:disabled {
  background: var(--neutral-400);
  color: var(--neutral-600);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  text-decoration: none;
  color: var(--white);
}

.btn--lg {
  padding: 1.125rem 3rem;
  font-size: var(--font-size-xl);
}

/* === Facts strip — WOM homepage pattern (purple-900 bg + gold labels) === */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.facts--4col { grid-template-columns: repeat(4, 1fr); max-width: 1000px; }
.fact {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--purple-900);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.fact:first-child { border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg); }
.fact:last-child { border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0; border-right: none; }
.fact__icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.fact__label { font-weight: 800; font-size: var(--font-size-xl); color: var(--gold-50); }
.fact__value { color: rgba(255,255,255,0.7); font-size: var(--font-size-sm); margin-top: var(--space-xs); text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 900px) {
  .facts--4col { grid-template-columns: repeat(2, 1fr); }
  .facts--4col .fact:nth-child(2) { border-right: none; }
  .facts--4col .fact:nth-child(1), .facts--4col .fact:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .facts--4col .fact:first-child { border-radius: var(--border-radius-lg) 0 0 0; }
  .facts--4col .fact:nth-child(2) { border-radius: 0 var(--border-radius-lg) 0 0; }
  .facts--4col .fact:nth-child(3) { border-radius: 0 0 0 var(--border-radius-lg); border-right: 1px solid rgba(255,255,255,0.1); }
  .facts--4col .fact:nth-child(4) { border-radius: 0 0 var(--border-radius-lg) 0; border-right: none; }
}
@media (max-width: 480px) {
  .facts--4col { grid-template-columns: 1fr; }
  .facts--4col .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); border-radius: 0; }
  .facts--4col .fact:first-child { border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0; }
  .facts--4col .fact:last-child { border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); border-bottom: none; }
}

/* Sub-line below facts strip with practical timing details */
.facts-meta {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

/* === Program List === */
.program-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.program-list li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  line-height: 1.45;
}

.program-list li strong {
  color: var(--gold-50);
  display: block;
  font-size: var(--font-size-lg);
  margin-bottom: 2px;
}

/* === Price Table (vyhlídkové lety) === */
.price-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.price-table th,
.price-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--neutral-200);
}

.price-table thead th {
  background: var(--purple-900);
  color: var(--white);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--purple-50);
}

.price-table td:nth-child(2) {
  font-weight: 800;
  color: var(--purple-700);
  font-size: var(--font-size-lg);
}

/* === Arrival Grid === */
.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.arrival-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--purple-900);
  margin: var(--space-lg) 0 var(--space-xs);
}

.arrival-title:first-child {
  margin-top: 0;
}

.arrival-grid p {
  margin-bottom: var(--space-sm);
}

.link-purple {
  color: var(--purple-700);
  font-weight: 600;
}

.arrival-map {
  position: relative;
}

.arrival-map__link {
  display: block;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: zoom-in !important;
}

.arrival-map__link img {
  display: block;
  width: 100%;
  height: auto;
}

.arrival-map__zoom {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  pointer-events: none;
}

.arrival-map__placeholder {
  background: var(--neutral-200);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl);
  text-align: center;
  color: var(--neutral-600);
  font-size: var(--font-size-sm);
}

/* === Form Layout === */
.form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.form-section {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-section__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--purple-50);
}

.form-section__subtitle {
  font-size: var(--font-size-base);
  color: var(--neutral-600);
  margin-bottom: var(--space-lg);
}

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

.form-group--narrow input { max-width: 200px; }

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

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

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--dark-700);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-label--required::after {
  content: ' *';
  color: #c0392b;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--dark-900);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(67, 60, 148, 0.1);
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #c0392b;
}

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

.form-hint {
  font-size: var(--font-size-sm);
  color: var(--neutral-600);
  margin-top: var(--space-xs);
}

.form-error {
  font-size: var(--font-size-sm);
  color: #c0392b;
  margin-top: var(--space-xs);
  font-weight: 600;
}

/* === ARES Autocomplete === */
.autocomplete-wrap { position: relative; }

.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border: 2px solid var(--purple-300);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  max-height: 320px;
  overflow-y: auto;
}

.autocomplete-dropdown.is-open { display: block; }

.autocomplete-item {
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  border-bottom: 1px solid var(--neutral-200);
  transition: background var(--transition);
}

.autocomplete-item:last-child { border-bottom: none; }

.autocomplete-item:hover,
.autocomplete-item.is-active {
  background: var(--purple-50);
}

.autocomplete-item__name {
  font-weight: 700;
  color: var(--dark-900);
}

.autocomplete-item__meta {
  font-size: var(--font-size-sm);
  color: var(--neutral-600);
  margin-top: 2px;
}

.autocomplete-empty {
  padding: var(--space-md);
  color: var(--neutral-600);
  font-size: var(--font-size-sm);
  text-align: center;
}

.ares-status {
  font-weight: 600;
  min-height: 1.2em;
}

/* === Checkboxes & Radios === */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  margin-bottom: var(--space-sm);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--purple-700);
  flex-shrink: 0;
}

.form-check__label {
  font-size: var(--font-size-base);
  line-height: 1.4;
}

/* === Radio Cards === */
.radio-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.radio-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
}

.radio-card:hover {
  border-color: var(--purple-300);
  background: var(--purple-50);
}

.radio-card.is-selected {
  border-color: var(--purple-700);
  background: var(--purple-50);
}

.radio-card--preferred {
  border-color: var(--gold-500);
}

.radio-card--preferred.is-selected {
  border-color: var(--purple-700);
  background: linear-gradient(135deg, var(--purple-50) 0%, rgba(255, 204, 0, 0.1) 100%);
}

.radio-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--purple-700);
  flex-shrink: 0;
}

.radio-card__content { flex: 1; }

.radio-card__title {
  font-weight: 700;
  color: var(--dark-900);
}

.radio-card__meta {
  font-size: var(--font-size-sm);
  color: var(--neutral-600);
  margin-top: 2px;
}

/* === Flight grid === */
.flight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.flight-item {
  background: var(--neutral-50);
  border: 2px solid var(--neutral-200);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
}

.flight-item__label {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--purple-900);
  margin-bottom: var(--space-xs);
}

.flight-item__price {
  font-size: var(--font-size-sm);
  color: var(--neutral-600);
  margin-bottom: var(--space-md);
}

.flight-item input[type="number"] {
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.flight-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* === Confirm Checkbox === */
.confirm-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--gold-50);
  border-radius: var(--border-radius);
  cursor: pointer;
}

.confirm-check input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  accent-color: var(--purple-900);
  flex-shrink: 0;
}

.confirm-check__label {
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--purple-900);
  line-height: 1.4;
}

/* === Toggle Link === */
.toggle-link {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--purple-700);
  cursor: pointer;
  margin-top: var(--space-sm);
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
}

.toggle-link:hover { text-decoration: underline; }

/* === Contact rows === */
.contact-row {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--neutral-200);
}
.contact-row:first-child { border-top: 0; padding-top: 0; }

.contact-row__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.contact-row__label {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-row__remove {
  background: none;
  border: 0;
  color: var(--neutral-600);
  font-size: var(--font-size-sm);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: inherit;
}

.contact-row__remove:hover {
  color: #c0392b;
  background: #fce4ec;
}

/* === Submit === */
.form-submit {
  text-align: center;
  padding: var(--space-xl) 0;
}

/* === Error Banner === */
.error-banner {
  background: #fdf2f2;
  border: 2px solid #e74c3c;
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  color: #c0392b;
}

.error-banner__title {
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.error-banner ul {
  margin: 0;
  padding-left: var(--space-lg);
}

/* === Lightbox === */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  cursor: zoom-out;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.is-open { display: flex; }

.lightbox-overlay img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

/* === Thank You Page === */
.thankyou {
  text-align: center;
  padding: var(--space-4xl) 0;
}

.thankyou__icon {
  font-size: 4rem;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}

.thankyou h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--purple-900);
  margin-bottom: var(--space-md);
}

.thankyou p {
  font-size: var(--font-size-lg);
  color: var(--dark-500);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.thankyou__summary {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  margin: var(--space-xl) auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.thankyou__summary dt {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: var(--space-md);
}

.thankyou__summary dt:first-child { margin-top: 0; }

.thankyou__summary dd {
  font-size: var(--font-size-lg);
  color: var(--dark-900);
  margin-left: 0;
}

/* === Responsive === */
@media (max-width: 900px) {
  .arrival-grid { grid-template-columns: 1fr; }
}

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

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

  .site-header__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-header__info {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .form-section { padding: var(--space-lg); }

  .hero { padding: var(--space-3xl) 0 var(--space-2xl); }
  .hero__cta .btn { flex: 1; min-width: 0; }

  .section { padding: var(--space-2xl) 0; }
  .section-title { font-size: var(--font-size-xl); }
}

@media (max-width: 480px) {
  .btn--lg {
    width: 100%;
    padding: 1rem;
  }
  .price-table th,
  .price-table td { padding: var(--space-sm); font-size: var(--font-size-sm); }
}
