/* ========================================================
   Reset & Base
========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-body);
  background: var(--bg-primary);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  color: inherit;
}

/* ========================================================
   Tokens
========================================================= */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F7F5F0;
  --bg-dark: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #8A8A8A;
  --accent: #B8860B;
  --accent-deep: #9A7009;
  --accent-soft: #E8DCC4;
  --accent-pale: #F6F0E1;
  --border: #EAEAEA;
  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;

  /* font: すべてNoto Sans JPに統一 */
  --font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================================
   Icon system
========================================================= */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ========================================================
   Common typography
========================================================= */
.section__eyebrow {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 16px;
  display: inline-block;
}
.section__title {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--text-primary);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}
.section__lead {
  color: var(--text-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2;
  margin: 0 0 48px;
  font-weight: 400;
}

.sp-only { display: none; }
@media (max-width: 640px) {
  .sp-only { display: inline; }
}

/* ========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary {
  background: var(--bg-dark);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent);
  box-shadow: 0 12px 30px -10px rgba(184, 134, 11, 0.6);
  transform: translateY(-2px);
}
.btn--ghost {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--text-primary);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--xl { padding: 22px 48px; font-size: 18px; }

/* ========================================================
   Navbar
========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  padding-top: env(safe-area-inset-top, 0);
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.08);
}
.navbar__inner {
  max-width: 1200px;
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text-primary);
  min-width: 0;
}
.navbar__logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--bg-dark);
  color: var(--accent-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
}
.navbar__logo-text {
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .navbar__logo-text { font-size: 14px; }
  .navbar__inner { padding: 0 16px; }
}
.navbar__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.navbar__nav a { color: var(--text-body); transition: color 0.2s; }
.navbar__nav a:hover { color: var(--accent); }

.navbar__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.navbar__toggle span {
  width: 22px; height: 2px;
  background: var(--text-primary);
  display: block;
  transition: transform 0.3s;
}
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-weight: 600; color: var(--text-primary); }

@media (max-width: 900px) {
  .navbar__nav, .navbar__inner > .btn { display: none; }
  .navbar__toggle { display: flex; }
}

/* ========================================================
   Reveal animations
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.animated-text {
  display: block;
  overflow: hidden;
}
.animated-text > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.animated-text.is-in > span { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .animated-text > span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee__track { animation: none !important; }
}

/* ========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 40px;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 520px; height: 520px;
  background: var(--accent-pale);
  top: -120px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: #F3EDE0;
  bottom: -180px; left: -120px;
}

.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.hero__content {
  text-align: left;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-bottom: 32px;
  }
  .hero__content { text-align: center; }
}
.hero__eyebrow {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 28px;
}
.hero__title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(36px, 6.2vw, 78px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin: 0 0 28px;
}
.hero__title--accent {
  background: linear-gradient(180deg, var(--text-primary) 60%, var(--accent) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 0.2em;
}
.hero__subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-body);
  line-height: 1.9;
  margin: 0 0 28px;
  max-width: 560px;
  font-weight: 500;
}
.hero__content[style] .hero__subtitle,
.hero__content .hero__subtitle { margin-inline: auto; }

/* 追記された大きなハイライトテキスト */
.hero__highlight {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.5;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin: 0 0 36px;
  max-width: 620px;
}
@media (max-width: 900px) {
  .hero__highlight { margin-inline: auto; }
  .hero__subtitle { margin-inline: auto; }
}
.hero__highlight-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
}
.hero__highlight-mark::before {
  content: "";
  position: absolute;
  inset: auto 0 0.05em 0;
  height: 0.32em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}
.hero__highlight-accent {
  color: var(--accent);
  display: inline-block;
  margin-top: 4px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .hero__cta { justify-content: center; }
}

/* Hero 内 写真マルキー (full-bleed) */
.hero__marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 32px;
  padding: 40px 0 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__marquee { margin-top: 8px; padding: 32px 0 32px; }
}

/* 実績数値 (CTA+マルキーの下) */
.hero .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.hero__stat-num {
  font-family: var(--font-main);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}
.hero__stat-num small {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--accent);
  margin-left: 4px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero__scroll { display: none; }

/* ========================================================
   Phone Mockup (仮設置)
========================================================= */
.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 640;
  border-radius: 40px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(0,0,0,0.1) inset;
}
.phone__placeholder-tag {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  z-index: 3;
  box-shadow: 0 6px 14px -4px rgba(184, 134, 11, 0.5);
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #F7F5F0 0%, #FFFFFF 40%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone__header {
  background: var(--bg-dark);
  color: #fff;
  padding: 36px 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.phone__head-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.phone__head-name { font-size: 12px; font-weight: 700; white-space: nowrap; }
.phone__head-sub { font-size: 10px; opacity: 0.7; margin-top: 2px; }

.phone__chat {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.phone__bubble {
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid var(--border);
}
.phone__bubble-ico {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.phone__bubble strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.phone__bubble p {
  margin: 3px 0 0;
  font-size: 10px;
  color: var(--text-body);
  line-height: 1.5;
}

.phone__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  padding: 1px 0 0;
}
.phone__menu-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-body);
}
.phone__menu-item .icon {
  width: 16px; height: 16px;
  color: var(--accent);
}

/* ========================================================
   Marquee (auto-scroll photo strip)
========================================================= */
.marquee {
  background: transparent;
  padding: 64px 0 80px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero__marquee.marquee {
  padding: 0;
}
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  padding: 0 10px;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  flex: 0 0 auto;
  width: calc((100vw - 120px) / 4.5);
  min-width: 240px;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--accent-pale), var(--bg-secondary)),
    var(--bg-secondary);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.marquee__item::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(184, 134, 11, 0.35);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.marquee__label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent-deep);
  background: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 999px;
}
/* 画像挿入時の推奨: .marquee__item に background-image を設定 */
.marquee__item[data-photo] {
  background-size: cover;
  background-position: center;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .marquee__item {
    width: calc((100vw - 80px) / 3.2);
    min-width: 200px;
  }
  .marquee__track { animation-duration: 30s; }
}
@media (max-width: 640px) {
  .marquee { padding: 48px 0 56px; }
  .marquee__item {
    width: calc((100vw - 60px) / 2.2);
    min-width: 180px;
  }
}

/* ========================================================
   Can-do (Horizontal scroll)
========================================================= */
.can-do {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.can-do .container { text-align: center; }

.h-scroll {
  position: relative;
  margin-top: 64px;
}
.h-scroll__track {
  display: flex;
  gap: 24px;
  padding: 24px 24px 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.h-scroll__track::-webkit-scrollbar { height: 6px; }
.h-scroll__track::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 6px; }

.h-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  scroll-snap-align: start;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.h-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.h-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #F0EFEB;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.h-card__tag--accent {
  background: var(--accent);
  color: #fff;
}

/* 困っていること(引用) */
.h-card__problem { text-align: left; }
.h-card__quote {
  position: relative;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0 0 10px;
  font-weight: 600;
  padding: 0 4px;
}
.h-card__quote-mark {
  font-family: "Georgia", serif;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  vertical-align: -0.2em;
  margin-right: 2px;
}
.h-card__quote-mark--end {
  margin-left: 2px;
  margin-right: 0;
  vertical-align: -0.5em;
}
.h-card__voice {
  display: inline-block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  padding-left: 16px;
  position: relative;
  font-weight: 500;
}
.h-card__voice::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 1px;
  background: var(--text-muted);
}

.h-card__arrow {
  align-self: center;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

/* LINEで解決 */
.h-card__solution { text-align: left; }
.h-card__answer {
  font-family: var(--font-main);
  font-size: 15px;
  margin: 0 0 6px;
  line-height: 1.5;
}
.h-card__answer strong {
  display: block;
  font-size: 20px;
  color: var(--accent-deep);
  font-weight: 800;
  line-height: 1.4;
}
.h-card__detail {
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.h-scroll__controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
.h-scroll__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-primary);
  font-size: 18px;
  border: 1px solid var(--border);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.h-scroll__btn:hover {
  background: var(--text-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================================
   Video Section
========================================================= */
.video-section {
  padding: 140px 0;
  background: var(--bg-primary);
}
.video-section .container { text-align: center; }
.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ========================================================
   Features
========================================================= */
.features {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.features .container { text-align: center; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 48px auto 0;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: var(--shadow-soft);
}
.feature__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-pale);
  color: var(--accent-deep);
  font-size: 28px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.feature:hover .feature__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.feature__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
  font-family: var(--font-main);
}

.features__note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.modal.is-open { display: flex; }
.modal__inner {
  background: #fff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 48px 36px 40px;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 20px;
  transition: background 0.2s;
  display: grid;
  place-items: center;
}
.modal__close:hover { background: var(--accent-soft); }
.modal__body { text-align: center; }
.modal__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--accent-pale);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 38px;
}
.modal__title {
  font-family: var(--font-main);
  font-size: 26px;
  color: var(--text-primary);
  margin: 0 0 16px;
  font-weight: 800;
}
.modal__desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
  margin: 0 0 20px;
}
.modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.modal__list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}
.modal__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 18px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}
.modal__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 50%;
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

/* ========================================================
   Voices
========================================================= */
.voices {
  padding: 140px 0;
  background: var(--bg-dark);
  color: #fff;
}
.voices__eyebrow { color: var(--accent-soft); }
.voices__title { color: #fff; }
.voices .section__lead { color: rgba(255,255,255,0.75); }

.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.voice-card {
  background: #2A2A2A;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.4s, background 0.4s;
  border: 1px solid rgba(255,255,255,0.04);
}
.voice-card:hover {
  transform: translateY(-4px);
  background: #333;
  border-color: var(--accent-soft);
}
.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.voice-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(232, 220, 196, 0.12);
  color: var(--accent-soft);
  display: grid; place-items: center;
  font-size: 24px;
}
.voice-card__name {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.voice-card__tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--accent-soft);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.voice-card__text {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.voice-card__text strong {
  color: var(--accent-soft);
  font-weight: 700;
}

@media (max-width: 900px) {
  .voices__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .voices__grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Stats
========================================================= */
.stats {
  padding: 140px 0;
  background: var(--bg-primary);
}
.stats .container { text-align: center; }

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.stats__card {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.stats__card:hover { transform: translateY(-4px); }
.stats__card--wide { grid-column: 1 / -1; }

.stats__label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stats__ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: #fff;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.stats__value {
  font-family: var(--font-main);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stats__value small {
  font-size: 0.32em;
  color: var(--accent);
  font-weight: 800;
  margin-left: 8px;
}
.stats__note {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.8;
}

/* Chart decorations */
.stats__chart {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 80px;
  margin-top: 8px;
}
.stats__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-soft) 100%);
  border-radius: 8px 8px 0 0;
  transform-origin: bottom;
  animation: barGrow 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stats__bar:nth-child(1) { animation-delay: 0.05s; }
.stats__bar:nth-child(2) { animation-delay: 0.15s; }
.stats__bar:nth-child(3) { animation-delay: 0.25s; }
.stats__bar:nth-child(4) { animation-delay: 0.35s; }
.stats__bar:nth-child(5) { animation-delay: 0.45s; }
@keyframes barGrow {
  from { transform: scaleY(0); opacity: 0.3; }
  to { transform: scaleY(1); opacity: 1; }
}

.stats__pie {
  width: 140px; height: 140px;
  margin-top: 8px;
}
.stats__pie-fill {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--pct, 0) * 1%), var(--accent-soft) 0);
  position: relative;
}
.stats__pie-fill::before {
  content: "";
  position: absolute;
  inset: 16px;
  background: var(--bg-secondary);
  border-radius: 50%;
}

.stats__timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.stats__dot {
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
  border: 1px solid var(--border);
}
.stats__dot--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.stats__line {
  flex: 1;
  min-width: 20px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--text-muted) 0 4px, transparent 4px 8px);
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Support
========================================================= */
.support {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.support .container { text-align: center; }

.support__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-soft);
}
.support__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.support__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-weight: 500;
}
.support__list li:last-child { border-bottom: none; }
.support__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
}

.support__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.support__card {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
  transition: transform 0.35s;
}
.support__card:hover { transform: scale(1.05); }
.support__emoji {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--accent);
}
.support__card--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(184, 134, 11, 0.4);
}
.support__card--accent .support__emoji { color: #fff; }

.support__note {
  margin-top: 48px;
  font-family: var(--font-main);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-primary);
  line-height: 1.9;
  font-weight: 700;
}

@media (max-width: 900px) {
  .support__wrap { grid-template-columns: 1fr; padding: 32px; }
}

/* ========================================================
   Closing
========================================================= */
.closing {
  padding: 160px 0;
  background: var(--bg-primary);
  background-image:
    radial-gradient(circle at 10% 20%, var(--accent-pale) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, #F3EDE0 0%, transparent 50%);
  text-align: center;
}
.closing__title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 32px;
}
.closing__accent {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.closing__accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 6px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 3px;
}
.closing__text {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-body);
  line-height: 2;
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 500;
}
.closing__text strong {
  color: var(--text-primary);
  font-weight: 800;
  background: linear-gradient(transparent 70%, var(--accent-soft) 70%);
  padding: 0 4px;
}
.closing__cta { display: flex; justify-content: center; }

/* ========================================================
   FAQ
========================================================= */
.faq {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.faq .container { max-width: 860px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item[open] {
  box-shadow: var(--shadow-soft);
  border-color: var(--accent-soft);
}
.faq__item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--bg-secondary); }
.faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq__body {
  padding: 0 28px 24px;
  color: var(--text-body);
  line-height: 2;
  font-size: 14px;
}
.faq__body p { margin: 0; }

/* ========================================================
   Contact
========================================================= */
.contact {
  padding: 160px 0;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(232, 220, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.contact__title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: 1.3;
  color: #fff;
  margin: 0 0 32px;
  position: relative;
}
.contact__text {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.8);
  line-height: 2;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  font-weight: 500;
}
.contact__cta {
  display: flex;
  justify-content: center;
  position: relative;
}
.contact .btn--primary {
  background: var(--accent);
  color: #fff;
}
.contact .btn--primary:hover {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 12px 30px -10px rgba(255,255,255,0.3);
}

/* ========================================================
   Footer
========================================================= */
.footer {
  padding: 56px 0 32px;
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.footer__tag {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
}
.footer__links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent-soft); }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ========================================================
   Responsive: small screens
========================================================= */
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__stats { gap: 8px; }
  .hero__highlight { margin-bottom: 40px; }
  .can-do, .video-section, .features, .voices, .stats, .support, .faq { padding: 100px 0; }
  .closing, .contact { padding: 120px 0; }
  .h-card { flex-basis: 280px; padding: 24px; }
  .support__wrap { padding: 24px; gap: 24px; }
  .stats__card { padding: 28px; }
}
