/* =========================================================================
   みんなのクリニック LP — style.css
   Design spec準拠 (2026-05-10)
   ========================================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #3ab7b4;
  --color-primary-dark: #249a97;
  --color-primary-deeper: #1ea6a3;
  --color-accent-blue: #4aa3ff;
  --color-bg: #f7fafa;
  --color-bg-soft: #f1f7f7;
  --color-border: #e5eeee;
  --color-border-soft: #eef3f3;
  --color-text: #222222;
  --color-text-sub: #666666;
  --color-text-mute: #999999;
  --color-star: #f5b400;

  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-btn: 14px;
  --radius-icon: 50%;

  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(58, 183, 180, 0.12);
  --shadow-cta: 0 10px 30px rgba(36, 154, 151, 0.28);
  --shadow-cta-hover: 0 14px 38px rgba(36, 154, 151, 0.38);

  --gradient-cta: linear-gradient(90deg, #35c0bd 0%, #1ea6a3 100%);
  --gradient-cta-hover: linear-gradient(90deg, #2cb1ae 0%, #169491 100%);

  --content-max: 1200px;
  --side-pad: 24px;
  --section-gap: 96px;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section--gray {
  background: var(--color-bg);
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.section__subtitle {
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-sub);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-cta);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  background: var(--gradient-cta-hover);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: #ffffff;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
  font-weight: 700;
}

.btn--outline:hover {
  background: var(--color-bg-soft);
}

.btn--cta-large {
  font-size: 17px;
  padding: 22px 48px;
  border-radius: 16px;
  min-width: 380px;
}

.btn--cta-large .btn__arrow {
  width: 22px;
  height: 22px;
  margin-left: 6px;
}

.btn__arrow {
  width: 18px;
  height: 18px;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.header__nav-list a:hover {
  color: var(--color-primary-dark);
}

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

.header__login {
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 10px;
}

.header__cta {
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
}

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
}

.header__menu-btn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.header__menu-btn span:nth-child(1) { top: 13px; }
.header__menu-btn span:nth-child(2) { top: 19px; }
.header__menu-btn span:nth-child(3) { top: 25px; }

.header__menu-btn.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafa 100%);
  padding-top: 56px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero__content {
  padding-top: 8px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 32px;
}

.hero__badge-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.hero__badge-icon svg {
  width: 100%;
  height: 100%;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero__title-accent {
  display: block;
  color: var(--color-primary);
  font-size: 44px;
  margin-top: 6px;
  white-space: nowrap;
}

.hero__features {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 110px;
}

.hero__feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.hero__feature-icon img {
  width: 56px;
  height: 56px;
}

.hero__feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.hero__feature-desc {
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.55;
}

.hero__note {
  margin-top: 20px;
  font-size: 11px;
  color: var(--color-text-mute);
}

.hero__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  background: #eef3f3;
  align-self: stretch;
  min-height: 580px;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* CTA block under hero */
.hero-cta {
  text-align: center;
  margin-top: 56px;
}

.hero-cta__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}

.hero-cta__caption::before,
.hero-cta__caption::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--color-text-sub);
  opacity: 0.55;
  display: inline-block;
  transform-origin: center;
}

.hero-cta__caption::before {
  transform: rotate(70deg);
}

.hero-cta__caption::after {
  transform: rotate(-70deg);
}

/* ---------- Features (特徴) ---------- */
.features {
  padding-top: 96px;
  padding-bottom: 96px;
}

.features__card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.features__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  position: relative;
}

.features__item + .features__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: var(--color-border);
}

.features__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features__icon img {
  width: 60px;
  height: 60px;
}

.features__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.features__desc {
  font-size: 12.5px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.features__note {
  text-align: right;
  margin-top: 16px;
  font-size: 11px;
  color: var(--color-text-mute);
}

/* ---------- Menu (診療メニュー) ---------- */
.menu {
  padding-top: 64px;
  padding-bottom: 96px;
}

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

.menu__card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.menu__card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.menu__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu__icon img {
  width: 56px;
  height: 56px;
}

.menu__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.menu__desc {
  font-size: 11.5px;
  color: var(--color-text-sub);
  line-height: 1.55;
}

.menu__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu__card:hover .menu__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.menu__more {
  text-align: center;
  margin-top: 36px;
}

.menu__more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.menu__more a:hover {
  opacity: 0.75;
}

.menu__more img {
  width: 16px;
  height: 16px;
}

/* ---------- Steps (ご利用の流れ) ---------- */
.steps {
  background: var(--color-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

.steps__card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px 24px;
}

.steps__list {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
}

.steps__item {
  text-align: center;
  position: relative;
  padding: 8px 12px;
}

.steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  position: absolute;
  left: 12px;
  top: 8px;
}

.steps__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__icon img {
  width: 90px;
  height: 90px;
}

.steps__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-text);
}

.steps__desc {
  font-size: 12px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.steps__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  font-size: 24px;
  font-weight: 300;
  user-select: none;
  padding-top: 56px;
}

.steps__chevron svg {
  width: 18px;
  height: 28px;
}

/* ---------- Reviews (患者さまの声) ---------- */
.reviews {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

.reviews__card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reviews__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews__age {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.reviews__stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  font-size: 14px;
  letter-spacing: 1px;
}

.reviews__text {
  font-size: 12.5px;
  color: var(--color-text-sub);
  line-height: 1.75;
}

.reviews__note {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: var(--color-text-mute);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, #f1f7f7 0%, #e6f1f1 100%);
  padding-top: 64px;
  padding-bottom: 64px;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.final-cta__content {
  padding: 24px 0;
}

.final-cta__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.final-cta__desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.85;
  margin-bottom: 32px;
}

.final-cta__btn {
  width: 100%;
  max-width: 460px;
  font-size: 16px;
  padding: 22px 36px;
  border-radius: 16px;
}

.final-cta__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--color-text-sub);
  font-weight: 500;
}

.final-cta__caption::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") no-repeat center / contain;
}

.final-cta__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta__photo {
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.final-cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__badge {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 8px 22px rgba(36, 154, 151, 0.15);
}

.final-cta__badge-strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.5;
  margin-bottom: 6px;
}

.final-cta__badge-text {
  font-size: 9.5px;
  color: var(--color-text-sub);
  line-height: 1.5;
}

/* ---------- Trust ---------- */
.trust {
  padding-top: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border-soft);
}

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

.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
}

.trust__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust__icon img {
  width: 36px;
  height: 36px;
}

.trust__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.trust__desc {
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.footer {
  padding-top: 48px;
  padding-bottom: 32px;
  background: #ffffff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer__logo img {
  height: 56px;
  margin-bottom: 8px;
}

.footer__nav-list li + li {
  margin-top: 12px;
}

.footer__nav-list a {
  font-size: 12.5px;
  color: var(--color-text-sub);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__nav-list a:hover {
  color: var(--color-primary-dark);
}

.footer__sns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__sns a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__sns a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-soft);
  text-align: right;
  font-size: 11px;
  color: var(--color-text-mute);
}

/* ============================================================
   Responsive — SP（タブレット〜スマホ）
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-gap: 72px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__title-accent {
    font-size: 40px;
  }

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

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

  .footer__sns {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --side-pad: 20px;
  }

  body {
    font-size: 14px;
  }

  .section__title {
    font-size: 22px;
  }

  /* Header */
  .header__inner {
    height: 64px;
  }

  .header__logo img {
    height: 38px;
  }

  .header__nav,
  .header__login {
    display: none;
  }

  .header__cta {
    font-size: 12px;
    padding: 10px 16px;
  }

  .header__menu-btn {
    display: inline-flex;
  }

  .header__nav.is-mobile-open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  .header__nav.is-mobile-open .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .header__nav.is-mobile-open .header__nav-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .header__nav.is-mobile-open .header__login {
    display: inline-flex;
    width: 100%;
  }

  /* Hero */
  .hero {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__visual {
    order: -1;
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .hero__title {
    font-size: 28px;
    white-space: normal;
  }

  .hero__title-accent {
    font-size: 30px;
    white-space: normal;
  }

  .hero__features {
    gap: 14px;
    justify-content: space-between;
  }

  .hero__feature {
    width: 30%;
  }

  .hero__feature-icon {
    width: 64px;
    height: 64px;
  }

  .hero__feature-icon img {
    width: 44px;
    height: 44px;
  }

  .btn--cta-large {
    min-width: unset;
    width: 100%;
    font-size: 15px;
    padding: 18px 24px;
  }

  /* Features */
  .features__card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }

  .features__item + .features__item::before {
    width: 70%;
    height: 1px;
    top: -12px;
    left: 15%;
    transform: none;
  }

  .features__item {
    padding: 0;
  }

  /* Menu */
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .menu__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px 14px;
    gap: 8px;
  }

  .menu__icon {
    width: 56px;
    height: 56px;
  }

  .menu__icon img {
    width: 44px;
    height: 44px;
  }

  .menu__body {
    width: 100%;
    align-items: center;
    gap: 2px;
  }

  .menu__title {
    font-size: 13px;
  }

  .menu__desc {
    font-size: 10.5px;
    line-height: 1.5;
  }

  .menu__arrow {
    position: absolute;
    right: 10px;
    top: 14px;
    width: 14px;
    height: 14px;
  }

  /* Steps — vertical on SP */
  .steps__card {
    padding: 24px 16px;
  }

  .steps__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .steps__item:last-of-type {
    border-bottom: none;
  }

  .steps__num {
    position: static;
    margin-bottom: 0;
  }

  .steps__icon {
    grid-row: 1 / span 3;
    grid-column: 1;
    width: 80px;
    height: 80px;
    margin: 0;
  }

  .steps__icon img {
    width: 72px;
    height: 72px;
  }

  .steps__title,
  .steps__desc {
    grid-column: 2;
  }

  .steps__chevron {
    display: none;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Final CTA */
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta__title {
    font-size: 22px;
  }

  .final-cta__photo {
    max-width: 280px;
  }

  .final-cta__badge {
    width: 110px;
    height: 110px;
    right: 0;
  }

  .final-cta__btn {
    font-size: 14px;
    padding: 16px 24px;
  }

  /* Trust */
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }

  .hero__title-accent {
    font-size: 26px;
  }

  .hero__feature-title {
    font-size: 11px;
  }

  .hero__feature-desc {
    font-size: 10px;
  }
}
