:root {
  --primary-green: #61a495;
  --secondary-green: #6dbe84;
  --light-green: #b8dfd0;
  --pale-green: #e8f3ee;
  --mint: #f0f7f4;
  --stage-card-active: #b8dfd0;
  --stage-active-bg: #D7EDE4;
  --background: #fbfbfb;
  --text-dark: #1a1a1a;
  --text-body: #444444;
  --text-gray: #777777;
  --text-light: #999999;
  --white: #ffffff;
  --dark-bg: #1e2a26;
  --dark-card: #263330;

  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-width: 1200px;
  --section-padding: 100px;
  --card-radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== COMMON SECTION STYLE ===== */
.section-title {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 17px;
  color: var(--text-dark);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.section-description.light {
  color: rgba(255, 255, 255, 0.65);
}

.section-footnote {
  text-align: center;
  color: var(--text-dark);
  font-size: 17px;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.logo-image {
  height: 32px;
  width: auto;
}

.logo-image-nav {
  height: 48px;
  width: auto;
}

.logo-image-text {
  height: 40px;
  width: auto;
} 

.logo-emoji {
  font-size: 28px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-green);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: var(--text-dark);
  color: var(--white);
  font-family: var(--font-family);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--mint) 0%, var(--background) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-right: 60px;
  align-items: center;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 80px;
  margin-bottom: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 50px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 17px;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 2px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 36px 6px 6px;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.store-button:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.store-button:hover .store-icon {
  fill: var(--white);
}

.store-icon {
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-small {
  font-size: 16px;
  font-weight: 500;
}

.store-name {
  font-size: 16px;
  font-weight: 600;
}

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 10px;
  margin: 0 auto;
}

.phone-mockup-small {
  width: 260px;
  height: 520px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 100%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen-screenshot {
  background: none;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.screen-content {
  text-align: center;
}

.stage-card-preview {
  text-align: center;
}

.stage-icon-big {
  font-size: 80px;
  margin-bottom: 12px;
}

.stage-icon-big-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-card-preview.small .stage-icon-big {
  font-size: 60px;
}

.stage-card-preview h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stage-card-preview p {
  color: var(--text-gray);
  font-size: 14px;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label-wrapper {
  text-align: center;
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  background: var(--stage-card-active);
  color: var(--text-dark);
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--light-green);
}

/* Keep light variants for potential dark sections */
.section-label.dark-variant {
  background: rgba(255, 255, 255, 0.15);
  color: var(--light-green);
}


/* ===== METHOD SECTION ===== */
.method-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.method-card {
  width: 320px;
  height: 260px;
  padding: 24px;
  background: linear-gradient(180deg, #f1f6f4 0%, #f9fafa 100%);
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.method-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  display: block;
  margin-right: auto;
  object-fit: contain;
  border-radius: 12px;
}

.method-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 22px;
}

/* ===== STAGES SECTION ===== */
.stages-section {
  padding: var(--section-padding) 0;
  background: #f2f7f5;
}

.stages-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.stages-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stage-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px 12px 12px;
  background: var(--white);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.stage-row:hover {
  border-color: var(--light-green);
}

.stage-row.active {
  border-color: var(--light-green);
  background: var(--stage-active-bg);
}

.stage-thumb {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
}

.stage-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.stage-info h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  margin: 0;
  line-height: 1.3;
}

.stage-age-badge {
  display: inline-block;
  padding: 2px 12px 2px 8px;
  background: var(--stage-active-bg);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.stage-focus {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.stage-detail-card {
  width: 500px;
  height: 680px;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.stage-detail-image {
  width: 100%;
  height: 236px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.stage-detail-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 24px;
  text-align: left;
}

.stage-detail-card h4 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.stage-detail-desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.stage-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.stage-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

.stage-checklist .check {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  background: #f2f7f5;
}

.how-scroll-track {
  position: relative;
  height: 500vh;
}

.how-sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 24px 0;
  box-sizing: border-box;
}

.how-sticky-content .container {
  width: 100%;
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.how-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-phone-stack {
  position: relative;
  width: min(95%, 280px);
  aspect-ratio: 375 / 814;
  margin: 0 auto;
  background: var(--white);
  border-radius: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.how-phone-viewport {
  position: absolute;
  inset: 10px;
  border-radius: 32px;
  overflow: hidden;
}

.how-phone-strip {
  position: relative;
  width: 100%;
  height: 100%;
}

.how-phone-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.how-phone-frame.active {
  opacity: 1;
}

.how-phone-bottom-nav {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 0 0 32px 32px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.how-phone-bottom-nav.hidden {
  opacity: 0;
}

.how-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-feature-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  opacity: 0.35;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.how-feature-item.active {
  opacity: 1;
  transform: translateX(0);
}

.how-feature-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.how-feature-icon-wrap {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-feature-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.how-feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.how-feature-item p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.comparison-table {
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 250px 1fr 1fr;
  gap: 0;
}

.comparison-header {
  background: var(--pale-green);
  border: 1px solid #c4ceca;
  border-radius: 24px 24px 0 0;
}

.comparison-header .comparison-col {
  padding: 24px 32px;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
}

.comparison-row {
  border: 1px solid #e1e6e4;
  border-top: none;
}

.comparison-row:last-child {
  border-radius: 0 0 24px 24px;
}

.comparison-col {
  padding: 24px 32px;
  font-size: 17px;
  line-height: 1.5;
}

.comparison-col-label {
  font-weight: 400;
  color: var(--text-dark);
  font-size: 17px;
}

.comparison-row .comparison-col-label {
  display: flex;
  align-items: center;
}

.comparison-col-genibee {
  color: var(--text-dark);
  text-align: center;
}

.comparison-col-traditional {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* ===== SESSION SECTION ===== */
.session-section {
  padding: var(--section-padding) 0;
  background: #f9faf9;
}

.session-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.session-card {
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.session-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.session-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.session-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== PRINTABLES ===== */
.printables-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.printables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 20px;
  margin-right: 10px;
}

.printable-card {
  width: 325px;
  height: 325px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 4/3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.printable-img {
  width: 95%;
  height: 95%;
  object-fit: fill;
  display: block;
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-padding) 0;
  background: #f9faf9;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.faq-toggle {
  display: none;
}

.faq-answer {
  max-height: none;
  overflow: visible;
}

.faq-answer p {
  padding: 8px 28px 18px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--background);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--text-gray);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--primary-green);
}

.footer-text {
  font-size: 14px;
  color: var(--text-light);
}

.footer-legal {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-legal a {
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: var(--primary-green);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 72px;
  background: linear-gradient(180deg, var(--mint) 0%, var(--background) 30%);
}

.legal-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.legal-updated {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 24px;
  color: var(--text-gray);
  font-size: 14px;
}

.legal-content h3 {
  font-size: 22px;
  margin: 24px 0 10px;
  font-weight: 600;
  color: var(--text-dark);
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

.legal-content ul {
  margin-left: 20px;
  margin-top: 6px;
}

.legal-content a {
  color: var(--primary-green);
}

/* ================================================================
   DISSOLVE-IN  —  Premium scroll-reveal animation system
   ================================================================
   Classes:
     .dissolve        — base dissolve (360ms, cards/content)
     .dissolve-hero   — slow + blur (600ms, hero elements)
     .dissolve-sm     — fast (240ms, small UI bits)
     .dissolve-card   — scale + blur (380ms, cards/modals)
   Stagger:
     --d: 0s          — per-item delay set via JS or inline style
   Trigger:
     .is-visible      — added by IntersectionObserver (once)
   ================================================================ */

/* ---------- shared hidden state ---------- */
.dissolve,
.dissolve-hero,
.dissolve-sm,
.dissolve-card {
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform, filter;
}

/* ---------- variant tweaks (hidden state) ---------- */
.dissolve-hero  { filter: blur(6px); }
.dissolve-card  { transform: translateY(12px) scale(0.985); filter: blur(4px); }

/* ---------- revealed state ---------- */
.dissolve.is-visible,
.dissolve-hero.is-visible,
.dissolve-sm.is-visible,
.dissolve-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ---------- durations & easing ---------- */
.dissolve {
  transition:
    opacity     360ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform   360ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    filter      360ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}
.dissolve-hero {
  transition:
    opacity     600ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform   600ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    filter      600ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}
.dissolve-sm {
  transition:
    opacity     240ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform   240ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}
.dissolve-card {
  transition:
    opacity     380ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    transform   380ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms),
    filter      380ms cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}

/* ---------- accessibility: prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .dissolve,
  .dissolve-hero,
  .dissolve-sm,
  .dissolve-card {
    transition-duration: 0ms !important;
    transform: none !important;
    filter: none !important;
    /* opacity still toggles instantly for content reveal */
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

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

  .hero-image {
    order: -1;
  }

  .stages-layout {
    grid-template-columns: 1fr;
  }

  .how-layout {
    grid-template-columns: 1fr;
  }

  .how-phone {
    order: -1;
  }

  .method-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 160px 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 64px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .method-cards {
    grid-template-columns: 1fr;
  }

  .session-cards {
    grid-template-columns: 1fr;
  }

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

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-col-label {
    background: var(--pale-green) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: var(--text-dark) !important;
  }

  .comparison-header .comparison-col-label {
    display: none;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .phone-mockup-small {
    width: 220px;
    height: 440px;
  }

  .legal-card {
    padding: 24px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
