/* ===== Variables ===== */
:root {
  --bg-dark: #0F1626;
  --bg-dark-2: #1B263B;
  --bg-light: #F8F9FB;
  --bg-card: #FFFFFF;
  --text-main: #FFFFFF;
  --text-dark: #1B263B;
  --text-body: #2A3447;
  --text-sub: #B8C5D6;
  --text-sub-dark: #5A6378;
  --accent-y: #FFD93D;
  --accent-r: #FF6B6B;
  --max: 1180px;
  --pad: clamp(20px, 5vw, 60px);
  --section-y: clamp(72px, 10vw, 140px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 22, 38, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 217, 61, 0.12);
  transition: background 0.2s ease;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}
.nav__logo {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent-y);
  color: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
}
.nav__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.nav__role {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-sub);
  margin-left: 8px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav__menu a:hover { color: var(--accent-y); }
.nav__menu .nav__cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent-y);
  color: var(--bg-dark);
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav__menu .nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 217, 61, 0.3);
  color: var(--bg-dark);
}
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-main); margin: 5px 0; border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-dark); padding: 16px 24px 24px;
    gap: 14px; border-bottom: 1px solid rgba(255, 217, 61, 0.12);
  }
  .nav__name { font-size: 14px; }
  .nav__role { display: none; }
}

/* offset for fixed nav anchor scroll */
html { scroll-padding-top: 78px; scroll-behavior: smooth; }
body { padding-top: 64px; }

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.75;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; }
p { margin: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-sub);
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
.eyebrow--dark { color: var(--text-sub-dark); }
.eyebrow__bar {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--accent-r);
  border-radius: 2px;
}

/* ===== Section title ===== */
.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  margin: 0 0 16px 0;
  line-height: 1.35;
}
.section-title--light { color: var(--text-main); }
.section-lead {
  font-size: 16px;
  color: var(--text-sub-dark);
  margin: 0 0 56px 0;
  max-width: 720px;
}
.section-lead--light { color: var(--text-sub); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-main);
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 12vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero__container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__right { display: none; }
}
.hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.005em;
  margin: 24px 0 32px 0;
}
.accent-yellow {
  color: var(--accent-y);
  position: relative;
  display: inline-block;
}
.accent-yellow::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--accent-y);
  opacity: 0.25;
  border-radius: 2px;
}
.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent-y);
  color: var(--bg-dark);
  box-shadow: 0 6px 0 rgba(255, 217, 61, 0.25);
}
.btn--primary:hover { box-shadow: 0 10px 24px rgba(255, 217, 61, 0.35); }
.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover { border-color: var(--text-main); background: rgba(255, 255, 255, 0.06); }
.btn__arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.hero__micro {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}
.hero__right { position: relative; min-height: 380px; }
.hero__terminal {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 217, 61, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}
.hero__terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero__dot {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
}
.hero__dot--r { background: #FF6B6B; }
.hero__dot--y { background: #FFD93D; }
.hero__dot--g { background: #6FCF97; }
.hero__terminal-title {
  margin-left: 12px;
  font-family: 'Inter', monospace;
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}
.hero__terminal-body {
  padding: 20px 22px;
  font-family: 'SF Mono', 'Menlo', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-main);
}
.hero__terminal-body p { margin: 0; }
.t-prompt {
  color: var(--accent-y);
  margin-right: 8px;
  font-weight: 700;
}
.t-out {
  color: var(--text-sub);
  margin-bottom: 6px !important;
  padding-left: 18px;
}
.t-out:last-child { color: var(--accent-y); font-weight: 700; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--accent-y);
  vertical-align: middle;
  margin-left: 6px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.hero__deco {
  position: absolute;
  top: -30px;
  right: -30px;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  z-index: 1;
}
.deco-line {
  display: block;
  width: 6px;
  background: var(--accent-y);
  border-radius: 4px;
  opacity: 0.5;
}
.deco-line--1 { height: 90px; }
.deco-line--3 { height: 140px; width: 8px; }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-y) 0;
  background: var(--bg-light);
}
.about__container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .about__container { grid-template-columns: 1fr; }
  .about__photo { max-width: 200px; margin: 0 auto 24px; }
}
.about__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-y);
  box-shadow: 0 12px 32px rgba(15, 22, 38, 0.12);
}
.about__body {
  max-width: 720px;
  margin-top: 32px;
}
.about__body p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
}
.about__body p strong {
  color: var(--bg-dark);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(255, 217, 61, 0.4) 60%);
}
.about__lead {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--bg-dark);
  padding: 20px 0 20px 24px;
  border-left: 4px solid var(--accent-y);
  margin-top: 28px !important;
  background: rgba(255, 217, 61, 0.08);
  border-radius: 0 8px 8px 0;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: var(--section-y) 0;
  background: var(--bg-dark);
  color: var(--text-main);
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 800px) {
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
}
.num-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 61, 0.18);
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.num-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 61, 0.4);
}
.num-card__num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 12px;
}
.num-card__unit {
  font-size: 0.4em;
  color: var(--accent-y);
  margin-left: 6px;
  font-weight: 700;
}
.num-card__label {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 217, 61, 0.1);
  border: 1px solid rgba(255, 217, 61, 0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-y);
  letter-spacing: 0.02em;
}

/* ===== GENRES ===== */
.genres {
  padding: var(--section-y) 0;
  background: var(--bg-light);
}
.genres__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .genres__grid { grid-template-columns: 1fr; }
}
.genre-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(15, 22, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.genre-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 22, 38, 0.1);
}
.genre-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.18) 0%, rgba(255, 107, 107, 0.14) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent-r);
}
.genre-card__icon svg { width: 28px; height: 28px; }
.genre-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.genre-card__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 20px;
}
.genre-card__list {
  border-top: 1px solid #e8edf5;
  padding-top: 16px;
}
.genre-card__list li {
  font-size: 13px;
  color: var(--text-sub-dark);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.genre-card__list li::before {
  content: "•";
  color: var(--accent-r);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ===== PUBLISHED ===== */
.published {
  padding: var(--section-y) 0;
  background: var(--bg-dark);
  color: var(--text-main);
}
.published-main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 61, 0.18);
  border-radius: 16px;
  padding: 40px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.published-main__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-y);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.published-main__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 8px;
}
.published-main__sub {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 16px;
}
.published-main__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 16px;
  max-width: 760px;
}
.link-arrow {
  display: inline-block;
  color: var(--accent-y);
  font-weight: 700;
  font-size: 15px;
  transition: gap 0.15s ease;
  border-bottom: 1px solid transparent;
}
.link-arrow:hover { border-bottom-color: var(--accent-y); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 800px) {
  .media-grid { grid-template-columns: 1fr; }
}
.media-card {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 61, 0.2);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--text-main);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 217, 61, 0.5);
  box-shadow: 0 12px 32px rgba(255, 217, 61, 0.08);
}
.media-card--feature {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}
.media-card--wide {
  margin-top: 24px;
}
.media-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.media-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  object-fit: contain;
}
.media-card__cover {
  margin: -32px -28px 20px;
  height: 200px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.media-card__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.media-card:hover .media-card__cover img { transform: scale(1.04); }
.media-card__cover--homes {
  background: #fff;
  display: grid;
  place-items: center;
}
.media-card__logo-large {
  width: 100px; height: 100px; object-fit: contain;
}
.media-card--wide .media-card__cover { height: 180px; }
.media-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-y);
  text-transform: uppercase;
}
.media-card__badge {
  display: inline-block;
  background: var(--accent-r);
  color: var(--text-main);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.media-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}
.media-card__domain {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 14px;
  opacity: 0.7;
}
.media-card__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
  margin-bottom: 16px;
}

.published-other {
  margin-top: 56px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--accent-y);
  border-radius: 0 12px 12px 0;
}
.published-other__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-y);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.published-other__desc {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.8;
}
.published-other__desc strong {
  color: var(--text-main);
  font-weight: 700;
}
.published-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ptag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 217, 61, 0.08);
  border: 1px solid rgba(255, 217, 61, 0.25);
  color: var(--text-main);
  font-size: 12px;
  border-radius: 6px;
}

.note-row {
  margin-top: 56px;
}
.note-row__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-y);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.published-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
@media (max-width: 900px) {
  .published-grid { grid-template-columns: 1fr; }
}
.pub-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: block;
}
.pub-card:hover { transform: translateY(-4px); }
.pub-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.pub-card__body { padding: 20px; }
.pub-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-y);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.pub-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text-main);
  margin-bottom: 6px;
}
.pub-card__desc {
  font-size: 12px;
  color: var(--text-sub);
}

/* ===== SAMPLES ===== */
.samples {
  padding: var(--section-y) 0;
  background: var(--bg-light);
}
.samples-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .samples-list { grid-template-columns: 1fr; }
}
.samples-group {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 14px rgba(15, 22, 38, 0.05);
}
.samples-group__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-y);
}
.samples-group ul li {
  padding: 12px 0;
  border-bottom: 1px solid #ecf0f6;
  font-size: 14px;
  line-height: 1.6;
}
.samples-group ul li:last-child { border-bottom: none; }
.samples-group ul li a {
  color: var(--text-body);
  border-bottom: 1px dashed transparent;
}
.samples-group ul li a:hover {
  color: var(--bg-dark);
  border-bottom-color: var(--accent-r);
}
.word-count {
  display: inline-block;
  font-size: 11px;
  color: var(--text-sub-dark);
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
}

/* ===== VOICE ===== */
.voice {
  padding: var(--section-y) 0;
  background: var(--bg-light);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .voice-grid { grid-template-columns: 1fr; }
}
.voice-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15, 22, 38, 0.06);
  position: relative;
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: 'Inter', serif;
  font-size: 80px;
  color: var(--accent-y);
  line-height: 1;
  opacity: 0.8;
}
.voice-card__stars {
  color: var(--accent-y);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.voice-card__quote {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 16px;
}
.voice-card__meta {
  font-size: 12px;
  color: var(--text-sub-dark);
  border-top: 1px solid #ecf0f6;
  padding-top: 12px;
  line-height: 1.6;
}
.voice-card__job {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--accent-r);
  font-weight: 700;
}
.voice-card--feature {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 217, 61, 0.06) 100%);
  border: 1px solid rgba(255, 217, 61, 0.4);
}
.voice-note a {
  color: var(--accent-r);
  text-decoration: underline;
  margin-left: 4px;
}
.voice-note {
  font-size: 12px;
  color: var(--text-sub-dark);
  margin-top: 24px;
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-y) 0;
  background: var(--bg-dark);
  color: var(--text-main);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card--feature {
  background: linear-gradient(180deg, rgba(255, 217, 61, 0.12) 0%, rgba(255, 217, 61, 0.04) 100%);
  border-color: var(--accent-y);
  box-shadow: 0 12px 36px rgba(255, 217, 61, 0.1);
  position: relative;
}
.price-card--feature::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-y);
  color: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 999px;
}
.price-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-y);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}
.price-card__num {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--accent-y);
  line-height: 1;
  margin-bottom: 20px;
}
.price-card__unit {
  font-size: 14px;
  color: var(--text-sub);
  margin-left: 6px;
  font-weight: 700;
}
.price-card__feat {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
.price-card__feat li {
  font-size: 13px;
  color: var(--text-sub);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.price-card__feat li::before {
  content: "✓";
  color: var(--accent-y);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 32px;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-y) 0;
  background: var(--bg-light);
}
.faq-list {
  max-width: 820px;
  margin: 32px auto 0;
}
.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(15, 22, 38, 0.04);
  overflow: hidden;
}
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-dark);
  padding: 20px 56px 20px 24px;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-r);
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary:hover { background: rgba(255, 217, 61, 0.06); }
.faq-item p {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-body);
  border-top: 1px solid #ecf0f6;
  padding-top: 16px;
  margin: 0 24px;
}

/* ===== CONTACT FORM ===== */
.contact-card {
  position: relative;
}
.contact-card__logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  object-fit: contain;
  margin-bottom: 16px;
}
.contact-card--main .contact-card__logo {
  background: var(--bg-dark);
  padding: 6px;
}
.contact-direct {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.16) 0%, rgba(255, 217, 61, 0.06) 100%);
  border: 1px solid var(--accent-y);
  border-radius: 14px;
  text-align: left;
}
.contact-direct__badge {
  display: inline-block;
  background: var(--accent-y);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.contact-direct__text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
}
.contact-direct__text strong {
  color: var(--bg-dark);
  background: linear-gradient(transparent 60%, rgba(255, 217, 61, 0.45) 60%);
}

.contact-secondary {
  max-width: 720px;
  margin: 40px auto 0;
}
.contact-secondary__head {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub-dark);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.contact-secondary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .contact-secondary__grid { grid-template-columns: 1fr; }
}
.contact-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid #ecf0f6;
  color: var(--text-body);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.contact-mini:hover {
  background: #fff;
  border-color: var(--accent-y);
}
.contact-mini__logo {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #fff; padding: 3px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-mini__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 2px;
}
.contact-mini__desc {
  font-size: 11px;
  color: var(--text-sub-dark);
  line-height: 1.4;
}
.contact-mini__arrow {
  margin-left: auto;
  color: var(--accent-r);
  font-weight: 700;
}

.hero__micro strong {
  color: var(--accent-y);
  background: rgba(255, 217, 61, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.contact-form-wrap {
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(15, 22, 38, 0.06);
  text-align: left;
}
.contact-form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 8px;
  text-align: center;
}
.contact-form-sub {
  font-size: 13px;
  color: var(--text-sub-dark);
  margin-bottom: 24px;
  text-align: center;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.contact-form label span {
  color: var(--accent-r);
  margin-left: 4px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: var(--bg-light);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-y);
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  font-size: 11px;
  color: var(--text-sub-dark);
  margin-top: 12px;
  text-align: center;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-y) 0;
  background: var(--bg-dark);
  color: var(--text-main);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr; }
}
.process-step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 4px solid var(--accent-y);
}
.process-step__num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-y);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.process-step__time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent-y);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.process-step__desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-y) 0;
  background: var(--bg-light);
  text-align: center;
}
.contact .section-lead { margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(15, 22, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 22, 38, 0.12);
}
.contact-card--main {
  background: linear-gradient(135deg, var(--accent-y) 0%, #FFC83D 100%);
  color: var(--bg-dark);
}
.contact-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-sub-dark);
  margin-bottom: 6px;
}
.contact-card--main .contact-card__label { color: var(--bg-dark); opacity: 0.6; }
.contact-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 8px;
}
.contact-card__sub {
  font-size: 13px;
  color: var(--text-sub-dark);
  margin-bottom: 16px;
}
.contact-card--main .contact-card__sub { color: var(--text-dark); opacity: 0.75; }
.contact-card--main .link-arrow { color: var(--bg-dark); border-bottom-color: var(--bg-dark); }
.contact-note {
  font-size: 13px;
  color: var(--text-sub-dark);
  margin-top: 24px;
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-sub);
  padding: 56px 0 36px;
  text-align: center;
  border-top: 4px solid var(--accent-y);
}
.footer__brand {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-y);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer__role {
  font-size: 13px;
  margin-bottom: 28px;
}
.footer__copy, .footer__updated {
  font-size: 11px;
  color: var(--text-sub-dark);
  letter-spacing: 0.04em;
}
.footer__updated { margin-top: 4px; }
