/* ========================================
   ビーンズ行政書士事務所 LP
   Design tokens
   ======================================== */
:root {
  /* Brand */
  --green-900: #0f3b2e;     /* Deep green - primary */
  --green-800: #1a5240;
  --green-700: #2a6a55;
  --green-100: #e8f0ec;
  --green-50:  #f4f8f6;

  --gold-600: #a37b3a;      /* Accent - subtle */
  --gold-500: #c89c5a;
  --gold-100: #f4ead8;

  --navy-900: #0d1f33;      /* Deep ink */
  --navy-700: #2a3e55;

  --ink-900: #1a1f2c;       /* Body text */
  --ink-700: #3a414f;
  --ink-500: #6b7280;
  --ink-400: #9099a4;
  --ink-300: #c8ced6;
  --ink-200: #e3e7ec;
  --ink-100: #eff2f5;
  --ink-50:  #f7f9fb;

  --paper:   #fbfaf6;       /* Warm off-white background */
  --white:   #ffffff;

  --danger:  #b04848;

  /* Type */
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;

  /* Spacing */
  --container: 1120px;
  --gutter: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 59, 46, 0.06), 0 1px 3px rgba(15, 59, 46, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 59, 46, 0.08), 0 2px 4px rgba(15, 59, 46, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 59, 46, 0.12), 0 4px 8px rgba(15, 59, 46, 0.04);
}

/* ========================================
   Reset / Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.75;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green-800); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* Headings — Mincho */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--navy-900);
  margin: 0;
}

/* ========================================
   Layout
   ======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--ink-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy-900);
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-900);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
}
.brand__logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .brand__logo { height: 26px; }
}
.brand__logo--footer {
  height: 36px;
  filter: brightness(0) invert(1) opacity(0.92);
}
.brand__text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--navy-900);
}
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a:hover { color: var(--green-800); text-decoration: none; }
.site-nav a.btn { color: var(--white); }
.site-nav a.btn:hover { color: var(--white); }
@media (max-width: 880px) {
  .site-nav { display: none; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--green-800);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* Hero CTA Button */
.hero .btn--primary {
  position: relative;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(200, 156, 90, 0.4), 0 4px 12px rgba(200, 156, 90, 0.3);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-shadow:
    -1.2px -1.2px 0 #8a6e38,
    1.2px -1.2px 0 #8a6e38,
    -1.2px 1.2px 0 #8a6e38,
    1.2px 1.2px 0 #8a6e38,
    -1.2px 0 0 #8a6e38,
    1.2px 0 0 #8a6e38,
    0 -1.2px 0 #8a6e38,
    0 1.2px 0 #8a6e38;
}
.hero .btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}
.hero .btn--primary:hover {
  background: linear-gradient(135deg, #e0ae6e 0%, var(--gold-500) 100%);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(200, 156, 90, 0.5), 0 8px 16px rgba(200, 156, 90, 0.4);
  transform: translateY(-3px);
}
.hero .btn--primary:active {
  transform: translateY(-1px);
}
.hero .btn--lg {
  padding: 24px 44px;
  font-size: 18px;
}

/* Hero Secondary Button */
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--green-900);
  border: 2px solid var(--green-900);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--green-900);
  border-color: var(--gold-600);
  box-shadow: 0 8px 20px rgba(200, 156, 90, 0.2);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}
.btn--ghost:hover {
  background: var(--green-900);
  color: var(--white);
}
.btn--lg { padding: 20px 36px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Hero arrow animation */
.hero .btn--primary .arrow {
  transition: transform 0.3s ease;
}
.hero .btn--primary:hover .arrow {
  transform: translateX(6px);
}

/* ========================================
   Section header
   ======================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}
.section-title {
  font-size: clamp(26px, 3.6vw, 36px);
  margin-bottom: 24px;
  line-height: 1.5;
}
.section-lead {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.9;
  max-width: 720px;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background-image:
    url('assets/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}
.hero::before {
  /* Subtle paper texture / vertical line */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(15, 59, 46, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(163, 123, 58, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--green-900);
  font-weight: 500;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__tag .dot {
  width: 8px; height: 8px;
  background: var(--green-700);
  border-radius: 50%;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.45;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero__title .accent {
  color: var(--gold-500);
  position: relative;
  display: inline-block;
  padding: 0 4px;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(200, 156, 90, 0.25);
  z-index: -1;
}
.hero-underline {
  position: relative;
  display: inline-block;
  text-shadow:
    -2px -2px 0 #0f3b2e,
    2px -2px 0 #0f3b2e,
    -2px 2px 0 #0f3b2e,
    2px 2px 0 #0f3b2e,
    -2px 0 0 #0f3b2e,
    2px 0 0 #0f3b2e,
    0 -2px 0 #0f3b2e,
    0 2px 0 #0f3b2e;
}
.hero-underline::after {
  content: '';
  position: absolute;
  left: -4px;
  bottom: 3px;
  width: calc(100% + 8px);
  height: 14px;
  background-image: linear-gradient(to right, rgba(255, 221, 0, 0.6), rgba(255, 237, 78, 0.3));
  background-size: 0 100%;
  background-position: left center;
  background-repeat: no-repeat;
  animation: underlineGrowRight 0.8s ease-out forwards;
  animation-delay: 1s;
}
@keyframes underlineGrowRight {
  from {
    background-size: 0 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
.hero__title .small-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-500);
  margin: 0 0 32px 0;
}
.hero__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 640px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__meta-item svg {
  width: 16px; height: 16px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ========================================
   Pain (お悩み)
   ======================================== */
.pain {
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}
.pain__head { text-align: center; margin-bottom: 56px; }
.pain__head .section-eyebrow { justify-content: center; }
.pain__head .section-title {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .pain-grid { grid-template-columns: 1fr; }
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--green-50);
  border-left: 3px solid var(--green-700);
  border-radius: 2px;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.85;
}
.pain-item__quote {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-700);
  line-height: 1;
  margin-top: 4px;
  font-weight: 600;
}

/* ========================================
   Mindset (セキュリティ対策の考え方)
   ======================================== */
.mindset {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f8f6 0%, #e8f0ec 100%);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3ClinearGradient id='mindsetGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(42,106,85,0.08);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(200,156,90,0.06);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='600' fill='url(%23mindsetGrad)'/%3E%3Ccircle cx='5%25' cy='30%25' r='180' fill='rgba(42,106,85,0.05)' /%3E%3Ccircle cx='95%25' cy='80%25' r='140' fill='rgba(200,156,90,0.05)' /%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.mindset__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.mindset__icon {
  display: inline-block;
  font-size: 56px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mindset__heading {
  font-size: 24px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green-800);
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
}

.mindset__problem {
  font-size: 16px;
  color: var(--ink-700);
  margin-bottom: 40px;
  line-height: 1.85;
}

.mindset__highlight {
  position: relative;
  margin: 48px 0;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-50) 100%);
  border: 2px solid var(--green-700);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(42, 106, 85, 0.12);
}
.mindset__highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700) 0%, var(--gold-500) 100%);
  border-radius: 12px 12px 0 0;
}

.mindset__key {
  font-size: 20px;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 16px 0;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.mindset__sub {
  font-size: 15px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.8;
}

.mindset__follow {
  font-size: 15px;
  color: var(--ink-700);
  margin-top: 40px;
  margin-bottom: 0;
  line-height: 1.85;
}

/* ========================================
   Diagnosis scope (確認すること)
   ======================================== */
.scope__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px;
  background: var(--ink-50);
  border: 1px dashed var(--ink-300);
  border-radius: 4px;
  font-size: 13px;
  color: var(--ink-700);
}
.scope__note svg { color: var(--ink-500); width: 16px; height: 16px; }

.scope-table {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.scope-row {
  display: contents;
}
.scope-row__label,
.scope-row__detail {
  padding: 24px 28px;
  border-top: 1px solid var(--ink-200);
}
.scope-row:first-child .scope-row__label,
.scope-row:first-child .scope-row__detail {
  border-top: none;
}
.scope-row__label {
  background: var(--green-900);
  color: var(--white);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scope-row__label .num {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}
.scope-row__detail {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.85;
  background: var(--white);
}
@media (max-width: 720px) {
  .scope-table { grid-template-columns: 1fr; }
  .scope-row__label { padding: 16px 20px; }
  .scope-row__detail { padding: 16px 20px; border-top: none; }
  .scope-row + .scope-row .scope-row__label { border-top: 1px solid var(--green-800); }
}

/* ========================================
   Benefit (わかること)
   ======================================== */
.benefit {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(200,156,90,0.05);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(255,255,255,0.02);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='800' fill='url(%23grad)'/%3E%3Ccircle cx='80%25' cy='20%25' r='200' fill='rgba(200,156,90,0.08)' opacity='0.5'/%3E%3Ccircle cx='10%25' cy='90%25' r='150' fill='rgba(255,255,255,0.04)' opacity='0.3'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 156, 90, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.benefit .section-eyebrow { color: var(--gold-500); }
.benefit .section-eyebrow::before { background: var(--gold-500); }
.benefit .section-title { color: var(--white); }
.benefit .section-lead { color: rgba(255, 255, 255, 0.85); }

.benefit__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .benefit__inner { grid-template-columns: 1fr; gap: 40px; }
}
.benefit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.benefit__list li {
  padding: 22px 8px 22px 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  line-height: 1.7;
}
.benefit__list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 28px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89c5a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ========================================
   Security Action
   ======================================== */
.sa-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) {
  .sa-card { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
}
.sa-card__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--green-50);
  border-radius: 6px;
  text-align: center;
}
.sa-card__star {
  display: flex;
  gap: 4px;
  color: var(--gold-500);
  font-size: 22px;
}
.sa-card__badge-label {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--green-900);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}
.sa-card__badge-sub {
  font-size: 11px;
  color: var(--ink-500);
  line-height: 1.6;
}
.sa-card__body p {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-700);
}
.sa-card__body p:last-child { margin-bottom: 0; }
.sa-card__body strong {
  color: var(--green-900);
  font-weight: 600;
}

/* ========================================
   Support (有料サポート)
   ======================================== */
.support {
  background: var(--green-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3ClinearGradient id='supportGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(15,59,46,0.03);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(200,156,90,0.05);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='600' fill='url(%23supportGrad)'/%3E%3Cpath d='M0,300 Q300,200 600,300 T1200,300' stroke='rgba(15,59,46,0.08)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.support-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
}
.support-item {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-top: 3px solid var(--green-700);
  border-radius: 4px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.support-item__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-200);
}
.support-item__num {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--gold-600);
  letter-spacing: 0.1em;
  font-weight: 600;
  flex-shrink: 0;
}
.support-item__title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.5;
}
.support-item__detail {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.85;
  margin: 0;
}
.support__caption {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
}

/* ========================================
   Why us
   ======================================== */
.why { background: var(--white); }
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 880px) {
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
}
.why-axes {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: grid;
  gap: 16px;
}
.why-axis {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-200);
}
.why-axis:last-child { border-bottom: none; }
.why-axis__num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.why-axis__text {
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.8;
}
.why-prose p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 2;
  margin: 0 0 18px 0;
}
.why-prose p:last-child { margin-bottom: 0; }

/* Profile Box */
.why-profile {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-profile__photo {
  width: 60%;
  aspect-ratio: 1 / 1;
  background: var(--ink-100);
  overflow: hidden;
  color: var(--ink-400);
  margin: 0 auto;
}
.why-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-profile__content {
  padding: 32px 28px;
}
.why-profile__office {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
}
.why-profile__title {
  font-size: 14px;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-profile__bio {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.85;
  margin: 0 0 16px 0;
}
.why-profile__bio:last-of-type {
  margin-bottom: 20px;
}
.why-profile__credentials {
  border-top: 1px solid var(--ink-200);
  margin-top: 20px;
  padding-top: 20px;
}

.why-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--green-50);
  color: var(--green-900);
  border: 1px solid var(--green-100);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
.cred-chip svg { width: 14px; height: 14px; }

/* ========================================
   Flow
   ======================================== */
.flow {
  background: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'%3E%3Cdefs%3E%3ClinearGradient id='flowGrad' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(15,59,46,0.04);stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:rgba(200,156,90,0.06);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(15,59,46,0.04);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='400' fill='url(%23flowGrad)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.flow-steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  padding-left: 110px;
  max-width: 910px;
}
.flow-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  bottom: -20px;
  width: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 1000' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='lineGrad' x1='50%25' y1='0%25' x2='50%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%230f3b2e;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%23c89c5a;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 18 0 L 8 900 L 0 960 L 18 1000 L 36 960 L 28 900 L 18 0' fill='url(%23lineGrad)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 880px) {
  .flow-steps {
    gap: 24px;
  }
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 36px;
  width: 100%;
}
.flow-step::after {
  display: none;
}
.flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-900);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  left: -26px;
  top: -22px;
}
.flow-step__title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.5;
}
.flow-step__detail {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.7;
  margin: 0;
}
.flow__caption {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-700);
}
.flow__caption strong { color: var(--green-900); }

/* ========================================
   Scope (target / out of scope)
   ======================================== */
.target { background: var(--white); }
.target__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .target__grid { grid-template-columns: 1fr; }
}
.target-card {
  border-radius: 6px;
  padding: 32px;
  border: 1px solid;
}
.target-card--in {
  background: var(--green-50);
  border-color: var(--green-100);
}
.target-card--out {
  background: var(--ink-50);
  border-color: var(--ink-200);
}
.target-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid;
}
.target-card--in .target-card__head { border-color: var(--green-100); }
.target-card--out .target-card__head { border-color: var(--ink-200); }
.target-card__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.target-card--in .target-card__icon {
  background: var(--green-700);
  color: var(--white);
}
.target-card--out .target-card__icon {
  background: var(--ink-300);
  color: var(--white);
}
.target-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
}
.target-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.target-card ul li {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}
.target-card--in ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}
.target-card--out ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 10px; height: 2px;
  background: var(--ink-400);
  border-radius: 1px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--green-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600'%3E%3Cdefs%3E%3ClinearGradient id='faqGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:rgba(15,59,46,0.03);stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:rgba(200,156,90,0.05);stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='600' fill='url(%23faqGrad)'/%3E%3Ccircle cx='20%25' cy='30%25' r='120' fill='rgba(15,59,46,0.04)' opacity='0.6'/%3E%3Ccircle cx='80%25' cy='70%25' r='100' fill='rgba(200,156,90,0.05)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}
.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item.is-open {
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.6;
}
.faq-q__mark {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-600);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}
.faq-q__text { flex: 1; }
.faq-q__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.3s ease;
  color: var(--ink-500);
}
.faq-item.is-open .faq-q__icon {
  transform: rotate(180deg);
  color: var(--green-700);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a__inner {
  padding: 0 28px 24px 0;
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.95;
}
.faq-a__inner::before {
  content: "A.";
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green-700);
  font-weight: 700;
  flex-shrink: 0;
  padding-left: 28px;
}

/* ========================================
   Final CTA
   ======================================== */
.final-cta {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 156, 90, 0.12) 0%, transparent 60%);
}
.final-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.final-cta .section-eyebrow {
  color: var(--gold-500);
  justify-content: center;
}
.final-cta .section-eyebrow::before { background: var(--gold-500); }
.final-cta__title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}
.final-cta__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 2;
  margin: 0 auto 40px;
  max-width: 600px;
}
.final-cta .btn--primary {
  background: var(--gold-500);
  color: var(--green-900);
}
.final-cta .btn--primary:hover {
  background: var(--gold-600);
  color: var(--white);
}

/* ========================================
   Form
   ======================================== */
.form-section {
  background: var(--white);
  border-top: 1px solid var(--ink-200);
}
.form-card {
  max-width: 640px;
  margin: 48px auto 0;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .form-card { padding: 32px 24px; }
}
.form-field {
  margin-bottom: 24px;
}
.form-field:last-of-type { margin-bottom: 32px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.form-required {
  font-size: 11px;
  color: var(--white);
  background: var(--danger);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ink-300);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(42, 106, 85, 0.15);
}
.form-input.is-error {
  border-color: var(--danger);
}
.form-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: var(--danger);
}
.form-input.is-error + .form-error { display: block; }
.form-note {
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
  margin-top: 16px;
  line-height: 1.7;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}
.form-success.is-shown { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-50);
  display: grid;
  place-items: center;
  color: var(--green-700);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy-900);
}
.form-success p {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.85;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 32px;
  font-size: 13px;
}
.site-footer .brand__text { color: var(--white); }
.site-footer .brand__sub { color: rgba(255, 255, 255, 0.6); }
.site-footer .brand__mark {
  background: var(--green-700);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}
.footer__col h4 {
  font-family: var(--sans);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__col a:hover { color: var(--gold-500); }
.footer__col a:hover .external-icon { color: var(--gold-500); }
.external-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer__col p { margin: 0 0 6px 0; line-height: 1.8; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 720px) {
  .footer__bottom { flex-direction: column; gap: 8px; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
