:root {
  --navy: #003B81;
  --navy-light: #1B5BA0;
  --orange: #F39200;
  --orange-dark: #D67D00;
  --sky: #2FA9DB;
  --sky-light: #D6EEF8;
  --sky-pale: #EAF6FC;
  --green: #AEE06B;
  --green-dark: #7BB239;
  --pink: #E30195;
  --cream: #FFF9E6;
  --text: #1A1A1A;
  --text-muted: #5C5C5C;
  --text-light: #888;
  --border: #E5E5E5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1.1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: none;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 146, 0, .3);
}

.btn-sky {
  background: var(--sky);
  color: #fff;
}

.btn-sky:hover {
  background: #1E8FBF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 169, 219, .3);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ============ HERO ============ */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  margin-top: 50px;
}

.hero-doodles {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-grid > * {
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-eyebrow i {
  color: var(--orange);
}

.hero h1 {
  font-size: 54px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .love-word {
  position: relative;
  display: inline-block;
  color: var(--green);
  font-style: italic;
}

.hero h1 .love-word svg {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 14px;
}

.hero p.lead {
  font-size: 19px;
  color: #D6EEF8;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-checks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #B8D9EC;
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-checks i {
  color: var(--green);
  font-size: 16px;
}

/* Calculator preview card */
.calc-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  position: relative;
}

.calc-card::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  z-index: -1;
  opacity: .3;
}

.calc-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.calc-input-row {
  background: var(--sky-pale);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.calc-input-row label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.calc-input-row input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
}

.calc-input-row input[type="number"]:focus {
  outline: none;
  border-color: var(--sky);
}

.calc-slider-row {
  padding: 4px 4px 14px;
}

.calc-slider-row .slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calc-slider-row .slider-head span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-slider-row .slider-head strong {
  font-size: 15px;
  color: var(--orange);
  font-weight: 800;
}

.calc-card input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--sky-light);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid var(--sky);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.calc-card input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 3px solid var(--sky);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.calc-result {
  background: var(--cream);
  border: 2px dashed var(--orange);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-top: 6px;
}

.calc-result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.calc-amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
  display: inline-block;
  transition: color .2s ease;
}

.calc-amount::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'><path d='M2,4 Q15,1 28,4 T54,4 T80,4 T98,4' fill='none' stroke='%23AEE06B' stroke-width='2.5' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}

.calc-amount.bump {
  animation: bump .3s ease;
}

@keyframes bump {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
    color: var(--green-dark);
  }

  100% {
    transform: scale(1);
  }
}

.calc-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--sky-light);
  padding: 18px 0;
  border-bottom: 1px solid #B8DCEF;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.trust-row .sep {
  color: #9CC2DB;
}

.trust-row .more {
  color: var(--orange);
}

/* ============ SECTION SCAFFOLDING ============ */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 44px;
  color: var(--navy);
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.squiggle-word {
  position: relative;
  display: inline-block;
  color: var(--orange);
}

.squiggle-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'><path d='M2,5 Q15,1 28,5 T54,5 T80,5 T98,5' fill='none' stroke='%23AEE06B' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.how-card {
  background: var(--sky-pale);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform .2s ease;
}

.how-card:hover {
  transform: translateY(-4px);
}

.how-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(243, 146, 0, .3);
}

.how-icon {
  width: 80px;
  height: 80px;
  margin: 24px auto 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 36px;
}

.how-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.how-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.whats-included {
  background: var(--navy);
  border-radius: 28px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.whats-included h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #fff;
}

.whats-included p.lead {
  color: #D6EEF8;
  margin-bottom: 28px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  padding: 14px 16px;
  border-radius: 12px;
}

.included-item i {
  color: var(--green);
  font-size: 22px;
  flex-shrink: 0;
}

.included-item span {
  font-size: 14px;
  font-weight: 600;
}

/* ============ COMPARISON ============ */
.compare-section {
  background: #fff;
}

.compare-table {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .06);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
}

.compare-row.header {
  background: var(--navy);
  color: #fff;
}

.compare-row.header>div {
  padding: 24px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.compare-row.header>div:first-child {
  text-align: left;
}

.compare-row.header .winner {
  background: var(--orange);
  position: relative;
}

.compare-row.header .winner::before {
  content: "★";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--cream);
}

.compare-row.body>div {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-align: center;
}

.compare-row.body>div:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
}

.compare-row.body .winner {
  background: rgba(243, 146, 0, .06);
  color: var(--navy);
  font-weight: 700;
}

.compare-row.body .winner i {
  color: var(--green-dark);
  font-size: 22px;
  vertical-align: middle;
}

.compare-row.body:last-child>div {
  border-bottom: none;
}

.compare-row.body .neg {
  color: var(--text-light);
}

.compare-row.body .neg i {
  color: #C77;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--sky-pale);
}

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

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: transform .2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-school {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 16px;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 20px;
  background: linear-gradient(180deg, var(--sky-pale) 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

.stat.money .num {
  color: var(--green-dark);
}

.stat.money .stat-label {
  color: var(--green-dark);
}

.stat.minutes .num {
  color: var(--orange);
}

.stat.minutes .stat-label {
  color: var(--orange);
}

.testimonial-quote {
  padding: 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
}

/* ============ PROFIT OPTIONS ============ */
.profit-section {
  background: #fff;
}

.profit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.profit-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: border-color .2s ease;
}

.profit-card:hover {
  border-color: var(--orange);
}

.profit-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 30%);
}

.profit-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profit-percent {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: var(--navy);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 4px;
}

.profit-percent span {
  color: var(--orange);
  font-size: 36px;
}

.profit-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.profit-list {
  list-style: none;
}

.profit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
}

.profit-list li:last-child {
  border-bottom: none;
}

.profit-list li i {
  color: var(--green-dark);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ KIDS LOVE IT ============ */
.kids-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kids-doodles {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}

.kids-section .section-title {
  color: #fff;
}

.kids-section .section-subtitle {
  color: #D6EEF8;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.prize-preview {
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  padding: 32px;
}

.prize-preview h3 {
  color: var(--navy);
  font-size: 26px;
  margin-bottom: 6px;
}

.prize-preview p.lead {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.prize {
  background: var(--sky-pale);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.prize i {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 6px;
}

.prize-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.disney-card {
  background: linear-gradient(135deg, #E30195 0%, #9D1B7C 100%);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.disney-card::before {
  content: "★";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  opacity: .4;
}

.disney-card::after {
  content: "★";
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 20px;
  opacity: .3;
}

.disney-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.disney-card h3 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.disney-card p {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.disney-card .learn {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ FAQ ============ */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q i {
  color: var(--orange);
  font-size: 24px;
  transition: transform .2s ease;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 24px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-doodles {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.final-cta .section-title {
  color: #fff;
}

.final-cta .section-subtitle {
  color: #D6EEF8;
}

.final-form {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-form .btn {
  width: 100%;
  margin-top: 12px;
}

.final-or {
  margin-top: 24px;
  font-size: 14px;
  color: #B8D9EC;
}

.final-or a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {

  .hero-grid,
  .kids-grid,
  .profit-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero h1 {
    font-size: 38px;
  }

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

  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    font-size: 13px;
  }

}

@media (max-width: 576px) {
  .hero {
    padding: 32px 0 48px;
  }

  .hero-grid {
    gap: 32px;
    width: 100%;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-eyebrow,
  .hero-ctas,
  .hero-checks {
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .calc-card {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .calc-card::before {
    display: none;
  }

  .calc-amount {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .whats-included {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .whats-included h3 {
    font-size: 24px;
  }

  .whats-included p.lead {
    margin-bottom: 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .included-item {
    min-width: 0;
    padding: 12px 14px;
  }

  .included-item span {
    min-width: 0;
  }

  .kids-grid {
    gap: 24px;
  }

  .kids-grid > * {
    min-width: 0;
  }

  .prize-preview,
  .disney-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .prize-preview h3,
  .disney-card h3 {
    font-size: 23px;
  }

  .prize-preview p.lead {
    margin-bottom: 18px;
  }

  .prize-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
  }

  .prize {
    min-width: 0;
    padding: 14px 8px;
    aspect-ratio: auto;
    min-height: 108px;
  }

  .prize i {
    font-size: 28px;
  }

  .prize-name {
    overflow-wrap: anywhere;
  }

  .disney-card::before,
  .disney-card::after {
    display: none;
  }

  .disney-tag {
    max-width: 100%;
  }

  .compare-table {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .compare-row {
    min-width: 680px;
  }

  .compare-row.header > div,
  .compare-row.body > div {
    min-width: 0;
    padding: 14px 12px;
    overflow-wrap: anywhere;
  }

  .compare-row.header > div {
    font-size: 12px;
  }

  .compare-row.header .winner::before {
    top: 0;
  }

  .compare-row.body > div {
    font-size: 13px;
  }
}
