/* =========================================================
   アマンIPM ネパール — Design System
   Brand: #416444 / Typeface: Noto Sans JP
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand greens */
  --green: #416444;
  --green-700: #375539;
  --green-800: #2c4530;
  --green-900: #1f3222;
  --green-600: #4f7852;
  --green-500: #628a64;
  --green-100: #e7efe7;
  --green-050: #f3f7f2;

  /* Accent (warm ochre — 信頼感の中にダイナミズム) */
  --gold: #c2a15b;
  --gold-dark: #a8863f;
  --gold-100: #f6efdd;

  /* Neutrals */
  --ink: #1e2a22;
  --ink-soft: #45514a;
  --muted: #7a857e;
  --line: #e4e9e4;
  --bg: #ffffff;
  --bg-alt: #f6f8f5;
  --bg-deep: #14231a;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 820px;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(31, 50, 34, .06);
  --shadow: 0 10px 34px rgba(31, 50, 34, .10);
  --shadow-lg: 0 24px 60px rgba(31, 50, 34, .16);
  --header-h: 74px;
  --topbar-h: 38px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
/* Lenisが無効な環境（reduce-motion等）ではネイティブのスムーズスクロール */
html:not(.lenis) { scroll-behavior: smooth; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* hiddenだとposition:stickyが壊れるためclipを使用 */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-alt { background: var(--bg-alt); }
.section-deep { background: var(--bg-deep); color: #dbe4dd; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Typography ---------- */
.display {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: .01em;
}
.h-lead { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; line-height: 1.4; }
.h-mid { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 700; line-height: 1.5; }
.lead { font-size: 1.075rem; color: var(--ink-soft); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* Eyebrow / section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head .title { margin-top: 14px; }
.section-head .desc { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(65, 100, 68, .28); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(65, 100, 68, .34); }
.btn-gold { background: var(--gold); color: #2a2412; box-shadow: 0 8px 22px rgba(194, 161, 91, .3); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--green); color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }
.btn-light { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .4); color: #fff; backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-weight: 700;
  color: var(--green);
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.arrow-link:hover { color: var(--green-700); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
/* ===== Navbars: 透明ヒーローナビ ＋ 白スライドナビ ===== */
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

/* A: ヒーロー上の透明ナビ（fixedではない＝スクロールで流れる） */
.nav-hero { position: absolute; top: 0; left: 0; right: 0; z-index: 90; }
.nav-hero .brand .name { color: #fff; }
.nav-hero .brand .sub { color: rgba(255, 255, 255, .72); }
.nav-hero .nav-link { color: rgba(255, 255, 255, .92); }
.nav-hero .nav-link:hover, .nav-hero .nav-item:hover .nav-link { color: #fff; }
.nav-hero .nav-link.active { color: #fff; border-bottom-color: var(--gold); }
.nav-hero .nav-tagline { color: #fff; }
.nav-hero .hamburger { color: #fff; }

/* B: 画面を100vh超えたらスライドインする白ナビ（fixed・白背景・濃色文字） */
.nav-solid {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); box-shadow: 0 6px 24px rgba(31, 50, 34, .08);
  transform: translateY(-100%); transition: transform .45s var(--ease);
  will-change: transform;
}
.nav-solid.show { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .nav-solid { transition: none; } }

/* ===== ロゴ画像（フッター/ローダー用） ===== */
.brand-logo { display: block; height: 50px; width: auto; }

/* ===== テキストロゴ（ワードマーク）ナビ用 ===== */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wm-top { font-size: 1.5rem; font-weight: 500; letter-spacing: .05em; }
.wm-ipm { font-weight: 800; color: #b8912f; }
.wm-bottom { font-size: .8rem; font-weight: 900; letter-spacing: .17em; margin-top: 4px; }
/* 既定（白ナビ）: 濃色文字。AMAN/OVERSEAS は黒、IPM は金 */
.brand .wm-top, .brand .wm-bottom { color: #1a1a1a; }
/* ヒーロー透明ナビ: すべて白抜き */
.nav-hero .wm-top, .nav-hero .wm-bottom, .nav-hero .wm-ipm { color: #fff; }
@media (max-width: 640px) {
  .wm-top { font-size: 1.24rem; }
  .wm-bottom { font-size: .66rem; letter-spacing: .155em; }
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(150deg, var(--green-600), var(--green-900));
  display: grid; place-items: center; color: #fff; font-weight: 900;
  font-size: .8rem; letter-spacing: .02em; box-shadow: var(--shadow-sm);
}
.brand .name { font-weight: 900; font-size: 1.06rem; line-height: 1.2; color: var(--green-900); letter-spacing: .01em; }
.brand .sub { font-size: .66rem; color: var(--muted); letter-spacing: .06em; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3em;
  padding: 26px 15px; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--green); }
.nav-link.active { color: var(--green); border-bottom-color: var(--green); font-weight: 700; }
.nav-link .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 260px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease); pointer-events: none;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; color: var(--ink-soft);
}
.dropdown a:hover { background: var(--green-050); color: var(--green); }
.dropdown a.active { background: var(--green-050); color: var(--green); font-weight: 700; }

.nav-tagline {
  display: inline-flex; align-items: center; gap: .4em; white-space: nowrap;
  font-size: .8rem; font-weight: 700; color: var(--green); margin-left: 10px;
}
.nav-tagline svg { width: 16px; height: 16px; color: var(--gold); }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; background: none; border: none; padding: 8px; color: var(--green-900); }
.hamburger svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav { display: none; }
@media (max-width: 1040px) {
  .nav, .nav-cta { display: none; }
  .hamburger { display: block; }
  .mobile-nav {
    display: block; position: fixed; inset: 0; top: 0; z-index: 200;
    background: #fff; transform: translateX(102%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .mobile-nav.open { transform: translateX(0); }
}
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid var(--line); min-height: var(--header-h);
}
.mobile-nav-body { padding: 16px 24px 60px; }
.m-item { border-bottom: 1px solid var(--line); }
.m-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-weight: 700; font-size: 1rem; width: 100%; background: none; border: none; text-align: left; color: var(--ink); }
.m-link .chev { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.m-item.open .m-link .chev { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.m-item.open .m-sub { max-height: 360px; }
.m-sub a { display: block; padding: 11px 4px 11px 18px; color: var(--ink-soft); font-size: .92rem; }
.m-sub a:last-child { padding-bottom: 16px; }
.mobile-cta { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, #244b2b 0%, #2c4530 42%, #14231a 100%);
  /* navbarはfixedオーバーレイのため、ヒーローは全画面 */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute; inset: -8% 0 0; z-index: 0; background-size: cover; background-position: center 30%;
  will-change: transform;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,35,26,.94) 0%, rgba(28,45,38,.82) 42%, rgba(20,35,26,.55) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(194, 161, 91, .16), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(98, 138, 100, .22), transparent 45%);
}
.hero .wrap { position: relative; z-index: 2; }

/* ===== Hero 登場アニメ（ローダーが消えるのに合わせて順に出現） ===== */
.hero-badge { animation: heroUp .7s var(--ease) both; animation-delay: .9s; }
.hero h1 { animation: heroUpBlur 1s var(--ease) both; animation-delay: 1.05s; }
.hero-sub { animation: heroUp .8s var(--ease) both; animation-delay: 1.3s; }
.hero-actions { animation: heroUp .8s var(--ease) both; animation-delay: 1.5s; }
.hero-card { animation: heroRight .9s var(--ease) both; animation-delay: 1.35s; }
.scroll-cue { animation: heroFade 1s var(--ease) both; animation-delay: 1.9s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes heroUpBlur { from { opacity: 0; transform: translateY(38px); filter: blur(10px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes heroRight { from { opacity: 0; transform: translateX(50px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-card, .scroll-cue { animation: none; }
}

/* Scroll indicator（ヒーロー下部・細い縦アロー） */
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .72); pointer-events: none;
}
.scroll-cue .sc-text { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; }
.scroll-cue .sc-arrow { animation: scrollBob 1.9s ease-in-out infinite; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue .sc-arrow { animation: none; } }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding-block: clamp(64px, 10vw, 120px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55em;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
  padding: 8px 16px; border-radius: 999px; font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; color: #eef4ee; margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); font-weight: 900; line-height: 1.3; letter-spacing: .01em; }
.hero h1 .accent { color: var(--gold); }
.hero-sub { margin-top: 24px; font-size: 1.08rem; color: #d6e2d8; max-width: 32em; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
/* スマホでは2ボタンを同じ大きさ（全幅・均等）に揃える */
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
.hero-stats { margin-top: 46px; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat .num { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stats .stat .num span { color: var(--gold); font-size: 1.1rem; margin-left: 2px; }
.hero-stats .stat .lbl { font-size: .78rem; color: #b9c8bc; margin-top: 6px; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.hero-card .row:last-child { border-bottom: none; }
.hero-card .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(194, 161, 91, .2); display: grid; place-items: center; color: var(--gold); flex-shrink: 0; }
.hero-card .ic svg { width: 22px; height: 22px; }
.hero-card .row > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.hero-card .t { display: block; font-weight: 700; color: #fff; font-size: .96rem; }
.hero-card .d { display: block; font-size: .8rem; color: #b9c8bc; line-height: 1.6; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}

/* ---------- Page hero (下層) ---------- */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(150deg, #2c4530 0%, #1f3222 100%);
  /* 透明navの高さ分を確保 */
  padding-top: calc(74px + clamp(44px, 6vw, 72px));
  padding-bottom: clamp(48px, 8vw, 80px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(194, 161, 91, .16), transparent 45%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); font-weight: 900; line-height: 1.3; }
.page-hero .en { display: block; font-size: .8rem; letter-spacing: .28em; color: var(--gold); font-weight: 700; margin-bottom: 14px; text-transform: uppercase; }
.page-hero .desc { margin-top: 18px; color: #cfdbd1; max-width: 46em; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5em; font-size: .78rem; color: #a9bbad; margin-top: 26px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: 14px; background: var(--green-050);
  display: grid; place-items: center; color: var(--green); margin-bottom: 20px;
}
.card .ic svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .num-tag { font-size: .8rem; font-weight: 800; color: var(--gold-dark); letter-spacing: .1em; }

/* Feature card with top accent */
.feature {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature:hover::before { transform: scaleX(1); }

/* Feature card with image */
.feature.has-media { padding: 0; }
.feature .f-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.feature .f-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.feature.has-media:hover .f-media img { transform: scale(1.06); }
.feature .f-media .num-badge {
  position: absolute; left: 16px; top: 14px; z-index: 2; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; color: #fff; background: rgba(20,35,26,.6); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2); padding: 5px 12px; border-radius: 999px;
}
.feature .f-body { padding: 26px 28px 30px; }

/* Stat block */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 720px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat-box { text-align: center; padding: 26px 16px; }
/* 単位テキスト（ヶ月〜/%/h 等）は小さく */
.stat-box .n { font-size: 1.15rem; font-weight: 800; color: var(--green); line-height: 1.1; }
/* 数字本体を大きく */
.stat-box .n span { color: var(--gold); font-size: clamp(2.4rem, 4.6vw, 3.2rem); font-weight: 900; }
.stat-box .l { margin-top: 10px; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }

/* Numbered flow / steps */
.steps { counter-reset: step; display: grid; gap: 18px; position: relative; }
.step {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px;
}
.step .no {
  counter-increment: step; width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff; font-weight: 900; display: grid; place-items: center;
  font-size: 1.05rem; flex-shrink: 0; position: relative; z-index: 1;
}
.step .no::before { content: counter(step, decimal-leading-zero); }
.step h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .93rem; }

/* Flow: 各カードがスクロールでポンッと弾んで出現 */
.pop {
  opacity: 0; transform: translateY(30px) scale(.82);
  transition: opacity .45s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
  will-change: transform;
}
.pop.in { opacity: 1; transform: none; }
.step.pop:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
  .pop { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Definition / info list */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.info-table th { width: 30%; color: var(--green-900); font-weight: 700; background: var(--green-050); white-space: nowrap; }
@media (max-width: 620px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; }
  .info-table td { padding-top: 6px; }
}

/* Check list */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list li::before {
  content: ""; flex-shrink: 0; margin-top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23416444' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Split media block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.rev .split-media { order: 2; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.media-ph {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--green-050), var(--green-100));
  display: grid; place-items: center; color: var(--green-500); border: 1px dashed var(--green-500);
}
.media-ph span { font-size: .8rem; letter-spacing: .1em; }

/* News list */
.news-list { display: grid; gap: 2px; }
.news-row { display: grid; grid-template-columns: 130px 120px 1fr auto; gap: 18px; align-items: center; padding: 20px 12px; border-bottom: 1px solid var(--line); transition: background .2s var(--ease); }
.news-row:hover { background: var(--green-050); }
.news-row .date { font-size: .85rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.news-row .cat { justify-self: start; font-size: .72rem; font-weight: 700; color: var(--green); background: var(--green-050); padding: 4px 12px; border-radius: 999px; }
.news-row .ttl { font-weight: 500; color: var(--ink); }
.news-row .go { color: var(--muted); }
.news-row:hover .go { color: var(--green); }
@media (max-width: 720px) {
  .news-row { grid-template-columns: 1fr; gap: 6px; }
  .news-row .go { display: none; }
  .news-row .meta { display: flex; gap: 12px; align-items: center; }
}

/* Tag / pill */
.pill { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; background: var(--green-050); color: var(--green); }
.pill.gold { background: var(--gold-100); color: var(--gold-dark); }

/* ---------- Compare (課題 vs 当社) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } }
.compare-col { border-radius: var(--radius); padding: 30px 28px; }
.compare-col .cc-head { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid; }
.compare-col .cc-tag { font-size: .72rem; font-weight: 800; letter-spacing: .08em; padding: 4px 12px; border-radius: 999px; }
.compare-col ul { display: grid; gap: 16px; }
.compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; line-height: 1.7; }
.compare-col li .ci { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: grid; place-items: center; }
.compare-col li .ci svg { width: 13px; height: 13px; }

.compare-col.problem { background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
.compare-col.problem .cc-head { color: #9a6b52; border-color: var(--line); }
.compare-col.problem .cc-tag { background: #f4ece6; color: #a15b3f; }
.compare-col.problem .ci { background: #f4e4dd; color: #c26a43; }

.compare-col.ours { position: relative; background: linear-gradient(160deg, var(--green-600), var(--green-800) 70%, var(--green-900)); color: #eaf1ea; box-shadow: var(--shadow-lg); overflow: hidden; }
.compare-col.ours::before { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border: 30px solid rgba(255,255,255,.05); border-radius: 50%; }
.compare-col.ours .cc-head { color: #fff; border-color: rgba(255,255,255,.18); }
.compare-col.ours .cc-tag { background: var(--gold); color: #2a2412; }
.compare-col.ours .ci { background: rgba(194,161,91,.25); color: var(--gold); }
.compare-col.ours strong { color: #fff; }

/* Solution feature list (icon cards) */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .sol-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sol-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--green-600), var(--green-800) 60%, var(--green-900)); }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border: 40px solid rgba(255, 255, 255, .05); border-radius: 50%; }
.cta-band .wrap { position: relative; z-index: 2; text-align: center; padding-block: clamp(56px, 8vw, 90px); }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 900; }
.cta-band p { margin-top: 16px; color: #d6e2d8; max-width: 34em; margin-inline: auto; }
.cta-band .actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Split CTA (対象別 50:50) ---------- */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .cta-split { grid-template-columns: 1fr; } }
.cta-half {
  position: relative; overflow: hidden; color: #fff;
  min-height: 400px; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 68px);
}
.cta-half .cta-bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  transition: transform .8s var(--ease);
}
.cta-half:hover .cta-bg { transform: scale(1.07); }
.cta-half .cta-ov { position: absolute; inset: 0; z-index: 1; }
.cta-half.a .cta-ov { background: linear-gradient(155deg, rgba(28,45,38,.78) 0%, rgba(20,35,26,.92) 100%); }
.cta-half.b .cta-ov { background: linear-gradient(155deg, rgba(65,100,68,.78) 0%, rgba(20,35,26,.93) 100%); }
.cta-half > .cta-inner { position: relative; z-index: 2; max-width: 30em; }
.cta-half .cta-tag {
  display: inline-flex; align-items: center; gap: .5em; align-self: flex-start;
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; margin-bottom: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  padding: 7px 15px; border-radius: 999px;
}
.cta-half.a .cta-tag { color: #eaf1ea; }
.cta-half.b .cta-tag { color: var(--gold); }
.cta-half .cta-ic { width: 20px; height: 20px; }
.cta-half h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 900; line-height: 1.4; }
.cta-half p { margin-top: 16px; color: #d6e2d8; font-size: 1rem; }
.cta-half .btn { margin-top: 30px; align-self: flex-start; }
/* 中央の仕切り */
.cta-split .cta-half.a { box-shadow: inset -1px 0 0 rgba(255,255,255,.12); }
@media (max-width: 760px) { .cta-split .cta-half.a { box-shadow: inset 0 -1px 0 rgba(255,255,255,.12); } }

/* ---------- Floating contact widget (右下) ---------- */
.contact-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 160;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.contact-fab .fab-panel {
  width: 320px; max-width: calc(100vw - 44px);
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(14px) scale(.95); transform-origin: bottom right;
  opacity: 0; visibility: hidden; transition: transform .28s var(--ease), opacity .28s var(--ease), visibility .28s;
}
.contact-fab.open .fab-panel { transform: none; opacity: 1; visibility: visible; }
.fab-panel .fab-head { position: relative; background: linear-gradient(150deg, var(--green-600), var(--green-800)); color: #fff; padding: 20px 22px; }
.fab-panel .fab-head h4 { font-size: 1.02rem; font-weight: 800; }
.fab-panel .fab-head p { font-size: .78rem; color: #d6e2d8; margin-top: 5px; line-height: 1.6; }
.fab-panel .fab-body { padding: 16px; display: grid; gap: 10px; }
.fab-row { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; transition: background .2s var(--ease), border-color .2s var(--ease); }
.fab-row:hover { background: var(--green-050); border-color: transparent; }
.fab-row .fab-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--green-050); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.fab-row .fab-ic svg { width: 21px; height: 21px; }
.fab-row .t { font-weight: 700; font-size: .92rem; color: var(--ink); }
.fab-row .d { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.fab-btn {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-end;
  background: var(--green); color: #fff; border: none; border-radius: 999px;
  padding: 15px 24px; font-weight: 800; font-size: .95rem; cursor: pointer;
  box-shadow: 0 12px 30px rgba(65, 100, 68, .42); transition: background .2s var(--ease), transform .2s var(--ease);
}
.fab-btn:hover { background: var(--green-700); transform: translateY(-2px); }
.fab-btn svg { width: 20px; height: 20px; }
.fab-btn .ic-close { display: none; }
.contact-fab.open .fab-btn .ic-open { display: none; }
.contact-fab.open .fab-btn .ic-close { display: inline-flex; }
.contact-fab.open .fab-btn .fab-label { display: none; }
@media (max-width: 560px) {
  .contact-fab { right: 16px; bottom: 16px; }
  .fab-btn .fab-label { display: none; }
  .fab-btn { padding: 15px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #9db0a2; font-size: .9rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-block: clamp(48px, 6vw, 72px); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { background: #fff; padding: 10px 16px; border-radius: 12px; display: inline-flex; }
.footer-logo .brand-logo { height: 56px; }
.footer-brand p { margin-top: 18px; color: #8ba290; font-size: .86rem; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; color: #9db0a2; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: .78rem; color: #6f8476; }
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 22px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.field label .req { color: #b4451f; font-size: .72rem; margin-left: 8px; font-weight: 700; }
.field label .opt { color: var(--muted); font-size: .72rem; margin-left: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(65, 100, 68, .12);
}
.field textarea { resize: vertical; min-height: 150px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt); padding: 18px; border-radius: var(--radius-sm); font-size: .9rem; color: var(--ink-soft); }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Prose (legal / article) ---------- */
.prose { color: var(--ink-soft); }
.prose h2 { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 40px 0 14px; padding-left: 14px; border-left: 4px solid var(--green); }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 16px; display: grid; gap: 8px; }
.prose ul li { position: relative; padding-left: 20px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.prose a { color: var(--green); text-decoration: underline; }
.prose > *:first-child { margin-top: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-46px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(46px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in { opacity: 1; transform: none; }
.reveal-blur { opacity: 0; filter: blur(14px); transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal-blur.in { opacity: 1; filter: none; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-scale, .reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  html { scroll-behavior: auto; }
  [data-parallax], .kenburns { transform: none !important; animation: none !important; }
}

/* ---------- Wipe reveal (左→右に切り替わる) ---------- */
.wipe {
  position: relative; display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.05s cubic-bezier(.66, 0, .2, 1);
}
.wipe.in { clip-path: inset(0 -0.12em 0 0); }
.wipe::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(194, 161, 91, .55) 50%, transparent 100%);
  transform: translateX(-110%); opacity: 0;
}
.wipe.in::after { animation: wipe-sweep 1.15s cubic-bezier(.66, 0, .2, 1) forwards; }
@keyframes wipe-sweep {
  0% { transform: translateX(-110%); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateX(110%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wipe { clip-path: none !important; transition: none; }
  .wipe::after { display: none; }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 300;
  width: 100%; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--green), var(--gold));
}

/* ---------- Parallax ---------- */
[data-parallax] { will-change: transform; }
.parallax-band { position: relative; overflow: hidden; color: #fff; }
.parallax-band .pbg {
  position: absolute; inset: -12% 0; z-index: 0; background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-band .pov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,35,26,.72), rgba(20,35,26,.82)); }
.parallax-band .wrap { position: relative; z-index: 2; }

/* Ken Burns slow zoom */
.kenburns { animation: kenburns 18s ease-out both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

/* ---------- Images ---------- */
.img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame.tall { aspect-ratio: 3 / 4; }
.img-frame.wide { aspect-ratio: 16 / 10; }
.img-frame .badge-float {
  position: absolute; left: 20px; bottom: 20px; z-index: 2; background: rgba(20,35,26,.72);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); color: #fff;
  padding: 12px 18px; border-radius: 12px; font-size: .82rem; font-weight: 700;
}
.img-frame .badge-float .n { color: var(--gold); font-size: 1.35rem; font-weight: 900; margin-right: 6px; }

/* ---------- Loader ---------- */
html.loading, html.loading body { overflow: hidden !important; height: 100%; }
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-logo { background: #fff; padding: 24px; border-radius: 26px; box-shadow: 0 20px 60px rgba(0, 0, 0, .2); animation: loaderPulse 1.3s ease-in-out infinite; }
.ll-logo { display: block; width: clamp(120px, 34vw, 168px); height: auto; }
@keyframes loaderPulse {
  0%, 100% { opacity: .38; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) { .loader-logo { animation: none; opacity: 1; } }

/* ---------- Pinned Next-gen (スクロールで1つずつ説明) ---------- */
.nextgen-pin { position: relative; height: 480vh; background: var(--bg-deep); }
/* 詳細度を上げて .nextgen(position:relative) に勝たせる。
   z-indexをnavbar(100)より上にして、ピン中はnavbarの上に浮かび上がる */
.nextgen-pin > .nextgen-sticky {
  position: sticky; top: 0; z-index: 120; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  padding-block: clamp(56px, 8vw, 110px); /* 他セクションと同等の上下余白 */
}
/* Next-gen 左の写真（高すぎたので低く調整） */
.ng-photo { height: clamp(300px, 46vh, 460px); }

/* --- Next-gen モバイル最適化（100vh内に必ず収める） --- */
@media (max-width: 860px) {
  .nextgen-pin { height: 440vh; }
  .nextgen-pin > .nextgen-sticky { padding-block: clamp(76px, 12vh, 104px); align-items: center; }
  .nextgen-grid { gap: 0; }
  .nextgen-grid > div:first-child { display: none; } /* 写真は非表示にして段階説明に集中 */
  .ng-content { max-width: 100%; }
  .nextgen h2 { font-size: clamp(1.55rem, 6.6vw, 2.1rem); line-height: 1.45; }
  .ng-steps { min-height: 320px; margin-top: 22px; }
  .ng-step .big-num { font-size: clamp(2.6rem, 13vw, 3.8rem); }
  .ng-step h3 { font-size: 1.2rem; }
  .ng-step p { font-size: .95rem; }
}
@media (max-width: 420px) {
  .ng-steps { min-height: 360px; }
}

.ng-steps { position: relative; margin-top: 26px; min-height: 290px; }
@media (max-width: 860px) { .ng-steps { min-height: 340px; } }
.ng-step {
  position: absolute; inset: 0; opacity: 0; transform: translateY(26px);
  transition: opacity .55s var(--ease), transform .55s var(--ease); pointer-events: none;
}
.ng-step.active { opacity: 1; transform: none; pointer-events: auto; }
.ng-step .big-num { font-size: clamp(2.8rem, 6.5vw, 4.6rem); font-weight: 900; color: var(--gold); line-height: 1; }
.ng-step .big-num small { font-size: .32em; color: #fff; font-weight: 700; margin-left: .35em; }
.ng-step h3 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-top: 14px; }
.ng-step p { color: #b6c7ba; margin-top: 12px; font-size: 1rem; line-height: 1.9; }

.ng-progress { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.ng-dots { display: flex; gap: 8px; }
.ng-dot { width: 30px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, .2); transition: background .35s var(--ease); }
.ng-dot.active { background: var(--gold); }
.ng-counter { font-size: .8rem; color: #93a898; font-weight: 700; letter-spacing: .12em; }
.ng-counter b { color: #fff; }
.ng-hint { margin-top: 20px; font-size: .76rem; color: #8ba290; display: inline-flex; align-items: center; gap: 8px; transition: opacity .4s; }
.ng-hint svg { width: 16px; height: 16px; animation: ngHintBounce 1.5s ease-in-out infinite; }
.nextgen-pin.ng-end .ng-hint { opacity: 0; }
@keyframes ngHintBounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(4px);} }

/* ---------- Next-gen section ---------- */
.nextgen { position: relative; overflow: hidden; background: var(--bg-deep); color: #e6ede8; }
.nextgen .wrap { position: relative; z-index: 2; }
.nextgen-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 860px) { .nextgen-grid { grid-template-columns: 1fr; } }
.nextgen h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 900; line-height: 1.3; color: #fff; }
.nextgen h2 .accent { color: var(--gold); }
.nextgen .big-num { font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 900; color: var(--gold); line-height: 1; }
.nextgen p { color: #b6c7ba; }
.nextgen .mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
@media (max-width: 560px) { .nextgen .mini-grid { grid-template-columns: 1fr; } }
.nextgen .mini { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px; background: rgba(255,255,255,.03); }
.nextgen .mini .k { font-size: 1.6rem; font-weight: 900; color: #fff; }
.nextgen .mini .k span { color: var(--gold); font-size: .7em; }
.nextgen .mini .l { font-size: .8rem; color: #93a898; margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding-block: 22px; background: var(--green); color: #fff; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee 26s linear infinite; }
.marquee-track span { font-size: 1.05rem; font-weight: 800; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "◆"; color: var(--gold); font-size: .7em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.gap-sm { gap: 14px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none; }
.no-scroll { overflow: hidden; }
