:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #020617;
  --muted: #4b5563;
  --line: #d9dee7;
  --blue: #2463ff;
  --blue-dark: #0f4fe8;
  --blue-soft: #dbeafe;
  --black: #000000;
  --soft: #f8fafc;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8px 8px, rgba(37, 99, 235, 0.08) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { max-width: 780px; }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 212px;
  height: 58px;
  object-fit: cover;
}

.brand span { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: #334155;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 760;
  padding: 8px 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--blue);
  padding: 12px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(36, 99, 255, 0.22);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #fff;
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 54px 0 46px;
  background: linear-gradient(90deg, #fff 0%, #fff 45%, #f8fbff 100%);
}

.hero .hero-grid {
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
  gap: 0;
}

.hero-copy {
  max-width: 960px;
}

.hero-grid,
.about-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.88fr);
  gap: 64px;
  align-items: center;
}

.hero-lockup {
  width: 285px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  color: #000;
  font-size: clamp(2.65rem, 4.55vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 span { color: var(--blue); }

h2 {
  margin: 0;
  color: #000;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: 1.38rem;
  line-height: 1.2;
}

.hero-subtitle,
.page-hero p,
.section-heading p,
.card p,
.service-card p,
.price-card p,
.testimonial-card p,
.blog-card p,
.contact-card p,
.split p,
.note,
details p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 760px;
  margin: 18px 0 20px;
  color: #344256;
  font-size: clamp(1.12rem, 1.8vw, 1.28rem);
}

.hero-checks {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #172033;
}

.hero-checks li {
  position: relative;
  padding-left: 36px;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-checks li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(36, 99, 255, 0.24);
}

.button-primary:hover { background: var(--blue-dark); }

.button-secondary {
  color: #000;
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.button-dark {
  color: #fff;
  background: #000;
}

.button-dark:hover { background: #111827; }

.hero-dashboard {
  display: grid;
  gap: 18px;
}

.hero-plan-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-plan-card h2 {
  max-width: 420px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.hero-plan-card p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.hero-plan-list {
  display: grid;
  gap: 10px;
}

.hero-plan-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #e2e8f0;
}

.hero-plan-list span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-plan-list strong {
  color: #000;
}

.blue-stat-card {
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #1f5eff 0%, #194fd2 100%);
  border-radius: 14px;
  box-shadow: 0 20px 38px rgba(36, 99, 255, 0.18);
}

.blue-stat-card p,
.blue-stat-card span {
  color: #eef4ff;
}

.blue-stat-card p { margin: 0; }

.blue-stat-card strong {
  display: block;
  margin: 12px 0 4px;
  font-size: clamp(2.8rem, 5.8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 650;
}

.blue-stat-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin: 26px 0 18px;
}

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

.mini-stat-grid div,
.rate-card,
.card,
.service-card,
.price-card,
.testimonial-card,
.blog-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-stat-grid div {
  padding: 26px;
}

.mini-stat-grid strong {
  display: block;
  color: var(--blue);
  font-size: 2.1rem;
  font-weight: 500;
}

.mini-stat-grid span,
.rate-card span {
  color: #334155;
  font-size: 0.95rem;
}

.rate-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background: #000;
  border-color: #000;
}

.rate-card span {
  display: block;
  color: #cbd5e1;
}

.rate-card strong {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 550;
}

.stats-band {
  padding: 28px 0;
  background: #000;
  color: #fff;
}

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

.stats-grid div {
  padding: 10px 0;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.stats-grid span { color: #cbd5e1; }

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--blue);
}

.section-heading.compact { margin-top: 44px; }

.card-grid,
.pricing-grid,
.blog-grid,
.track-grid {
  display: grid;
  gap: 30px;
}

.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.blog-grid { grid-template-columns: repeat(2, 1fr); }

.card,
.service-card,
.price-card,
.testimonial-card,
.blog-card,
.contact-card {
  padding: 32px;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e2e8f0;
}

.blog-content {
  padding: 28px;
}

.article-points {
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
}

.article-points li {
  margin-bottom: 8px;
}

.card,
.service-card,
.blog-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.service-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.text-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

.soft-section {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(2, 6, 23, 0.05);
}

.local-seo-section {
  background: #f8fbff;
}

.tutor-card {
  position: relative;
  max-width: 430px;
  margin-left: auto;
}

.tutor-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.18);
}

.score-badge {
  position: absolute;
  right: -16px;
  bottom: -18px;
  min-width: 156px;
  padding: 20px;
  color: #fff;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.28);
}

.score-badge strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.score-badge span,
.score-badge small {
  display: block;
  color: #fff;
}

.score-badge small {
  margin-top: 4px;
  color: #cbd5e1;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.feature-list span {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--blue);
}

.feature-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.steps {
  position: relative;
  display: grid;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.steps::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: var(--blue-soft);
}

.steps div {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.steps span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(36, 99, 255, 0.25);
  font-size: 1.2rem;
  font-weight: 850;
}

.steps h3,
.steps p {
  margin-left: 0;
}

.steps div > h3,
.steps div > p {
  grid-column: 2;
  margin: 0;
}

.steps div > h3 {
  align-self: end;
}

.steps div > p {
  align-self: start;
  margin-top: -12px;
}

.pricing-preview {
  color: #fff;
  background: #000;
}

.pricing-preview h2,
.pricing-preview h3 {
  color: #fff;
}

.pricing-preview .section-heading p,
.pricing-preview .eyebrow {
  color: #60a5fa;
}

.pricing-preview .price-card {
  color: #000;
  background: #fff;
}

.pricing-preview .price-card h3 {
  color: #000;
}

.pricing-preview .card h3 {
  color: #000;
}

.page-hero {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  text-align: center;
}

.page-hero .narrow { margin-inline: auto; }

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.featured-service {
  border-color: rgba(36, 99, 255, 0.45);
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-points {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-points li {
  position: relative;
  padding-left: 24px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.price {
  margin: 18px 0 10px;
  color: #000;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 500;
}

.price span {
  font-size: 1rem;
  color: #64748b;
}

.featured {
  border-color: var(--blue);
  box-shadow: 0 20px 48px rgba(36, 99, 255, 0.18);
}

.package-grid .package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-rates {
  display: grid;
  gap: 10px;
  margin: 4px 0;
}

.package-rates div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  align-items: end;
  padding: 14px;
  color: #0f172a;
  background: #f8fbff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
}

.package-rates div + div {
  background: #fff;
  border-color: #cbd5e1;
}

.package-rates span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-rates strong {
  grid-row: span 2;
  color: #000;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 850;
}

.package-rates small {
  color: #334155;
  font-weight: 780;
}

.note { margin-top: 24px; }

.about-hero { background: #fff; }

.portrait {
  display: block;
  width: 100%;
  height: auto;
  max-width: 430px;
  justify-self: center;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: var(--blue-soft);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credential-row span,
.track-grid span {
  padding: 10px 12px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 850;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

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

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.tally-panel {
  min-height: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tally-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.contact-form label,
.contact-form fieldset {
  display: grid;
  gap: 7px;
  color: #000;
  font-weight: 760;
}

.contact-form .full,
.contact-form fieldset,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 13px 14px;
  color: #0f172a;
  background: #f8fafc;
  font: inherit;
}

textarea { resize: vertical; }

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

fieldset label {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
  font-weight: 650;
}

fieldset input {
  width: auto;
  margin-right: 6px;
}

.faq-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.faq-main {
  padding-top: 64px;
}

.faq-main .section-heading.compact {
  margin-top: 0;
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

summary {
  position: relative;
  display: block;
  min-height: 92px;
  padding: 22px 72px 22px 24px;
  cursor: pointer;
  color: #000;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

  details p {
    margin: 0 24px 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
  }

.site-footer {
  padding: 56px 0 28px;
  color: #cbd5e1;
  background: #000;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a { color: #e5efff; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
}

.footer-links a { text-decoration: none; }

.footer-links a:hover,
.social-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #e5efff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg,
.social-links a[aria-label="LinkedIn"] svg,
.social-links a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 0.86rem; }
  .brand img { width: 174px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }

  .hero-grid,
  .about-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats-grid,
  .card-grid.three,
  .card-grid.four,
  .pricing-grid,
  .blog-grid,
  .track-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tutor-card {
    margin-left: 0;
  }

  .contact-card { order: -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1280px); }
  .section { padding: 58px 0; }
  .hero { padding-top: 54px; }
  .brand img { width: 140px; }
  .hero-lockup { width: 230px; }

  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.25rem; }

  .stats-grid,
  .card-grid.three,
  .card-grid.four,
  .pricing-grid,
  .blog-grid,
  .track-grid,
  .faq-list,
  .footer-grid,
  .contact-form,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .button-row { width: 100%; }

  .rate-card {
    flex-direction: column;
  }

  .steps::before {
    left: 28px;
  }

  .steps div {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .steps span {
    width: 56px;
    height: 56px;
  }

  .score-badge {
    right: 12px;
    bottom: 12px;
  }

  summary {
    min-height: auto;
    padding: 18px 58px 18px 18px;
  }

  summary::after {
    right: 18px;
    width: 30px;
    height: 30px;
  }

  details p {
    margin: 0 18px 18px;
  }

  .footer-links { grid-template-columns: 1fr; }

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


