/* ============================================
   AIけいすけ — Official Website
   Editorial Light — Celebrity Style
   ============================================ */

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #000000;
  --text-body: #444;
  --text-muted: #888;
  --accent: #b8864a;
  --accent-sub: rgba(184, 134, 74, 0.08);
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(184, 134, 74, 0.2);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* Scroll target offset for fixed nav */
#news, #about, #achievements, #gallery, #links { scroll-margin-top: 80px; }

/* --- Container --- */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Section Label --- */
.label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* --- Screen Reader Only (SEO h1) --- */
.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;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.links__card.reveal:nth-child(2) { transition-delay: 0.06s; }
.links__card.reveal:nth-child(3) { transition-delay: 0.12s; }
.links__card.reveal:nth-child(4) { transition-delay: 0.18s; }
.links__card.reveal:nth-child(5) { transition-delay: 0.24s; }
.links__card.reveal:nth-child(6) { transition-delay: 0.30s; }

/* --- Side Text (vertical, inspired by 向井理) --- */
.side-text {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: rgba(0, 0, 0, 0.06);
  z-index: 50;
  pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 24px 40px;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: auto;
}

.nav__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-right: 8px;
}

.nav__logo:hover {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 36px;
  width: 100%;
  justify-content: center;
  padding-top: 12px;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--text);
}


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

.nav__socials a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav__socials a:hover {
  color: var(--text);
}

.nav__socials svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   HERO — Carousel, celebrity style
   ============================================ */
.hero {
  position: relative;
  padding-top: 110px;
  overflow: hidden;
}

.hero__carousel {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}

.hero__slide {
  min-width: 100%;
}

.hero__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero__arrow--prev {
  left: 12px;
}

.hero__arrow--next {
  right: 12px;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 32px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.hero__dot.is-active {
  background: var(--text);
}

/* ============================================
   NEWS — Date list
   ============================================ */
.news {
  padding: 100px 0 80px;
}

.news__title {
  font-family: var(--font-body);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

.news__list {
  border-top: 1px solid var(--border);
}

.news__item {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.news__date {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  width: 110px;
  flex-shrink: 0;
}

.news__tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-sub);
  padding: 2px 10px;
  border-radius: 2px;
  margin-right: 16px;
  flex-shrink: 0;
}

.news__text {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

.news__text a {
  transition: color 0.3s;
}

.news__text a:hover {
  color: var(--accent);
}

/* ============================================
   ABOUT — Centered, editorial
   ============================================ */
.about {
  padding: 140px 0 100px;
}

.about__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 64px;
}

.about__body {
  font-size: 15px;
  line-height: 2;
  color: var(--text-body);
}

/* Biography Timeline */
.bio__timeline {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.bio__item {
  display: flex;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.bio__date {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  width: 100px;
  flex-shrink: 0;
}

.bio__text {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

/* ============================================
   ACHIEVEMENTS — Number cards
   ============================================ */
.achievements {
  padding: 100px 0 80px;
}

.achievements__title {
  font-family: var(--font-body);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

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

.achievements__card {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.achievements__card:hover {
  border-color: var(--border-accent);
}

.achievements__number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.achievements__label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.achievements__meta {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   GALLERY — Photo grid
   ============================================ */
.gallery {
  padding: 80px 0 100px;
}

.gallery__title {
  font-family: var(--font-body);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

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

.gallery__item {
  overflow: hidden;
  border-radius: 4px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

.gallery__item {
  cursor: pointer;
}

/* --- Gallery Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: none;
  background: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  padding: 16px;
}

.lightbox__nav:hover {
  opacity: 1;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ============================================
   LINKS — Card grid layout
   ============================================ */
.links {
  padding: 80px 0 120px;
}

.links__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

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

.links__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.links__card:hover {
  border-color: var(--border-accent);
}

.links__card:hover .links__name {
  color: var(--accent);
}

.links__icon {
  width: 28px;
  height: 28px;
  color: var(--text);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: color 0.3s;
}

.links__card:hover .links__icon {
  color: var(--accent);
}

.links__name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.links__category {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 4px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 48px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 48px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__socials a:hover {
  color: var(--accent);
}

.footer__socials svg {
  width: 20px;
  height: 20px;
}

.footer__message {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.footer__copy {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav {
    padding: 18px 24px;
  }

  .nav__links {
    gap: 24px;
  }

  .side-text { display: none; }

  .hero { padding-top: 120px; }
  .hero__photo { max-width: 400px; }
  .hero__glow { width: 400px; height: 400px; }

  .news { padding: 80px 0 60px; }
  .news__item { flex-wrap: wrap; gap: 4px; }
  .news__date { width: auto; margin-right: 12px; }

  .about { padding: 100px 0 80px; }
  .about__title { margin-bottom: 48px; }

  .bio__item { flex-wrap: wrap; gap: 4px; }
  .bio__date { width: auto; margin-right: 12px; }

  .achievements { padding: 80px 0 60px; }
  .achievements__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .achievements__card { padding: 24px 12px; }

  .gallery { padding: 60px 0 80px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .links { padding: 60px 0 80px; }
  .links__title { margin-bottom: 36px; }
  .links__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .links__card { padding: 24px 20px; }
}

/* Mobile */
@media (max-width: 480px) {
  body { font-size: 14px; }

  .nav { padding: 14px 20px; }
  .nav__logo { font-size: 14px; gap: 4px; }
  .nav__icon { margin-right: 2px; }
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 10px; }

  .hero { padding-top: 96px; }
  .hero__photo { max-width: 320px; }
  .hero__sub { font-size: 13px; }

  .news__date { font-size: 11px; }
  .news__text { font-size: 13px; }

  .about__title { margin-bottom: 40px; }

  .bio__date { font-size: 11px; }
  .bio__text { font-size: 13px; }

  .achievements__number { font-size: 28px; }
  .achievements__card { padding: 20px 10px; }

  .gallery__grid { gap: 8px; }

  .links__card { padding: 20px 16px; }

  .footer { padding: 60px 0 40px; }
  .footer__socials { gap: 20px; margin-bottom: 36px; }
}

/* ============================================
   ASSISTANT PAGE
   ============================================ */

.section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}

.subhero {
  padding: 150px 0 90px;
}

.subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.subhero__title {
  font-family: var(--font-body);
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.18;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.subhero__lead {
  font-size: 16px;
  line-height: 2;
  color: var(--text-body);
  max-width: 720px;
}

.subhero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  background: #fff;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

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

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

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

.subhero__meta {
  margin-top: 24px;
  padding-left: 18px;
  color: var(--text-muted);
}

.subhero__meta li + li {
  margin-top: 6px;
}

.subhero__card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.subhero--single .subhero__grid {
  grid-template-columns: 1fr;
  max-width: 880px;
  gap: 28px;
}

.subhero--single .subhero__copy {
  max-width: 760px;
}

.subhero--single .subhero__card {
  max-width: 760px;
}

.subhero__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.subhero__panel {
  padding: 24px;
}

.subhero__panel-title {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.subhero__panel-list {
  padding-left: 18px;
  color: var(--text-body);
}

.subhero__panel-list li + li {
  margin-top: 8px;
}

.subhero--legal {
  min-height: auto;
  padding: 120px 0 32px;
}

.subhero--legal .subhero__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.subhero--legal .subhero__lead {
  font-size: 15px;
  line-height: 1.85;
  max-width: 760px;
}

.legal-doc {
  max-width: 820px;
}

.legal-doc h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-body);
}

.legal-doc ul {
  margin: 0 0 18px 1.25rem;
}

.legal-doc p + p {
  margin-top: 14px;
}

.legal-doc__meta {
  margin-top: 40px;
  color: var(--text-muted);
}

.info-section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.feature-grid,
.pricing-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.pricing-card,
.compare-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
}

.feature-card__title,
.pricing-card__title,
.compare-card__title,
.details-item__title,
.step-card__title,
.faq-item__question {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-card__body,
.pricing-card__body,
.details-item__body,
.step-card__body,
.faq-item__answer {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
}

.compare-card__list {
  padding-left: 18px;
  color: var(--text-body);
}

.compare-card__list li + li {
  margin-top: 10px;
}

.details-list {
  display: grid;
  gap: 20px;
}

.details-item {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}

.details-item:last-child {
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  gap: 16px;
  list-style: none;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-sub);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pricing-card__eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing-card__list,
.details-item__list {
  padding-left: 18px;
  color: var(--text-body);
}

.pricing-card__list li + li,
.details-item__list li + li {
  margin-top: 8px;
}

.pricing-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.notice-box {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--accent-sub);
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  color: var(--text-body);
}

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

.faq-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.faq-item__question {
  margin-bottom: 10px;
}

.mockshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mockshot {
  min-height: 260px;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #4b5563;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mockshot--wide {
  grid-column: 1 / -1;
  min-height: 340px;
}

.mockshot__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
}

.mockshot__title {
  margin-bottom: 8px;
}

.mockshot__body {
  color: rgba(255, 255, 255, 0.86);
}

.mockshot__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.assistant-footer__links a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.assistant-footer__links a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .subhero {
    padding: 120px 0 72px;
  }

  .subhero__grid,
  .feature-grid,
  .pricing-grid,
  .compare-grid,
  .mockshot-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .mockshot--wide {
    grid-column: auto;
    min-height: 260px;
  }

  .step-card__number {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .subhero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .pricing-card,
  .compare-card,
  .step-card,
  .faq-item,
  .subhero__panel {
    padding: 20px 18px;
  }
}
