:root {
  --bg: #f5f5f7;
  --panel: #ffffff;
  --panel-soft: #fbfbfd;
  --text: #1d1d1f;
  --text-strong: #111111;
  --text-body: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --accent-soft: #e8f3ff;
  --success-soft: #eef6f1;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1600px;
  --content: 1320px;
  --font-text:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial,
    sans-serif;
  --font-display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
}

body.is-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

img {
  max-width: 100%;
}

p,
li,
input,
textarea,
select,
button {
  font-size: 16px;
  color: var(--text-body);
}

.page-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.top-contact-bar {
  width: calc(100% - 40px);
  max-width: calc(var(--container) - 40px);
  margin: 0 auto 6px;
  padding: 2px 0;
  text-align: center;
}

.top-contact-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}

.top-contact-bar a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 50;
  width: calc(100% - 40px);
  max-width: calc(var(--container) - 40px);
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 210, 215, 0.7);
  border-radius: 999px;
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(78px, 9vw, 108px);
  height: auto;
}

.site-menu {
  display: block;
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-menu > .site-nav {
  display: flex;
}

.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.008em;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a.is-active {
  font-weight: 700;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.18);
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.hero,
.section,
.closing {
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 247, 250, 0.9));
  border-radius: var(--radius-lg);
}

.section,
.closing {
  width: min(calc(100% - 40px), var(--content));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  width: min(calc(100% - 40px), calc(var(--container) - 40px));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 76px;
}

.hero-copy,
.hero-card,
.soft-panel,
.info-card,
.pricing-card,
.faq-item,
.contact-form,
.closing,
.section-accent {
  background: var(--panel);
  border: 1px solid rgba(210, 210, 215, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(54px, 7vw, 110px);
  min-height: 880px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #f8f8fb 100%);
}

.hero-card {
  padding: clamp(38px, 4vw, 56px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  color: var(--text);
  min-height: 880px;
}

.editorial-photo {
  width: 100%;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.editorial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  aspect-ratio: 1 / 1.08;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.split-photo {
  margin: 0;
  aspect-ratio: 1 / 1.08;
  box-shadow: var(--shadow);
  border: 1px solid rgba(210, 210, 215, 0.7);
}

.profile-photo {
  width: clamp(190px, 21vw, 250px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-spotlight {
  padding-top: 24px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
  border: 1px solid rgba(210, 210, 215, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.founder-photo-home {
  width: clamp(120px, 16vw, 160px);
}

.founder-copy h2 {
  margin-bottom: 12px;
}

.founder-copy p {
  margin: 0 0 14px;
  max-width: 48ch;
}

.text-link {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}

.quote-lead {
  max-width: 30ch;
  margin: 0 0 26px;
  color: var(--text-strong);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.with-photo {
  gap: 0;
}

.contact-photo {
  aspect-ratio: 1.15 / 1;
}

.hero-card .card-kicker {
  color: var(--muted);
}

.hero-card h2 {
  color: var(--text);
}

.hero-card-intro {
  margin: 18px 0 8px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}

.hero-card .feature-list li {
  color: var(--muted);
}

.hero-card .feature-list li::before {
  color: var(--accent);
}

.hero-card h2 {
  margin-top: 2px;
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(210, 210, 215, 0.8);
}

.hero-note strong {
  font-size: 16px;
  color: var(--text-strong);
}

.hero-note span {
  font-size: 15px;
  color: var(--muted);
}

.eyebrow,
.card-kicker,
.featured-badge {
  display: none;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.price {
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  font-family: var(--font-display);
}

h1 {
  max-width: 13ch;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.96;
  font-weight: 700;
}

.home-hero-title {
  font-size: clamp(46px, 6.4vw, 88px);
  max-width: 14ch;
}

h2 {
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.16;
  font-weight: 600;
}

.hero-lead {
  max-width: 28ch;
  margin: 34px 0 24px;
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy p:not(.eyebrow):not(.hero-lead) {
  max-width: 42rem;
  color: var(--text-body);
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 62px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

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

.button-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.feature-list,
.check-list,
.pricing-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.pricing-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.feature-list li::before,
.check-list li::before,
.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 84px;
  padding: 0 12px;
  text-align: center;
}

.section-heading h2 + p,
.section-text p,
.pricing-summary,
.pricing-footer p,
.faq-item p,
.contact-side p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
}

.section-text p {
  margin-bottom: 14px;
}

.section-grid,
.cards.three-up,
.cards.two-up,
.pricing-grid,
.audience-grid,
.split-cards,
.contact-grid,
.field-grid {
  display: grid;
  gap: 44px;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three-up,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two-up,
.split-cards,
.audience-grid,
.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.section-text.narrow {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.section-text {
  padding: 0 8px;
}

.soft-panel,
.info-card,
.pricing-card,
.contact-side {
  padding: clamp(40px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.soft-panel {
  background: var(--panel-soft);
}

.section-accent {
  padding: clamp(52px, 6vw, 82px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}

.info-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.info-card h3,
.soft-panel h3,
.pricing-card h3,
.contact-side h3 {
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
}

.pricing-card.featured {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--text);
  border-color: rgba(0, 113, 227, 0.14);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-summary,
.pricing-card.featured .pricing-footer p,
.pricing-card.featured .pricing-list li {
  color: var(--muted);
}

.pricing-card.featured .price,
.pricing-card.featured h3 {
  color: var(--text);
}

.pricing-card.featured .featured-badge {
  color: var(--accent);
}

.pricing-card.featured .pricing-footer {
  border-top-color: rgba(0, 113, 227, 0.16);
}

.pricing-card.featured .button-secondary {
  color: var(--accent);
  border-color: rgba(0, 113, 227, 0.24);
}

.featured-badge {
  margin-bottom: 4px;
  color: var(--accent);
}

.pricing-name {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  font-weight: 700;
}

.pricing-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
  align-items: start;
}

.method-intro p {
  margin: 0;
  max-width: 32ch;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-body);
}

.method-flow {
  display: grid;
  gap: 0;
}

.method-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(210, 210, 215, 0.9);
}

.method-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.method-step span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.method-step h3 {
  min-height: auto;
  margin-bottom: 10px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.method-step p {
  margin: 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}

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

.faq-item {
  padding: 28px 32px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(0, 113, 227, 0.18);
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.07);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  padding-right: 32px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq-item p {
  margin: 14px 0 0;
}

.hero.hero-compact .hero-copy {
  min-height: 660px;
}

.contact-form {
  padding: clamp(40px, 4vw, 56px);
}

.contact-form label {
  display: block;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 113, 227, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-direct a {
  color: var(--accent);
  font-weight: 600;
}

.response-delay {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-success {
  margin: 10px 0 0;
  color: #1d6f42;
  font-size: 14px;
  line-height: 1.5;
}

.contact-reassurance {
  width: min(calc(100% - 40px), 760px);
  margin: 56px auto 0;
  padding: 0 12px;
  text-align: center;
}

.contact-reassurance p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-reassurance p:last-child {
  margin-bottom: 0;
}

.local-seo-note {
  width: min(calc(100% - 40px), 920px);
  margin: 44px auto 0;
  padding: 0 12px;
  text-align: center;
}

.local-seo-note p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.local-seo-note p:last-child {
  margin-bottom: 0;
}

.compact-list li:last-child,
.contact-form label:last-of-type {
  margin-bottom: 0;
}

.closing {
  margin-top: 52px;
  padding: 144px 48px;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
}

.closing h2 {
  max-width: 16ch;
  margin: 0 auto;
}

.closing p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-body);
}

.closing .hero-actions {
  justify-content: center;
  align-items: center;
}

.site-footer {
  width: min(calc(100% - 40px), var(--content));
  margin: 36px auto 0;
  padding: 18px 12px 8px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.is-ready [data-reveal],
  body.is-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1400px) {
  .method-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 1100px) {
  .site-header,
  .section,
  .closing,
  .hero {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero,
  .section-grid,
  .cards.three-up,
  .cards.two-up,
  .pricing-grid,
  .audience-grid,
  .split-cards,
  .contact-grid,
  .field-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero.hero-compact .hero-copy,
  .hero-card {
    min-height: auto;
  }

  .hero {
    gap: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .nav-cta {
    padding: 9px 14px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 10px;
    padding-bottom: 48px;
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 8px 12px;
    border-radius: 18px;
    margin-bottom: 10px;
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
  }

  .top-contact-bar {
    width: calc(100% - 16px);
  }

  .brand-logo {
    width: 86px;
  }

  .site-menu {
    display: block;
    position: relative;
    width: auto;
    margin-left: auto;
    z-index: 60;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 34px;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    list-style: none;
    cursor: pointer;
  }

  .menu-toggle::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 14px;
  }

  .menu-icon span {
    display: block;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-menu[open] .menu-toggle {
    margin-bottom: 8px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(260px, calc(100vw - 32px));
    gap: 8px;
    justify-content: flex-start;
    flex-direction: column;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(210, 210, 215, 0.9);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 80;
  }

  .site-menu[open] .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    font-size: 14px;
  }

  .section,
  .closing,
  .hero,
  .site-footer,
  .contact-reassurance,
  .local-seo-note {
    width: calc(100% - 16px);
  }

  .hero-copy,
  .hero-card,
  .soft-panel,
  .info-card,
  .pricing-card,
  .contact-form,
  .contact-side,
  .closing,
  .section-accent,
  .faq-item {
    padding: 24px;
  }

  .founder-card {
    padding: 24px;
    gap: 20px;
  }

  .quote-lead {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hero {
    margin-bottom: 20px;
  }

  .hero-copy,
  .hero.hero-compact .hero-copy,
  .hero-card {
    min-height: auto;
  }

  h1 {
    max-width: none;
    font-size: clamp(40px, 14vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .section {
    padding: 32px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    padding: 0 4px;
  }

  .method-layout {
    gap: 26px;
  }

  .method-intro p {
    max-width: none;
    font-size: 16px;
    line-height: 1.65;
  }

  .closing {
    padding: 88px 24px;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px 22px;
    background: #fff;
    border: 1px solid rgba(210, 210, 215, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
  }

  .method-step:first-child {
    padding-top: 20px;
    border-top: 1px solid rgba(210, 210, 215, 0.8);
  }

  .method-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .method-step h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .method-step p {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
