/*
Theme Name: GameChange2026
Theme URI: https://gamechange.co.jp/
Author: GameChange
Description: 採用コンサルティングサービスサイト用カスタムテーマ（マネーフォワードME構成ベース）
Version: 1.0
Text Domain: theme-gamechange2026
*/

/* ============================================================
   GameChange 採用コンサル - 共通スタイル
   ベース: マネーフォワードME / カラー: #026538
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --green:        #026538;
  --green-dark:   #014d29;
  --green-mid:    #027a43;
  --green-light:  #e6f4ec;
  --green-xlight: #f0faf4;
  --cream:        #FFF8F0;
  --cream-mid:    #FFF3E6;
  --cream-dark:   #FFEBD0;
  --gold:         #C9962A;
  --gold-light:   #F7EDD3;
  --gray-bg:      #F7F8FA;
  --gray-light:   #E5E7EB;
  --gray:         #6B7280;
  --gray-dark:    #374151;
  --white:        #FFFFFF;
  --text:         #111827;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-md:    0 6px 30px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --t:            .22s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 700; line-height: 1.4; }
h4 { font-size: 1.1rem; font-weight: 700; line-height: 1.5; }
p  { line-height: 1.85; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container--sm { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.container--lg { max-width: 1360px; margin: 0 auto; padding: 0 32px; }

.section    { padding: 80px 0; }
.section--sm { padding: 52px 0; }
.section--lg { padding: 112px 0; }

.section__header { text-align: center; margin-bottom: 72px; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section__title { margin-bottom: 18px; color: var(--text); }
.section__lead  { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.9; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(2,101,56,.25);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 6px 24px rgba(2,101,56,.35);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--sm { padding: 10px 22px; font-size: 0.82rem; }

/* ================================================================
   IMAGE PLACEHOLDER
   ================================================================ */
.img-placeholder {
  background: linear-gradient(135deg, #E8EEF2 0%, #D8E4EB 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.82rem;
  font-weight: 500;
  gap: 10px;
  min-height: 260px;
  border: 2px dashed #C8D6DE;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,.02) 10px,
    rgba(0,0,0,.02) 20px
  );
}
.img-placeholder .ph-icon { font-size: 2.4rem; opacity: .35; position: relative; }
.img-placeholder span { position: relative; }
.img-placeholder--lg { min-height: 340px; }
.img-placeholder--hero { min-height: 480px; border-radius: var(--radius-lg); }

/* ================================================================
   GLOBAL NAVIGATION  ← マネフォMEと同構造
   ================================================================ */
.gnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.gnav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

/* Logo */
.gnav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  color: var(--green);
  font-weight: 900;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-right: 28px;
  text-decoration: none;
}
.gnav__logo span {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: .04em;
  margin-top: 1px;
}

/* Nav Menu */
.gnav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.gnav__item { position: relative; }
.gnav__link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 8px 13px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.gnav__link:hover,
.gnav__link.active {
  color: var(--green);
  background: var(--green-light);
}
.gnav__link .caret {
  width: 13px;
  height: 13px;
  color: var(--gray);
  transition: transform var(--t);
  flex-shrink: 0;
  margin-left: 1px;
}
.gnav__item.active .caret,
.gnav__item:focus-within .caret { transform: rotate(180deg); color: var(--green); }

/* Dropdown — click ベース（hover なし） */
.gnav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}
.gnav__item.active .gnav__dropdown,
.gnav__item:focus-within .gnav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.gnav__dd-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.gnav__dd-link:hover { background: var(--green-light); color: var(--green); padding-left: 18px; }
.gnav__dd-group {
  padding: 4px 0;
  border-top: 1px solid var(--gray-light);
  margin-top: 4px;
}
.gnav__dd-group:first-child { border-top: none; margin-top: 0; }
.gnav__dd-label {
  padding: 4px 14px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Nav CTA */
.gnav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.gnav__cta-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity var(--t);
}
.gnav__cta-sub:hover { opacity: .7; }

/* Hamburger */
.gnav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.gnav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.gnav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gnav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gnav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.gnav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--gray-light);
  gap: 2px;
  max-height: 80vh;
  overflow-y: auto;
}
.gnav__mobile.open { display: flex; }
.gnav__mobile .gnav__link { padding: 12px 16px; font-size: 0.95rem; }
.gnav__mobile .gnav__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  margin: 4px 0 4px 16px;
  padding: 6px;
  display: none;
  pointer-events: auto;
  z-index: auto;
}
.gnav__mobile .gnav__dropdown.open {
  display: block;
  pointer-events: auto;
}
.gnav__mobile .gnav__dropdown .gnav__dd-link {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* ================================================================
   HERO  ← マネフォMEと同構造・クリーム背景2カラム
   ================================================================ */
.hero {
  background: linear-gradient(150deg, #FFFBF5 0%, #FFF5E8 35%, #EEF8F2 70%, #E6F4EC 100%);
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,101,56,.09) 0%, transparent 70%);
  top: -180px;
  right: -120px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,42,.08) 0%, transparent 70%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

.ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ball--1 {
  width: 72px; height: 72px;
  background: rgba(2,101,56,.10);
  top: 18%; left: 5%;
  animation: ballFloat1 7s ease-in-out infinite;
}
.ball--2 {
  width: 44px; height: 44px;
  background: rgba(201,150,42,.13);
  top: 62%; right: 8%;
  animation: ballFloat2 9s ease-in-out infinite;
}
.ball--3 {
  width: 110px; height: 110px;
  background: rgba(2,101,56,.06);
  bottom: 12%; left: 42%;
  animation: ballFloat3 11s ease-in-out infinite;
}
.ball--4 {
  width: 36px; height: 36px;
  background: rgba(201,150,42,.10);
  top: 28%; right: 28%;
  animation: ballFloat1 8s ease-in-out infinite reverse;
}
@keyframes ballFloat1 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-22px) rotate(8deg)} }
@keyframes ballFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes ballFloat3 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.04)} }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--green);
  background: var(--green-light);
  border: 1.5px solid rgba(2,101,56,.18);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.hero__heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero__heading em {
  color: var(--green);
  font-style: normal;
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: #4B5563;
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  background: #fff;
  border: 1.5px solid rgba(2,101,56,.2);
  border-radius: 100px;
  padding: 6px 16px;
  box-shadow: var(--shadow-sm);
}
.hero__badge::before {
  content: '✓';
  font-size: 0.7rem;
  background: var(--green);
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__image { position: relative; }
.hero__image .img-placeholder--hero {
  box-shadow: var(--shadow-lg);
}

/* ================================================================
   ACHIEVEMENT BADGES
   ================================================================ */
.achievement {
  background: #fff;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 44px 0;
}
.achievement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.achievement__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 36px;
  border-right: 1px solid var(--gray-light);
}
.achievement__badge:last-child { border-right: none; }

.achievement__laurel-inner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FEF3D7 100%);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  text-align: center;
  color: #8B6914;
  line-height: 1.35;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,150,42,.2);
}
.achievement__text strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
}
.achievement__text span {
  font-size: 0.76rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
}

/* ================================================================
   SERVICE OVERVIEW  (dot-background section)
   ================================================================ */
.overview {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.overview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(2,101,56,.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.overview__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.overview__tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}

/* ================================================================
   3-STEP (alternate 2-col)  ← マネフォME同構造
   ================================================================ */
.steps__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-light);
}
.steps__item:last-child { border-bottom: none; }
.steps__item:nth-child(even) .steps__content { order: 2; }
.steps__item:nth-child(even) .steps__media   { order: 1; }

.steps__number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}
.steps__label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: .06em;
}
.steps__title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.steps__body { color: var(--gray); margin-bottom: 24px; line-height: 1.85; }
.steps__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1.5px solid rgba(2,101,56,.3);
  padding-bottom: 2px;
  transition: all var(--t);
}
.steps__link:hover { gap: 10px; border-color: var(--green); }

/* ================================================================
   GUIDE CARDS  (3-col)
   ================================================================ */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.guide-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.guide-card__illust {
  height: 220px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-xlight) 100%);
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform var(--t);
}
.guide-card:hover .guide-card__illust { transform: scale(1.04); }
.guide-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.guide-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.55;
}
.guide-card__body {
  font-size: 1rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.8;
}
.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: auto;
}
.guide-card__link::after { content: '→'; transition: transform var(--t); }
.guide-card:hover .guide-card__link::after { transform: translateX(5px); }

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px 40px;
  position: relative;
  transition: all var(--t);
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(2,101,56,.08), var(--shadow-md);
  transform: scale(1.025);
  z-index: 1;
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 3px rgba(2,101,56,.12), var(--shadow-lg);
  transform: scale(1.03) translateY(-3px);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(2,101,56,.3);
}
.pricing-card__plan {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-card__title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.pricing-card__tagline {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.6;
}
.pricing-card__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-card__price span { font-size: 0.9rem; font-weight: 500; }
.pricing-card__note {
  font-size: 0.76rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 1rem;
  line-height: 1.6;
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
}

/* ================================================================
   FLOW STEPS (horizontal)
   ================================================================ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  z-index: 0;
}
.flow-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.flow-step__num {
  width: 80px;
  height: 80px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(2,101,56,.3);
}
.flow-step__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.flow-step__body { font-size: 1rem; color: var(--gray); line-height: 1.8; }
.flow-step__media {
  height: 120px;
  background: var(--green-light);
  border-radius: var(--radius);
  margin: 18px auto 0;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(2,101,56,.06);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  user-select: none;
  gap: 16px;
  transition: background var(--t);
}
.faq-question:hover { background: var(--green-xlight); }
.faq-q-mark {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.faq-q-text { font-weight: 700; flex: 1; line-height: 1.55; font-size: 1rem; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform var(--t), color var(--t);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 24px 22px;
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.85;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
  margin-top: -1px;
}
.faq-a-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.76rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================================
   TRUST SECTION
   ================================================================ */
.trust { background: var(--gray-bg); padding: 88px 0; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust__item {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--t);
}
.trust__item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trust__icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--green-light), var(--green-xlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 22px;
}
.trust__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.trust__body { font-size: 1rem; color: var(--gray); line-height: 1.85; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF3E0 50%, #EEF8F2 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,101,56,.07) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.final-cta::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,42,.08) 0%, transparent 70%);
  bottom: -120px; right: -80px;
}
.final-cta__inner { position: relative; z-index: 1; }
.final-cta__title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.final-cta__sub { color: var(--gray); margin-bottom: 44px; font-size: 1.02rem; }
.final-cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}
.final-cta__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8B6914;
  box-shadow: var(--shadow-sm);
}

/* ================================================================
   PLAN BANNER
   ================================================================ */
.plan-banner {
  background: linear-gradient(135deg, var(--green-xlight) 0%, var(--green-light) 100%);
  border: 1.5px solid rgba(2,101,56,.18);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(2,101,56,.08);
}
.plan-banner__text { flex: 1; min-width: 240px; }
.plan-banner__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan-banner__title { font-size: 1.35rem; font-weight: 900; margin-bottom: 10px; }
.plan-banner__body { font-size: 1rem; color: var(--gray-dark); }
.plan-banner__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--green);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}
.footer__logo {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer__tagline {
  font-size: 1rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 24px;
  line-height: 1.75;
}
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.85rem;
  color: #fff;
  transition: color var(--t), padding-left var(--t);
}
.footer__link:hover { color: var(--gold); padding-left: 4px; }
.footer__link:focus { outline-color: var(--green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 0.78rem;
  color: #fff;
  transition: color var(--t);
}
.footer__legal a:hover { color: var(--gold); }
.footer__legal a:focus { outline-color: var(--green); }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  padding: 14px 0;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--gray);
}
.breadcrumb__item:not(:last-child)::after {
  content: '›';
  color: var(--gray-light);
  font-size: 0.9rem;
}
.breadcrumb__item a { color: var(--green); transition: opacity var(--t); }
.breadcrumb__item a:hover { opacity: .7; }

/* ================================================================
   PAGE HERO (sub-pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--green-xlight) 100%);
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,101,56,.08) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.page-hero__title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  font-size: 0.95rem;
  color: #4B5563;
  max-width: 580px;
  line-height: 1.8;
}

/* ================================================================
   2-COLUMN (sidebar + main)
   ================================================================ */
.two-col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}
.sidebar { position: sticky; top: 84px; }
.sidebar__nav {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar__nav-title {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 13px 20px;
  text-transform: uppercase;
}
.sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  transition: all var(--t);
}
.sidebar__nav-link:last-child { border-bottom: none; }
.sidebar__nav-link:hover { background: var(--green-light); color: var(--green); padding-left: 24px; }
.sidebar__nav-link.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  border-left: 3px solid var(--green);
}
.sidebar__nav-link .num {
  width: 24px; height: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================================================
   FEATURE SECTIONS (alternating 2-col)
   ================================================================ */
.feature {
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-light);
}
.feature:last-of-type { border-bottom: none; }
.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.feature--reverse .feature__content { order: 2; }
.feature--reverse .feature__media   { order: 1; }
.feature__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature__title {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.feature__body {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 22px;
}
.feature__list { display: flex; flex-direction: column; gap: 9px; }
.feature__list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}
.feature__list-item::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sub-features */
.sub-features {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-top: 52px;
}
.sub-features__title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sub-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sub-feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.sub-feature:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sub-feature__icon { font-size: 1.5rem; margin-bottom: 12px; }
.sub-feature__name { font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; }
.sub-feature__desc { font-size: 1rem; color: var(--gray); line-height: 1.7; }

/* ================================================================
   TAB NAVIGATION
   ================================================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 52px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  white-space: nowrap;
  transition: all var(--t);
  font-family: inherit;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--green); background: var(--green-xlight); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); background: var(--green-xlight); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ================================================================
   SERVICE CARDS (intermediate pages)
   ================================================================ */
.service-cards { display: flex; flex-direction: column; gap: 40px; }
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 48px;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.service-card:nth-child(even) .service-card__content { order: 2; }
.service-card:nth-child(even) .service-card__media   { order: 1; }
.service-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.service-card__title {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.service-card__body {
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.85;
  font-size: 0.94rem;
}

/* ================================================================
   SLIDER / CAROUSEL
   ================================================================ */
.slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slider__track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slider__slide { min-width: 100%; }
.slider__slide-inner {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin: 4px;
}
.slider__step-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.slider__step-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.slider__step-body {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slider__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
}
.slider__dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gray-light);
  transform: translate(-50%, -50%);
  transition: all var(--t);
}
.slider__dot.active::after { background: var(--green); transform: translate(-50%, -50%) scale(1.4); }
.slider__controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--t);
}
.slider__btn:hover { background: var(--green); color: #fff; transform: scale(1.06); }

/* ================================================================
   POINT LIST (4-point vertical)
   ================================================================ */
.point-list { display: flex; flex-direction: column; gap: 22px; }
.point-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--t);
}
.point-item:hover { border-color: var(--green); box-shadow: var(--shadow); }
.point-item__num {
  width: 56px; height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  line-height: 1.3;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2,101,56,.25);
  text-align: center;
}
.point-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.point-item__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.point-item__body { font-size: 1rem; color: var(--gray); line-height: 1.85; }

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.comparison-table { width: 100%; margin-top: 36px; border-radius: var(--radius); overflow: hidden; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th,
.comparison-table td {
  padding: 16px 22px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
  font-size: 1rem;
}
.comparison-table th { background: var(--gray-bg); font-weight: 700; font-size: 0.8rem; }
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table .col-featured { background: rgba(2,101,56,.04); }
.comparison-table .col-header { background: var(--green) !important; color: #fff; }
.check  { color: var(--green); font-weight: 900; font-size: 1.4rem; display: inline-block; line-height: 1; }
.dash   { color: var(--gray-light); font-size: 1.2rem; display: inline-block; line-height: 1; }
.partial { color: var(--gold); font-weight: 900; font-size: 1.3rem; display: inline-block; line-height: 1; }

/* ================================================================
   FAQ SIDEBAR (faq page)
   ================================================================ */
.faq-categories {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-cat-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t);
}
.faq-cat-btn:last-child { border-bottom: none; }
.faq-cat-btn:hover { background: var(--green-light); color: var(--green); padding-left: 24px; }
.faq-cat-btn.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 700;
  border-left: 3px solid var(--green);
  padding-left: 17px;
}

/* ================================================================
   SCROLL ANIMATION
   ================================================================ */
.animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate.visible { opacity: 1; transform: none; }
.animate:nth-child(2) { transition-delay: .08s; }
.animate:nth-child(3) { transition-delay: .16s; }
.animate:nth-child(4) { transition-delay: .24s; }

/* ================================================================
   UTILITY
   ================================================================ */
.text-green  { color: var(--green); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.fw-900      { font-weight: 900; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }  .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; } .mb-64 { margin-bottom: 64px; }
.hidden { display: none !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1080px) {
  .gnav__link { padding: 7px 10px; font-size: 0.82rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 768px) {
  /* Nav */
  .gnav__menu, .gnav__cta { display: none !important; }
  .gnav__hamburger { display: flex; }

  /* Layout */
  .hero { padding: 64px 0 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__image { order: -1; }
  .hero__heading { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Grids */
  .guide-cards         { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .flow-steps          { grid-template-columns: 1fr; gap: 36px; }
  .flow-steps::before  { display: none; }
  .trust__grid         { grid-template-columns: 1fr; }
  .steps__item         { grid-template-columns: 1fr; gap: 36px; }
  .steps__item:nth-child(even) .steps__content,
  .steps__item:nth-child(even) .steps__media { order: unset; }
  .feature__inner      { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__content,
  .feature--reverse .feature__media { order: unset; }
  .service-card        { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .service-card:nth-child(even) .service-card__content,
  .service-card:nth-child(even) .service-card__media { order: unset; }
  .sub-features__grid  { grid-template-columns: 1fr; }
  .two-col             { grid-template-columns: 1fr; }
  .sidebar             { position: static; }
  .achievement__badge  { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 16px 24px; width: 100%; justify-content: flex-start; }
  .achievement__badge:last-child { border-bottom: none; }
  .achievement__inner  { flex-direction: column; gap: 0; align-items: stretch; }
  .plan-banner         { flex-direction: column; padding: 32px 28px; }
  .footer__inner       { grid-template-columns: 1fr; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .hero__cta           { flex-direction: column; align-items: stretch; }
  .hero__cta .btn      { text-align: center; }
  .final-cta__btns     { flex-direction: column; align-items: center; }
  .section             { padding: 68px 0; }
  /* タップ領域確保: スマホでは.btn--smも44px以上の高さを確保 */
  .btn--sm              { padding: 13px 26px; font-size: 0.88rem; }
  /* 比較表: wrapper でスクロール管理 */
  .comparison-table     { overflow: visible; }
  .table-wrapper        { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrapper table  { min-width: 600px; }
  .comparison-table table { min-width: unset; }
  .comparison-table th,
  .comparison-table td  { min-width: 120px; }
  .table-swipe-hint     { display: flex; }
  /* point-item: スマホで縦積み */
  .point-item           { flex-direction: column; gap: 16px; padding: 24px 20px; overflow: visible; }
  .point-item__head     { overflow: visible; }
  /* 丸は52pxに・フォントを小さくしてテキストが border-radius:50% でクリップされないようにする */
  .point-item__num      { width: 52px; height: 52px; min-width: 52px; min-height: 52px; font-size: 0.62rem; line-height: 1.3; flex-shrink: 0; }
  .container, .container--sm, .container--lg { padding: 0 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .btn--lg { padding: 15px 28px; font-size: 0.92rem; }
  .final-cta__badges   { flex-direction: column; align-items: center; }
  .pricing-card--featured { transform: none; }
  .steps__number       { font-size: 3.5rem; }
}

/* ================================================================
   COMPATIBILITY PATCHES — class name aliases for generated HTML
   ================================================================ */

/* --- Feature sections: make .feature itself the 2-col grid --- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
/* Content column aliases */
.feature__body,
.feature__content,
.feature__text-block { /* div wrappers used as left column */ }
/* Media column alias */
.feature__visual {
  border-radius: var(--radius);
  overflow: hidden;
}
/* Reverse layout with body/visual aliases */
.feature--reverse .feature__body,
.feature--reverse .feature__content  { order: 2; }
.feature--reverse .feature__visual,
.feature--reverse .feature__media    { order: 1; }
/* Text paragraph inside body (not grid item) */
.feature__text { color: var(--gray); line-height: 1.9; margin-bottom: 20px; font-size: 1rem; }
/* sub-features grid */
.sub-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 768px) {
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature--reverse .feature__body,
  .feature--reverse .feature__content,
  .feature--reverse .feature__visual,
  .feature--reverse .feature__media { order: unset; }
}

/* --- Slider text aliases --- */
.slider__step-title,
.slider__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.slider__step-body,
.slider__body {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}
.slider__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}

/* --- Service overview card (service intermediate pages) --- */
.service-overview-card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
  transition: all var(--t);
}
.service-overview-card:hover { box-shadow: var(--shadow-md); }
.service-overview-card__phase {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.service-overview-card__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.service-overview-card__body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.service-overview-card__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}
.service-overview-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--t);
}
.service-overview-card__link::after { content: '→'; }
.service-overview-card__link:hover { background: var(--green); color: #fff; }

/* --- FAQ group title --- */
.faq-group { margin-bottom: 40px; }
.faq-group__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
}

/* --- Pricing card plan page variants --- */
.pricing-card__header { margin-bottom: 20px; }
.pricing-card__plan-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pricing-card__price-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__price-note {
  font-size: 0.76rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-card__check {
  color: var(--green);
  font-weight: 700;
  margin-right: 8px;
}
.pricing-card__cta { margin-top: 24px; }

/* --- page-hero without inner wrapper --- */
.page-hero .page-hero__label,
.page-hero .page-hero__title,
.page-hero .page-hero__sub {
  position: relative;
  z-index: 1;
}

/* --- point-item subclasses (guide pages) --- */
.point-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.point-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.point-item__tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* --- related-service-card (guide pages) --- */
.related-service-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}
.related-service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.related-service-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.related-service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.related-service-card__body {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 12px;
}
.related-service-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
}

/* --- plan-cta-block (guide pages) --- */
.plan-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--green) 0%, #014d29 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  color: #fff;
}
.plan-cta-block__text { flex: 1; }
.plan-cta-block__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: 0.7;
  margin-bottom: 8px;
}
.plan-cta-block__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.4;
}
.plan-cta-block__body {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.8;
}
.plan-cta-block__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .plan-cta-block { flex-direction: column; padding: 36px 28px; }
  .plan-cta-block__cta { width: 100%; }
  .plan-cta-block__cta .btn { width: 100%; text-align: center; }
}

/* --- achievement__laurel wrapper --- */
.achievement__laurel { flex-shrink: 0; }

/* --- steps__list container --- */
.steps__list { display: flex; flex-direction: column; }

/* --- comparison-table feature column --- */
.comparison-table__feature-col,
.comparison-table__feature {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
}
.comparison-table__feature-col { font-weight: 700; background: var(--gray-bg); }

/* --- laurel-mini badge --- */
.laurel-mini { margin-right: 4px; font-size: 1.1em; }

/* --- breadcrumb link / current item --- */
.breadcrumb__link { color: var(--green); text-decoration: none; }
.breadcrumb__link:hover { opacity: 0.7; }
.breadcrumb__item--current { color: var(--gray); font-weight: 500; }

/* --- footer__brand --- */
.footer__brand {
  flex: 1 1 240px;
}

/* --- guide-card__icon (emoji icon above card title) --- */
.guide-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
}

/* --- section__body (lead paragraph under section title) --- */
.section__body {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* --- card / card-grid system (guide/cant-retain) --- */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .card-grid--3 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--t);
}
.card--feature:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.card__icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
.card__label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card__body { font-size: 1rem; color: var(--gray); line-height: 1.85; }

/* --- tab-container (wraps tab-content panels) --- */
.tab-container { position: relative; }

/* --- service-card aliases for visual/text/more/reverse --- */
.service-card__visual { border-radius: var(--radius); overflow: hidden; }
.service-card__text { color: var(--gray); margin-bottom: 22px; line-height: 1.85; font-size: 1rem; }
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--t);
}
.service-card__more:hover { gap: 10px; }
.service-card--reverse .service-card__body,
.service-card--reverse .service-card__content { order: 2; }
.service-card--reverse .service-card__visual,
.service-card--reverse .service-card__media { order: 1; }

/* --- sub-feature__title (alias for sub-feature__name) --- */
.sub-feature__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

/* --- plan-cta-banner (compact CTA banner on service pages) --- */
.plan-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--green) 0%, #014d29 100%);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
}
.plan-cta-banner__text { flex: 1; }
.plan-cta-banner__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}
.plan-cta-banner__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}
.plan-cta-banner__cta {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .plan-cta-banner { flex-direction: column; padding: 28px 24px; }
  .plan-cta-banner__cta { flex-direction: column; width: 100%; }
  .plan-cta-banner__cta .btn { width: 100%; text-align: center; }
}

/* --- slider btn direction modifiers (prev/next are same visual) --- */
.slider__btn--prev,
.slider__btn--next { /* inherits .slider__btn styles */ }

/* --- feature__desc (paragraph in feature body) --- */
.feature__desc { color: var(--gray); line-height: 1.9; margin-bottom: 20px; }

/* ================================================================
   REAL IMAGES (replacing img-placeholder)
   ================================================================ */
.media-img--lg {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.media-img--hero {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

/* hero right side: main photo + floating sub photo */
.hero__image-sub {
  position: absolute;
  left: -28px;
  bottom: -28px;
  width: 46%;
  aspect-ratio: 4 / 3;
  border: 6px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: #fff;
}
.hero__image-sub img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hero__image-sub { width: 42%; left: -14px; bottom: -14px; }
}
@media (max-width: 600px) {
  .hero__image-sub { width: 38%; left: -10px; bottom: -16px; }
}

/* achievement badges: photo badge instead of CSS laurel */
.achievement__badge-img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

/* trust icons: photo icon instead of emoji */
.trust__icon--img { background: none; }
.trust__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* guide cards: photo illustration instead of emoji
   (イラストは頭部が上寄りのため object-position: top で頭切れを防止) */
.guide-card__illust { overflow: hidden; }
.guide-card__illust-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* overview cards: icon image instead of emoji */
.overview-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* overview 3-column card grid */
.overview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .overview-cards { grid-template-columns: 1fr; gap: 20px; }
  .overview-card  { padding: 28px 20px; }
}

/* 3-step section: compact icon card instead of large photo
   (アイコン画像は白背景のため、白いカードに収めてコンパクトに表示) */
.steps__icon-card {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps__icon-card img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .steps__icon-card { width: 220px; height: 220px; }
}

/* flow steps: real photo instead of placeholder text */
.flow-step__media { overflow: hidden; padding: 0; }
.flow-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   TABLE SWIPE HINT (モバイル用比較表スワイプ案内)
   ================================================================ */
.table-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray);
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  margin-bottom: 8px;
  animation: swipe-pulse 1.8s ease-in-out infinite alternate;
}
@keyframes swipe-pulse {
  from { opacity: 0.6; transform: translateX(-3px); }
  to   { opacity: 1;   transform: translateX(3px); }
}

/* ================================================================
   TABLE WRAPPER (比較表スクロールコンテナ)
   ================================================================ */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper::-webkit-scrollbar { display: none; }
.table-wrapper { -ms-overflow-style: none; scrollbar-width: none; }
