/* ============================================================
   JustFly Already — Main Stylesheet
   Color palette: Turquoise, Teal, Coral, Sunny Yellow
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --turquoise:        #20C9C0;
  --turquoise-light:  #E0FAF9;
  --teal:             #0D9488;
  --teal-dark:        #0A7A70;
  --teal-light:       #CCFBF1;
  --coral:            #FF6B6B;
  --coral-dark:       #E55555;
  --coral-light:      #FFE4E4;
  --sunny-yellow:     #FBBF24;
  --sunny-yellow-dark:#D97706;
  --yellow-light:     #FEF3C7;
  --white:            #FFFFFF;
  --off-white:        #F8FFFE;
  --light-gray:       #F1F5F9;
  --mid-gray:         #94A3B8;
  --dark:             #0F172A;
  --dark-soft:        #1E293B;
  --text:             #334155;
  --text-light:       #64748B;

  --radius-sm:  0.375rem;
  --radius:     0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  2rem;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--light-gray);
}

.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 148, 136, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 122, 112, 0.99);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-icon {
  font-size: 1.35rem;
}

/* Logo text styling */
.logo-plane {
  font-size: 1.6rem;
  color: var(--coral);
  line-height: 1;
}

.logo-word {
  font-size: 1.2rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
}

.logo-just,
.logo-already {
  color: var(--white);
}

.logo-fly {
  color: var(--coral);
}

.logo-img-nav {
  height: 38px;
  width: auto;
}

.logo-img-footer {
  height: 34px;
  width: auto;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Turquoise-to-teal gradient - the intended color scheme */
  background: linear-gradient(135deg, #0D9488 0%, #20C9C0 50%, #0A7A70 100%);
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 480px;
  height: 480px;
  background: var(--sunny-yellow);
  top: -160px;
  right: -120px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: 60px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--turquoise);
  top: 40%;
  right: 20%;
  opacity: 0.12;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.03); }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem;
  padding: 0.375rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sunny-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.headline-accent {
  color: var(--sunny-yellow);
  display: block;
}

.hero-subheadline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2.25rem;
}

/* Hero Form */
.hero-form {
  margin-bottom: 2rem;
}

.hero-form-row {
  display: flex;
  gap: 0.625rem;
  max-width: 640px;
  margin: 0 auto 0.75rem;
  flex-wrap: wrap;
}

.form-input {
  flex: 1 1 160px;
  height: 52px;
  padding: 0 1.1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  font-family: var(--font);
  font-size: 0.975rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1;
  vertical-align: middle;
}

.form-input::placeholder {
  color: var(--mid-gray);
}

.form-input:focus {
  border-color: var(--sunny-yellow);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
  background: var(--white);
}

.btn-hero-submit {
  height: 52px;
  padding: 0 1.75rem;
  flex-shrink: 0;
  font-size: 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.form-message {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.form-message.error {
  background: rgba(255,107,107,0.2);
  color: #FFD0D0;
  border: 1px solid rgba(255,107,107,0.4);
}

/* Social Proof Bar */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.proof-avatars {
  display: flex;
  gap: -4px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.12);
  margin-left: -6px;
}

.avatar:first-child { margin-left: 0; }

.proof-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

/* Flight Ticker */
.ticker-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 48px;
  margin-top: 3rem;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunny-yellow);
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.ticker-item .ticker-price {
  color: var(--sunny-yellow);
  font-weight: 700;
}

.ticker-item .ticker-sep {
  color: rgba(255,255,255,0.3);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  background: var(--turquoise-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 0.875rem;
}

.section-label-light {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

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

/* ---------- Benefits Grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

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

/* ---------- How It Works ---------- */
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.step-arrow {
  color: var(--mid-gray);
  font-size: 1.5rem;
  align-self: center;
  margin-top: -1rem;
}

/* ---------- Deal Cards ---------- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.deal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.deal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--turquoise-light);
}

.deal-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
}

.deal-badge-coral { background: var(--coral); }
.deal-badge-yellow { background: var(--sunny-yellow-dark); }

.deal-route {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.deal-body {
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
}

.deal-cities {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.deal-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.deal-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Locked card */
.deal-card-locked {
  overflow: hidden;
}

.deal-card-locked .deal-body,
.deal-card-locked .deal-header {
  filter: blur(5px);
  user-select: none;
}

.deal-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 1rem;
}

.lock-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.lock-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: var(--sunny-yellow);
  font-size: 0.9rem;
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
}

.cite-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--turquoise));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cite-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1.5rem;
  text-align: center;
}

.trust-badge + .trust-badge {
  border-left: 1px solid var(--light-gray);
}

.trust-badge i {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.badge-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.badge-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0D9488 0%, #20C9C0 60%, #0A7A70 100%);
  color: var(--white);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  top: -120px;
  right: -80px;
}

.cta-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--sunny-yellow);
  bottom: -60px;
  left: -40px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* CTA Form */
.cta-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 560px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.input-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
}

.form-input-light {
  flex: none;
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.4);
}

.form-input-light:focus {
  background: var(--white);
  border-color: var(--sunny-yellow);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

.btn-cta-submit {
  padding: 0.875rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.form-disclaimer-light {
  color: rgba(255,255,255,0.65);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
}

.faq-item[open] .faq-question {
  background: var(--turquoise-light);
  color: var(--teal-dark);
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0.875rem 1.25rem 1.1rem;
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.65;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-soft);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--turquoise);
}

.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3) !important;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hero { padding-top: 4rem; }

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

  .form-input,
  .btn-hero-submit {
    width: 100%;
    flex: none;
  }

  .step-arrow { display: none; }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-card { max-width: 100%; }

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

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

  .trust-badge + .trust-badge {
    border-left: none;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero { padding-top: 3.5rem; }
  .nav-cta { display: none; }
}
