:root {
  --ink: #17202a;
  --muted: #5f6872;
  --navy: #21446e;
  --navy-deep: #173555;
  --sage: #b8cca6;
  --sage-soft: #e7eee0;
  --yellow: #ffd36b;
  --yellow-soft: #fff2c9;
  --lilac: #ead8ed;
  --sky: #dce8f3;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --line: #dfe4e2;
  --shadow: 0 22px 60px rgba(35, 53, 69, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--navy-deep);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 228, 226, 0.8);
  background: rgba(251, 252, 247, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #48525c;
  font-size: 0.94rem;
  font-weight: 700;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 10px 26px rgba(33, 68, 110, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(33, 68, 110, 0.26);
}

.button-secondary {
  border-color: #c8cecc;
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

.button-secondary:hover {
  background: white;
  color: var(--navy-deep);
  box-shadow: none;
}

.button-light {
  background: white;
  color: var(--navy-deep);
  box-shadow: none;
}

.button-light:hover {
  background: var(--yellow-soft);
}

.button.is-disabled {
  cursor: not-allowed;
  color: #7b8388;
  background: #e8ebea;
  box-shadow: none;
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 8% 22%, rgba(184, 204, 166, 0.55), transparent 32%),
    radial-gradient(circle at 92% 68%, rgba(220, 232, 243, 0.9), transparent 34%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--navy);
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: #4e5861;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.release-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #53606b;
  font-size: 0.92rem;
  font-weight: 700;
}

.release-note::before {
  content: "모집 중";
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #71530b;
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.phone {
  position: relative;
  width: min(360px, 78vw);
  margin: 0;
  padding: 9px;
  border: 2px solid #173555;
  border-radius: 48px;
  background: #142c45;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 88px;
  height: 19px;
  border-radius: 999px;
  background: #142c45;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  border-radius: 38px;
}

.floating-card {
  position: absolute;
  max-width: 245px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(30, 54, 73, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 800;
  line-height: 1.4;
}

.floating-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.floating-card-top {
  top: 60px;
  right: -16px;
}

.floating-card-bottom {
  left: -26px;
  bottom: 85px;
}

.benefit-strip {
  position: relative;
  z-index: 2;
  margin-top: -12px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(35, 53, 69, 0.08);
}

.benefit-item {
  padding: 26px 30px;
}

.benefit-item + .benefit-item {
  border-left: 1px solid var(--line);
}

.benefit-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.benefit-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: #f1f4ed;
}

.section-blue {
  background: #edf3f8;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.neis-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid #d9dfd5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffef9 0%, #f0f5e9 100%);
  box-shadow: var(--shadow);
}

.neis-card h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.neis-card h2 span {
  display: block;
  color: var(--navy);
}

.neis-card p {
  color: #4f5a61;
}

.neis-paths {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 56, 72, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.neis-paths strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
}

.neis-paths ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4f5a61;
  font-size: 0.92rem;
  line-height: 1.55;
}

.neis-paths p {
  margin: 10px 0 0;
  color: #687279;
  font-size: 0.82rem;
  line-height: 1.55;
}

.neis-paths b {
  display: inline-block;
  min-width: 3.2em;
  color: #1c3039;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-weight: 900;
}

.note {
  margin-top: 22px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: #59636a;
  font-size: 0.88rem;
}

.phone-pair {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 20px;
}

.phone-pair .phone {
  width: 100%;
  max-width: 320px;
}

.phone-pair .phone:first-child {
  transform: translateY(34px) rotate(-2.5deg);
}

.phone-pair .phone:last-child {
  transform: translateY(-24px) rotate(2.5deg);
}

.feature-stack {
  display: grid;
  gap: 30px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  min-height: 680px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  overflow: hidden;
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-row:nth-child(even) .feature-media {
  order: 1;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.feature-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: #3f5737;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-media {
  position: relative;
  display: grid;
  place-items: center;
}

.feature-media .phone {
  width: min(320px, 72vw);
}

/*
 * 사진 두 장을 나란히 놓는 기능 행.
 * 최소 폭을 0으로 두는 이유: 컬럼에 px 최소값을 주면 900~1060px 구간에서
 * 두 컬럼 합이 카드 내부 폭을 넘어 .feature-row의 overflow:hidden에 사진이
 * 잘렸다. fr 비율만 남기면 같은 데스크톱 폭에서 결과는 그대로이면서
 * 좁아질 때는 .record-shot이 함께 줄어든다.
 */
.feature-row-records {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

/* 짝수 행은 order로 사진이 왼쪽에 오므로 넓은 컬럼도 같이 왼쪽으로 옮긴다. */
.feature-row-pair {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.feature-row-pair:nth-child(even) {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

/* 흰 카드 위에서는 기본 .note 배경(반투명 흰색)이 보이지 않는다. */
.feature-copy .note {
  border: 1px solid #e2e7dd;
  background: #f3f6ef;
}

.record-pair {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.record-shot {
  flex: 1 1 0;
  max-width: 270px;
  min-width: 0;
}

.record-shot:nth-child(2) {
  transform: translateY(34px);
}

.record-shot .phone {
  width: 100%;
}

.record-label {
  display: table;
  margin: 0 auto 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: #604b13;
  font-size: 0.78rem;
  font-weight: 850;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.widget-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.widget-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.widget-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.widget-note {
  max-width: 760px;
  background: white;
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
}

.gallery-item {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.gallery-item .phone {
  width: 100%;
  max-width: 320px;
}

.gallery-item figcaption {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: center;
  padding: clamp(36px, 6vw, 80px);
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
}

.privacy-panel .eyebrow {
  color: var(--yellow);
}

.privacy-panel h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.privacy-panel p {
  color: #d7e0e8;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.privacy-point {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 750;
}

.privacy-panel .phone {
  width: min(290px, 68vw);
  border-color: rgba(255, 255, 255, 0.45);
  justify-self: center;
}

.tester-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 8vw, 92px);
  border-radius: var(--radius-lg);
  background: var(--yellow);
}

.tester-cta::after {
  content: "14";
  position: absolute;
  right: 2%;
  bottom: -24%;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(12rem, 30vw, 27rem);
  font-weight: 900;
  line-height: 1;
}

.tester-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.tester-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.tester-cta p {
  max-width: 630px;
  margin: 22px 0 30px;
  color: #4e411c;
  font-weight: 650;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 750;
}

.mobile-cta {
  display: none;
}

.page-hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 204, 166, 0.55), transparent 30%),
    var(--paper);
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.status-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--yellow-soft);
  color: #604b13;
  font-weight: 800;
}

.status-box::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c08e10;
}

.status-box[data-state="ready"] {
  background: var(--sage-soft);
  color: #35502d;
}

.status-box[data-state="ready"]::before {
  background: #557c46;
}

.steps {
  display: grid;
  gap: 20px;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.step-card h2,
.step-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.step-card p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-box {
  margin-top: 24px;
  padding: 24px;
  border-radius: 20px;
  background: #edf3f8;
  color: #405161;
}

.info-box strong {
  color: var(--navy-deep);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 56px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  color: #4f5962;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.support-card h2,
.support-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.support-card-wide {
  grid-column: 1 / -1;
}

.support-paths {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f5f7f8;
  list-style: none;
  color: #4f5962;
  line-height: 1.55;
}

.support-paths b {
  display: inline-block;
  min-width: 3.2em;
  color: var(--navy-deep);
}

/*
 * 사진 두 장이 들어가는 행은 1120px 아래에서 한 컬럼으로 내린다.
 * 두 컬럼을 유지하면 사진이 200px대까지 줄어 화면 내용이 읽히지 않는다.
 * 1120px은 두 장이 제 폭(270px)을 유지할 수 있는 최소 지점이다.
 */
@media (max-width: 1120px) {
  .feature-row-records,
  .feature-row-pair,
  .feature-row-pair:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-row-records:nth-child(even) .feature-copy,
  .feature-row-records:nth-child(even) .feature-media,
  .feature-row-pair:nth-child(even) .feature-copy,
  .feature-row-pair:nth-child(even) .feature-media {
    order: initial;
  }

  .feature-row-records .feature-media,
  .feature-row-pair .feature-media {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .hero-grid,
  .neis-card,
  .feature-row,
  .privacy-panel,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 640px;
  }

  .floating-card-top {
    right: 4%;
  }

  .floating-card-bottom {
    left: 2%;
  }

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

  .benefit-item + .benefit-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .neis-card {
    gap: 28px;
  }

  .feature-row:nth-child(even) .feature-copy,
  .feature-row:nth-child(even) .feature-media {
    order: initial;
  }

  .feature-row {
    min-height: 0;
  }

  .feature-row-records,
  .feature-row-pair,
  .feature-row-pair:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-media {
    margin-top: 16px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  /* 두 칸 배치에서 홀수로 남는 마지막 장은 한 줄을 차지해 가운데 놓는다. */
  .gallery-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .privacy-panel {
    gap: 44px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav .button {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 58px 0 50px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 565px;
    margin-top: 8px;
  }

  .phone {
    border-radius: 39px;
  }

  .phone img {
    border-radius: 31px;
  }

  .floating-card {
    max-width: 180px;
    padding: 13px 15px;
    font-size: 0.83rem;
  }

  .floating-card-top {
    top: 35px;
    right: -5px;
  }

  .floating-card-bottom {
    left: -5px;
    bottom: 45px;
  }

  .section {
    padding: 80px 0;
  }

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

  .neis-card,
  .feature-row,
  .privacy-panel,
  .tester-cta {
    border-radius: 28px;
  }

  .phone-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phone-pair .phone {
    max-width: 340px;
  }

  .phone-pair .phone:first-child,
  .phone-pair .phone:last-child {
    transform: none;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .record-pair {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 8px 0 0;
    overflow: visible;
  }

  .record-shot {
    flex: 0 0 auto;
    width: min(100%, 280px);
    max-width: 280px;
  }

  .record-shot:nth-child(2) {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }

  .gallery-item .phone {
    max-width: 340px;
  }

  .gallery-item figcaption {
    max-width: 340px;
  }

  .widget-card {
    padding: 24px 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 100px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
  }

  .mobile-cta .button {
    width: 100%;
    min-height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.85);
  }

  .page-hero {
    padding: 64px 0 46px;
  }

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

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .step-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
