/* ==========================================================================
   ZOOTOM PRICING PAGE STYLES
   Pixel-faithful to the official Zootom design mockup.
   Fully responsive across Desktop, Tablet, and Mobile.
   ========================================================================== */

/* Page Base */
.pricing-page {
  background-color: #ffffff;
  color: #0f172a;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  -webkit-font-smoothing: antialiased;
}

.pricing-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-page .nav-link.active {
  color: #6366f1;
  position: relative;
}

.pricing-page .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2.5px;
  background: #6366f1;
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
  background: radial-gradient(circle at 88% 22%, #f3efff 0%, rgba(240, 247, 255, 0.7) 24%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
}

.eyebrow {
  text-transform: uppercase;
  color: #6366f1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pricing-hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #0f172a;
  max-width: 580px;
}

.pricing-hero h1 .gradient-text {
  background: linear-gradient(90deg, #3b82f6 0%, #7c3aed 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #475569;
  max-width: 480px;
  margin: 18px 0 28px;
}

/* 3 Hero Benefit Pills */
.hero-benefits {
  display: flex;
  align-items: center;
  gap: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1.5px solid #6366f1;
  border-radius: 10px;
  color: #6366f1;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

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

.benefit-item p {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #64748b;
  margin: 0;
}

.benefit-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

/* Hero Art (Right) */
.pricing-hero-art {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-art-backdrop {
  position: absolute;
  inset: 20px 10px 10px 40px;
  border-radius: 46% 48% 30% 36%;
  background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
  transform: rotate(-4deg);
  z-index: 0;
}

.hero-kids-img {
  position: relative;
  z-index: 1;
  max-width: 108%;
  width: 108%;
  height: 400px;
  object-fit: contain;
  object-position: bottom center;
  margin-bottom: -15px;
  filter: drop-shadow(0 12px 24px rgba(30, 41, 59, 0.08));
}

/* Handwritten Note on Hero */
.art-note {
  position: absolute;
  left: -8px;
  top: 54px;
  z-index: 2;
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.15;
  color: #2563eb;
  transform: rotate(-9deg);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.art-note span {
  display: block;
}

/* Hero Floating Badges */
.art-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  animation: floatBubble 3.5s ease-in-out infinite alternate;
}

.bubble-heart {
  right: 18px;
  top: 72px;
  background: #38bdf8;
}

.bubble-heart svg {
  width: 18px;
  height: 18px;
}

.bubble-play {
  right: -4px;
  bottom: 90px;
  background: #7c3aed;
  animation-delay: 1.5s;
}

.bubble-play svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.art-sparkle {
  position: absolute;
  color: #f59e0b;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}

.sparkle-1 { top: 32px; right: 80px; }
.sparkle-2 { top: 120px; right: 0; font-size: 0.85rem; color: #a855f7; }
.sparkle-3 { bottom: 150px; left: 24px; font-size: 0.9rem; color: #3b82f6; }

@keyframes floatBubble {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   PLANS SECTION
   ========================================================================== */
.plans-section {
  padding: 44px 0 52px;
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #0f172a;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Individual Plan Cards */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.08);
}

.plan-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.plan-icon svg {
  width: 22px;
  height: 22px;
}

.plan-icon-free {
  background: #eff6ff;
  color: #2563eb;
}

.plan-icon-premium {
  background: #f3e8ff;
  color: #7c3aed;
}

.plan-type-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.free-tag {
  color: #2563eb;
}

.premium-tag {
  color: #7c3aed;
}

.plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 4px;
}

.plan-desc {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #64748b;
  min-height: 38px;
  margin: 0 0 16px;
}

/* Pricing block */
.plan-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.price-val {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
}

/* Yearly Plan Pricing Special Layout */
.plan-pricing-yearly {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.yearly-top-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.orig-price {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 4px;
}

.save-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: #dcfce7;
  color: #15803d;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 4px;
}

.monthly-breakdown {
  font-size: 0.82rem;
  color: #64748b;
  margin: 4px 0 0;
}

/* Features List */
.features-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.35;
}

.check-circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
}

.check-circle svg {
  width: 10px;
  height: 10px;
}

.check-circle.green {
  background: #10b981;
}

.check-circle.purple {
  background: #6366f1;
}

/* Card Buttons */
.plan-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-plan-outline {
  border: 1.5px solid #7c3aed;
  color: #7c3aed;
  background: #ffffff;
}

.btn-plan-outline:hover {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.btn-plan-filled {
  background: linear-gradient(90deg, #6366f1 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-plan-filled:hover {
  background: linear-gradient(90deg, #4f46e5 0%, #6d28d9 100%);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
}

.cancel-note {
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 10px 0 0;
}

/* Premium Card Special Styling */
.premium-plan {
  background: linear-gradient(180deg, #fdfcff 0%, #f7f4ff 100%);
  border-color: #ede9fe;
}

.premium-plan.popular {
  border: 1.5px solid #c4b5fd;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #6366f1;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==========================================================================
   SAFETY STRIP BANNER
   ========================================================================== */
.safety-strip {
  padding: 10px 0 34px;
}

.safety-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 38px;
  border-radius: 22px;
  background: linear-gradient(90deg, #ebfcf3 0%, #f0fdf4 100%);
  border: 1px solid #bbf7d0;
  position: relative;
  overflow: hidden;
}

.safety-round {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #10b981;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.safety-round svg {
  width: 28px;
  height: 28px;
}

.safety-content {
  flex: 1;
}

.safety-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin: 0 0 6px;
}

.safety-content p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
  max-width: 600px;
  margin: 0;
}

/* Right Safety Art */
.safety-art {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.safety-shield-wrapper {
  position: relative;
}

.safety-shield {
  width: 82px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(124, 58, 237, 0.15));
}

.shield-sparkle {
  position: absolute;
  color: #10b981;
  font-size: 0.9rem;
}

.s-sp1 { top: -4px; left: -8px; color: #38bdf8; }
.s-sp2 { bottom: 6px; right: -8px; color: #10b981; }

.safety-script-wrap {
  display: flex;
  flex-direction: column;
}

.safety-script {
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1e3a8a;
  transform: rotate(-4deg);
  margin: 0;
  white-space: nowrap;
}

.safety-doodle {
  width: 110px;
  height: 14px;
  color: #3b82f6;
  margin-top: 2px;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-section {
  padding: 10px 0 36px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8faff 0%, #f1f6fd 100%);
  border: 1px solid #e2e8f0;
}

.comparison-copy .eyebrow {
  margin-bottom: 10px;
}

.comparison-copy h2 {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin: 0 0 16px;
}

.comparison-copy p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 24px;
}

.btn-comparison {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-comparison:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #edf2f7;
}

.comparison-table th {
  padding-top: 16px;
  padding-bottom: 14px;
  font-weight: 700;
  background: #ffffff;
}

.col-feature {
  text-align: left;
  padding-left: 20px !important;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
  white-space: nowrap;
}

/* Brand header items */
.brand-th {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
}

.th-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: scale(1.25);
  transition: transform 0.2s ease;
}

.th-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

/* Competitor brand logo images */
.competitor-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 7px;
  display: block;
  transition: transform 0.2s ease;
}

.competitor-logo-img:hover,
.th-logo:hover {
  transform: scale(1.1);
}

/* Zootom Column Highlight */
.zootom-header {
  background: rgba(239, 246, 255, 0.5) !important;
}

.zootom-col {
  background: rgba(239, 246, 255, 0.5);
  font-weight: 700;
}

/* Check / Cross Icons in Table */
.icon-chk-circle {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  margin: 0 auto;
}

.icon-chk-circle svg {
  width: 10px;
  height: 10px;
}

.icon-chk {
  display: inline-flex;
  color: #10b981;
  vertical-align: middle;
}

.icon-chk svg {
  width: 15px;
  height: 15px;
}

.icon-cross {
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 800;
}

.tag-limited {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.price-row td {
  border-bottom: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  padding-top: 14px;
  padding-bottom: 14px;
}

.price-cell.highlight {
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta {
  padding: 10px 0 48px;
}

.final-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 52px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f2efff 0%, #eaf3ff 100%);
  border: 1px solid #e0e7ff;
  overflow: hidden;
}

/* Left Decor */
.cta-left-decor {
  position: relative;
  flex: 0 0 170px;
  z-index: 1;
}

.cta-script {
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  color: #3730a3;
  transform: rotate(-6deg);
  margin: 0;
}

.paper-airplane {
  width: 26px;
  height: 26px;
  margin-top: 10px;
  margin-left: 54px;
  transform: rotate(18deg);
}

/* Center Content */
.cta-center-content {
  flex: 1;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.cta-center-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 20px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-btn-dark {
  background: #0f172a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.cta-btn-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.cta-btn-white {
  background: #ffffff;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  transition: all 0.2s ease;
}

.cta-btn-white:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-1px);
}

/* Right Art with 3D Shield and Floating Badges */
.cta-right-art {
  position: relative;
  flex: 0 0 150px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.cta-shield {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(124, 58, 237, 0.16));
}

.cta-badge {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.72rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.cta-badge-heart {
  left: 6px;
  bottom: 24px;
  background: #f43f5e;
}

.cta-badge-star {
  right: 12px;
  bottom: 12px;
  background: #eab308;
}

.cta-sparkle {
  position: absolute;
  font-size: 0.95rem;
  color: #818cf8;
}

.sp-1 { top: 12px; left: 16px; }
.sp-2 { top: 18px; right: 28px; font-size: 0.75rem; color: #a855f7; }

/* ==========================================================================
   FOOTER REFINEMENTS
   ========================================================================== */
.pricing-footer {
  border-top: 1px solid #e2e8f0;
  padding: 56px 0 28px !important;
  background: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets & Small Laptops (max-width: 1120px) */
@media (max-width: 1120px) {
  .pricing-hero h1 {
    font-size: 2.75rem;
  }

  .comparison-card {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 28px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .pricing-hero {
    padding: 40px 0 32px;
  }

  .pricing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .pricing-hero-copy {
    max-width: 600px;
    margin: 0 auto;
  }

  .pricing-hero h1 {
    max-width: none;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits {
    justify-content: center;
  }

  .pricing-hero-art {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    height: 330px;
  }

  .hero-kids-img {
    height: 340px;
  }

  .art-note {
    font-size: 1.4rem;
    left: 8px;
    top: 40px;
  }

  /* Plans on Tablet: 2-column or 1-column */
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .plan-grid .free-plan {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Comparison Section on Tablet */
  .comparison-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .comparison-copy {
    max-width: 540px;
    margin: 0 auto;
  }

  .final-cta-inner {
    padding: 36px 28px;
  }

  .cta-left-decor {
    flex: 0 0 130px;
  }

  .cta-script {
    font-size: 1.25rem;
  }

  .cta-right-art {
    flex: 0 0 120px;
  }
}

/* Medium Screens & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.35rem;
  }

  .hero-benefits {
    flex-wrap: wrap;
    gap: 16px;
  }

  .safety-strip-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .safety-art {
    margin-top: 8px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .plan-grid .free-plan {
    grid-column: auto;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 36px 20px;
  }

  .cta-left-decor {
    display: none;
  }

  .cta-right-art {
    margin-top: 10px;
  }
}

/* Mobile Phones (max-width: 540px) */
@media (max-width: 540px) {
  .pricing-hero {
    padding-top: 28px;
  }

  .pricing-hero h1 {
    font-size: 1.95rem;
  }

  .hero-lede {
    font-size: 0.95rem;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .benefit-item {
    width: 100%;
    max-width: 240px;
    justify-content: flex-start;
  }

  .pricing-hero-art {
    height: 270px;
  }

  .hero-kids-img {
    height: 280px;
    width: 115%;
    max-width: none;
  }

  .art-note {
    font-size: 1.15rem;
    left: 0;
    top: 30px;
  }

  .art-bubble {
    width: 30px;
    height: 30px;
  }

  .art-bubble svg {
    width: 14px;
    height: 14px;
  }

  .bubble-heart {
    right: 4px;
    top: 50px;
  }

  .bubble-play {
    right: -4px;
    bottom: 60px;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .price-val {
    font-size: 2.15rem;
  }

  .comparison-card {
    padding: 24px 16px;
  }

  .comparison-copy h2 {
    font-size: 1.55rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
    font-size: 0.72rem;
  }

  .cta-center-content h2 {
    font-size: 1.15rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}