@charset "UTF-8";

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

:root {
  --cream: oklch(97% 0.012 80);
  --cream-mid: oklch(93% 0.018 82);
  --green-dark: oklch(38% 0.11 148);
  --green-mid: oklch(52% 0.13 148);
  --green-light: oklch(72% 0.1 148);
  --green-pale: oklch(93% 0.04 148);
  --gold: oklch(72% 0.13 78);
  --gold-dark: oklch(58% 0.13 72);
  --text-dark: oklch(22% 0.015 80);
  --text-mid: oklch(48% 0.015 80);
  --text-light: oklch(68% 0.012 80);
  --white: oklch(99.5% 0.005 80);
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.serif {
  font-family: 'Shippori Mincho', serif;
}

.section-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(252,249,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(88% 0.02 80);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.logo span {
  color: var(--gold-dark);
}

.header-cta {
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  margin-top: 64px;
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-text-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-inner {
  width: 100%;
  max-width: 720px;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--green-mid);
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--green-mid);
}

.hero-headline {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(3.4rem, 4vw, 5.4rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: normal;
  color: var(--green-dark);
}

.hero-sub {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--text-dark);
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: bold;
  border-left: 3px solid var(--gold);
  padding-left: 1.6rem;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px oklch(38% 0.11 148 / 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px oklch(38% 0.11 148 / 0.4);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-note {
  font-size: 1.3rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-weight: 500;
}

.btn-note .check {
  color: var(--green-mid);
  font-weight: 700;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-image-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-dark);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: oklch(92% 0.04 148);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── PAIN SECTION ── */
.pain-section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pain-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.6rem, 3.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 24px 0;
}

.pain-section h2 strong {
  color: var(--green-dark);
  font-weight: 700;
}

.pain-section p {
  font-size: 1.5rem;
  color: var(--text-mid);
  line-height: 2;
  max-width: 600px;
  margin: 24px auto 0;
  font-weight: 500;
}

.pain-list {
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 32px;
  text-align: left;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pain-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features-section {
  background: var(--white);
  padding: 100px 24px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.8rem, 3vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
}

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

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid oklch(90% 0.02 80);
  background: var(--cream);
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.feature-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 4.8rem;
  font-weight: 800;
  color: oklch(82% 0.07 148);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
}

.feature-content h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-content p {
  font-size: 1.35rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
}

.feature-tag {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-mid);
  border: 1px solid var(--green-light);
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

/* ── STORY SECTION ── */
.story-section {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--green-pale);
  z-index: 0;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.story-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-text h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.6rem, 2.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--text-dark);
  margin: 20px 0 24px;
}

.story-text h2 em {
  font-style: normal;
  color: var(--green-dark);
}

.story-text p {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-weight: 300;
}

/* ── PRODUCT SET ── */
.product-section {
  background: var(--green-dark);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
}

.product-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.product-eyebrow {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-family: 'Shippori Mincho', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.product-eyebrow::before, .product-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.product-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.8rem, 3.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 16px;
}

.product-section h2 em {
  font-style: normal;
  color: var(--gold);
}

.product-section .sub {
  font-size: 1.4rem;
  color: oklch(80% 0.05 148);
  font-weight: 300;
  margin-bottom: 56px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.product-img {
  aspect-ratio: 1;
  background: oklch(97% 0.01 80);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-details {
  padding: 48px 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: oklch(95% 0.05 148);
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  width: fit-content;
}

.product-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.product-desc {
  font-size: 1.3rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

.product-price-wrap {
  border-top: 1px solid oklch(90% 0.02 80);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-price-note {
  font-size: 1.1rem;
  color: var(--text-light);
}

.product-orig-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price {
  font-family: 'Shippori Mincho', serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}

.product-price span {
  font-size: 1.6rem;
  font-weight: 400;
}

.product-orig {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: line-through;
  text-decoration-color: oklch(55% 0.18 28);
  text-decoration-thickness: 2px;
}

.product-off-badge {
  background: oklch(55% 0.18 28);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.btn-cta-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, oklch(72% 0.13 78), oklch(62% 0.15 68));
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 20px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 24px oklch(62% 0.15 68 / 0.4);
  width: 100%;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-cta-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px oklch(62% 0.15 68 / 0.55);
}

.btn-cta-large svg {
  width: 18px;
  height: 18px;
}

.btn-guarantee {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── VOICE ── */
.voice-section {
  padding: 100px 24px;
  background: var(--cream);
}

.voice-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voice-header {
  text-align: center;
  margin-bottom: 60px;
}

.voice-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.6rem, 3vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
}

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

.voice-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid oklch(90% 0.02 80);
  transition: box-shadow 0.25s, transform 0.25s;
}

.voice-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.voice-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 5.2rem;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

.voice-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  padding-top: 24px;
}

.voice-stars span {
  color: var(--gold);
  font-size: 1.4rem;
}

.voice-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-weight: 300;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid oklch(92% 0.02 80);
  padding-top: 20px;
}

.voice-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  color: var(--green-mid);
  font-weight: 600;
}

.voice-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.voice-profile {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
  padding: 100px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid oklch(90% 0.02 80);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--green-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.25s, background 0.25s;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--green-pale);
}

.faq-a {
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  max-height: 0;
  padding: 0;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(160deg, var(--cream-mid) 0%, var(--white) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: var(--green-pale);
  z-index: 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta .section-label {
  margin-bottom: 24px;
}

.final-cta h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 20px;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--green-dark);
}

.final-cta p {
  font-size: 1.4rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 70px;
  font-weight: 300;
}

.final-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, oklch(72% 0.13 78), oklch(62% 0.15 68));
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 22px 60px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 40px oklch(62% 0.15 68 / 0.45);
  position: relative;
  overflow: hidden;
}

.btn-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 50px oklch(62% 0.15 68 / 0.6);
}

.btn-final svg {
  width: 18px;
  height: 18px;
}

.final-note {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: none;
  padding: 8px 0;
  border-radius: 8px;
}

.final-note .price-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.final-note small {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-mid);
  font-family: 'Noto Sans JP', sans-serif;
}

.final-note-badge {
  background: oklch(55% 0.18 28);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.final-note-badge--green {
  background: var(--green-dark);
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 40px 24px;
  text-align: center;
}

.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 1.1rem;
  color: oklch(55% 0.01 80);
  letter-spacing: 0.05em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-text-inner {
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text-col {
    padding: 60px 24px 48px;
    order: 2;
  }

  .hero-image-col {
    order: 1;
    aspect-ratio: 4/3;
    min-height: 280px;
  }

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

  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-img {
    aspect-ratio: 16/9;
  }

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

  .product-img {
    aspect-ratio: 16/9;
  }

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

  .trust-bar {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .header-cta {
    display: none;
  }

  .pain-section h2 br {
    display: none;
  }

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

  .feature-num {
    font-size: 3.2rem;
  }

  .btn-final {
    padding: 18px 32px;
    font-size: 1.6rem;
  }
}
