/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  background: linear-gradient(135deg, #0D3A35 0%, #0F4540 50%, #0D3A35 100%);
  min-height: 100vh;
  padding: 10px;
  direction: rtl;
}

/* ═══════════════════════════════════════════
   SCROLL-REVEAL SYSTEM
   Elements start invisible; JS adds .visible
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.scale-in   { transform: scale(0.88); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.35s; }

/* ═══════════════════════════════════════════
   PAGE CONTAINER — entry animation on load
═══════════════════════════════════════════ */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: pageEnter 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
@keyframes pageEnter {
  to { opacity:1; transform:translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  background: linear-gradient(135deg, #0D3A35 0%, #0F4540 50%, #0D3A35 100%);
  padding: 30px 20px 35px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer ring behind logo */
.header::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,100% { transform: translateX(-50%) scale(1);   opacity:0.6; }
  50%      { transform: translateX(-50%) scale(1.2); opacity:1;   }
}

.logo-container {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.35s ease;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}
.logo-link:hover {
  transform: scale(1.04);
  background-color: rgba(255,255,255,0.08);
}

.company-logo {
  display: block;
  width: auto;
  max-width: 320px;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.4));
  opacity: 0;
  animation: logoIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

@keyframes logoIn {
  from { opacity:0; transform: scale(0.88) translateY(-10px); }
  to   { opacity:1; transform: scale(1)    translateY(0); }
}

/* Tablet */
@media (max-width: 900px) {
  .company-logo { max-width: 260px; max-height: 110px; }
}

/* Mobile */
@media (max-width: 700px) {
  .company-logo { max-width: 200px; max-height: 88px; }
  .logo-container { margin-bottom: 16px; }
}

.header h1 {
  font-size: 30px; font-weight: 700;
  margin: 10px 0 4px;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  opacity: 0;
  animation: slideDown 0.8s cubic-bezier(0.22,1,0.36,1) 0.7s forwards;
}
.header-tagline {
  font-size: 17px; font-weight: 300;
  color: rgba(201,168,76,0.9);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  opacity: 0;
  animation: slideDown 0.8s cubic-bezier(0.22,1,0.36,1) 0.85s forwards;
}
.header-sub {
  font-size: 15px; opacity: 0; line-height: 1.7;
  max-width: 620px; margin: 0 auto;
  animation: slideDown 0.8s cubic-bezier(0.22,1,0.36,1) 1.0s forwards;
  color: rgba(255,255,255,0.92);
}

@keyframes slideDown {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   CONTENT
═══════════════════════════════════════════ */
.content { padding: 35px 25px 40px; }

/* ═══════════════════════════════════════════
   SECTION TITLE
═══════════════════════════════════════════ */
.section-title {
  font-size: 26px; color: #1a4a3a;
  text-align: center;
  margin-bottom: 22px; font-weight: 700;
  padding-bottom: 14px;
  border-bottom: 3px solid #2d5c4a;
}

/* ═══════════════════════════════════════════
   INTRO FEATURES
═══════════════════════════════════════════ */
.intro-section { margin-bottom: 40px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  border-color: #2d5c4a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45,92,74,0.15);
}
.feature-icon { font-size: 32px; margin-bottom: 10px; }
.feature-card h3 { font-size: 16px; color: #1a4a3a; font-weight: 600; margin-bottom: 8px; }
.feature-card p  { font-size: 13px; color: #666; line-height: 1.6; }

/* ═══════════════════════════════════════════
   HOW IT WORKS — note box (now above plans)
═══════════════════════════════════════════ */
.note-section { margin-bottom: 40px; }

.note-box {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
  border: 2px solid #2d5c4a;
  border-radius: 15px;
  padding: 24px 28px;
  text-align: center;
}
.note-box h3 { font-size: 17px; color: #1a4a3a; font-weight: 700; margin-bottom: 14px; }

.how-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 4px;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
  padding: 0 12px;
  position: relative;
}
.how-step:not(:last-child)::after {
  content: '←';
  position: absolute;
  left: -4px; top: 24px;
  color: #2d5c4a;
  font-size: 20px;
  font-weight: 300;
}
.how-step-num {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #1a4a3a, #2d5c4a);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(26,74,58,0.25);
}
.how-step p { font-size: 13px; color: #444; line-height: 1.55; }
.how-step strong { color: #1a4a3a; }

/* ═══════════════════════════════════════════
   PLANS GRID
═══════════════════════════════════════════ */
.plans-section { margin-bottom: 40px; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 10px;
}

/* ─── PLAN CARD ─── */
.plan-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  position: relative;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  border-color: #2d5c4a;
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 40px rgba(45,92,74,0.16);
}
.plan-card.featured { border-color: #7a2d52; }
.plan-card.featured:hover {
  border-color: #7a2d52;
  box-shadow: 0 18px 40px rgba(122,45,82,0.2);
}

/* Selected state */
.plan-card.selected-plan {
  border-color: #1a4a3a !important;
  box-shadow: 0 0 0 4px rgba(26,74,58,0.18), 0 18px 40px rgba(45,92,74,0.2) !important;
}
.plan-card.featured.selected-plan {
  border-color: #7a2d52 !important;
  box-shadow: 0 0 0 4px rgba(122,45,82,0.2), 0 18px 40px rgba(122,45,82,0.2) !important;
}

.recommended-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, #7a2d52 0%, #a04470 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(122,45,82,0.4);
}

/* CTA button — sits between image and table */
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #1a4a3a 0%, #2d5c4a 100%);
  color: white;
  border: none;
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  border-radius: 0;
  letter-spacing: 0.01em;
}
.plan-cta:hover {
  background: linear-gradient(135deg, #2d5c4a 0%, #4a7c59 100%);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}
.plan-cta:active { opacity: 0.9; }
.plan-card.featured .plan-cta { background: linear-gradient(135deg, #7a2d52 0%, #a04470 100%); }
.plan-card.featured .plan-cta:hover {
  background: linear-gradient(135deg, #a04470 0%, #c05588 100%);
}

/* Plan body — grows to fill remaining height so tables align */
.plan-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Oven image area */
.plan-image {
  background: linear-gradient(135deg, #0D3A35 0%, #0F4540 100%);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0;
  gap: 0;
}

/* Shimmer sweep on hover */
.plan-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(201,168,76,0.07) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
.plan-card:hover .plan-image::after { transform: translateX(100%); }

/* Real oven photo */
.oven-photo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: calc(100% - 32px); /* leave room for label at bottom */
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.55));
}
.plan-card:hover .oven-photo {
  transform: scale(1.04) translateY(-3px);
}

/* Label sits at the bottom over a fade */
.plan-image-label {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 0 11px;
  background: linear-gradient(to top, rgba(7,31,28,0.75) 0%, transparent 100%);
}



/* Plan body */
.plan-title { font-size: 22px; font-weight: 700; color: #1a4a3a; margin-bottom: 4px; }
.plan-tagline { font-size: 13px; color: #888; margin-bottom: 8px; }
.plan-audience {
  font-size: 12px; color: #2d5c4a;
  background: #f0fdf8;
  border: 1px solid #c8ead8;
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}
.compare-row:last-of-type { border-bottom: none; }
.compare-row--empty { opacity: 0; pointer-events: none; }
.compare-label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; flex-shrink: 0; }
.compare-value { font-size: 16px; font-weight: 600; color: #1a4a3a; text-align: left; }
.compare-value .hl { color: #7a2d52; }

/* ═══════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════ */
.contact-section { margin-bottom: 8px; }

.contact-box {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 32px 28px 36px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Plan selector toggles */
.plan-selector {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.plan-toggle {
  flex: 1;
  min-width: 160px; max-width: 240px;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  background: white;
  user-select: none;
}
.plan-toggle:hover {
  border-color: #2d5c4a;
  box-shadow: 0 5px 15px rgba(45,92,74,0.1);
  transform: translateY(-2px);
}
.plan-toggle.active {
  border-color: #1a4a3a;
  background: linear-gradient(135deg, #f8fffe, #e8f5f0);
  box-shadow: 0 0 0 3px rgba(26,74,58,0.12), 0 5px 15px rgba(45,92,74,0.12);
  transform: translateY(-2px);
}
.plan-toggle.active.is-premium {
  border-color: #7a2d52;
  background: linear-gradient(135deg, #fff8fb, #f5e8ef);
  box-shadow: 0 0 0 3px rgba(122,45,82,0.12), 0 5px 15px rgba(122,45,82,0.12);
}
.plan-toggle-icon { font-size: 26px; margin-bottom: 6px; }
.plan-toggle-name { font-size: 15px; font-weight: 700; color: #1a4a3a; }
.plan-toggle.active.is-premium .plan-toggle-name { color: #7a2d52; }
.plan-toggle-desc { font-size: 11px; color: #999; margin-top: 3px; }

.toggle-check {
  display: none;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #1a4a3a, #2d5c4a);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  align-items: center; justify-content: center;
  margin: 8px auto 0;
}
.plan-toggle.active .toggle-check { display: flex; }
.plan-toggle.active.is-premium .toggle-check { background: linear-gradient(135deg, #7a2d52, #a04470); }

/* Also need "שניהם" option */
.plan-toggle.both-opt .plan-toggle-name { color: #555; }
.plan-toggle.both-opt.active { border-color: #555; background: #f8f8f8; box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
.plan-toggle.both-opt.active .toggle-check { background: #555; }

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.three-col { grid-template-columns: 1fr 1fr 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px; font-weight: 600;
  color: #1a4a3a;
}
.form-group input {
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 14px; color: #333;
  transition: all 0.3s ease;
  outline: none;
  direction: rtl;
}
.form-group input:focus {
  border-color: #2d5c4a;
  box-shadow: 0 0 0 3px rgba(45,92,74,0.1);
  transform: translateY(-1px);
}
.form-group input::placeholder { color: #bbb; }

/* Validation error state */
.form-group input.error { border-color: #e05555; box-shadow: 0 0 0 3px rgba(224,85,85,0.12); }
.field-error { font-size: 11px; color: #e05555; margin-top: 2px; display: none; }
.field-error.show { display: block; }

/* Submit button */
.send-btn {
  display: block; width: 100%;
  margin-top: 24px; padding: 16px 20px;
  background: linear-gradient(135deg, #1a4a3a 0%, #2d5c4a 100%);
  color: white; border: none; border-radius: 10px;
  font-family: 'IBM Plex Sans Hebrew', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
  will-change: transform;
}
.send-btn:hover {
  background: linear-gradient(135deg, #2d5c4a 0%, #4a7c59 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26,74,58,0.4);
}
.send-btn:active { transform: translateY(-1px); }
.send-btn::before {
  content: '';
  position: absolute; top:50%; left:50%;
  width:0; height:0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.send-btn:active::before { width: 300px; height: 300px; }

/* Success / error messages */
.form-message {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  text-align: center; line-height: 1.6;
}
.form-message.success {
  background: linear-gradient(135deg, #f0fff8, #d4f7e8);
  border: 2px solid #2d5c4a;
  color: #1a4a3a;
}
.form-message.error-msg {
  background: #fff5f5;
  border: 2px solid #e05555;
  color: #c0392b;
}
.form-message.show { display: block; animation: msgPop 0.5s cubic-bezier(0.22,1,0.36,1); }
@keyframes msgPop {
  from { opacity:0; transform:scale(0.9) translateY(10px); }
  to   { opacity:1; transform:scale(1)   translateY(0); }
}

/* Plan-selector validation hint */
.selector-hint {
  text-align: center;
  font-size: 12px; color: #e05555;
  margin-bottom: 10px;
  display: none;
}
.selector-hint.show { display: block; }

/* ═══════════════════════════════════════════
   URGENCY TIMER BANNER
═══════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(135deg, #7a2d52 0%, #a04470 100%);
  border-radius: 10px 10px 0 0;
  padding: 10px 16px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  animation: shimmerBanner 2.4s ease-in-out infinite;
}
@keyframes shimmerBanner {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.urgency-icon {
  font-size: 16px;
  animation: urgencyPulse 1.2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
.urgency-text {
  font-size: 13px; font-weight: 600;
  color: white; letter-spacing: 0.02em;
}
.urgency-count {
  font-size: 22px; font-weight: 700;
  color: #FFD97A;
  display: inline-block;
  min-width: 28px; text-align: center;
  transition: transform 0.15s ease, color 0.3s ease;
}
.urgency-count.tick {
  transform: scale(1.4);
  color: #fff;
}
.urgency-suffix {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}

/* ═══════════════════════════════════════════
   MADE IN ITALY BADGE
═══════════════════════════════════════════ */
.italy-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.italy-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 30px;
  background: #fafafa;
  transition: all 0.3s ease;
}
.italy-seal:hover { border-color: #2d5c4a; background: #f4fdf8; }
.italy-flag {
  display: flex; gap: 2px; align-items: center;
}
.italy-flag span {
  width: 8px; height: 18px; border-radius: 1px;
}
.italy-seal-text { font-size: 12px; font-weight: 600; color: #555; letter-spacing: 0.08em; }

.microcopy-strip {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}
.microcopy-strip strong { color: #1a4a3a; }
.page-footer {
  background: linear-gradient(135deg, #0D3A35 0%, #0F4540 100%);
  padding: 18px 20px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 12px; letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .feature-card { padding: 18px 12px; }
  .feature-card h3 { font-size: 14px; }
  .plan-image { height: 300px; }
  .plan-body { padding: 20px 16px 24px; }
  .form-row.three-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .content { padding: 22px 12px 30px; }
  .header h1 { font-size: 22px; }
  .header-sub { font-size: 14px; }
  .section-title { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .how-steps { flex-direction: column; align-items: center; gap: 18px; }
  .how-step::after { display: none; }
  .how-step { min-width: unset; width: 100%; max-width: 320px; }
  .plans-grid { gap: 10px; }
  .plan-image { height: 260px; }

  .plan-title { font-size: 17px; }
  .plan-tagline { font-size: 12px; margin-bottom: 14px; }
  .compare-label { font-size: 10px; }
  .compare-value { font-size: 13px; }
  .compare-row { padding: 9px 0; }
  .plan-cta { font-size: 13px; padding: 12px 10px; margin-top: 16px; }
  .recommended-badge { font-size: 11px; padding: 5px 10px; top: 10px; left: 10px; }
  .contact-box { padding: 22px 16px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-row.three-col { grid-template-columns: 1fr; }
  .note-box { padding: 18px 16px; }
}

@media (max-width: 400px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-image { height: 300px; }

  .plan-selector { flex-direction: column; align-items: center; }
  .plan-toggle { max-width: 100%; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .stagger-children > * { opacity:1 !important; transform:none !important; }
}