/* =========================================================
   Good High | Meta広告運用代行 コーポレートサイト
   Design System — Editorial / Bold Monochrome + Lilac
   (参考: winnavi.jp のトーンに準拠)
   ========================================================= */

:root {
  --ink: #0a0a0f;         /* near-black headlines */
  --ink-2: #2b2b36;
  --muted: #6b6b7a;
  --line: #eae7f2;
  --bg: #ffffff;
  --bg-alt: #f6f4fb;      /* very light lilac */
  --bg-lilac: #ede8fb;    /* lilac section */
  --bg-deep: #0a0a12;

  --brand: #7c4dff;       /* violet */
  --brand-2: #a678ff;     /* light violet */
  --lilac: #c9b6ff;
  --accent: #7c4dff;
  --ok: #16b981;

  --grad: linear-gradient(120deg, #7c4dff 0%, #a678ff 100%);
  --grad-lilac: linear-gradient(135deg, #f1ecff 0%, #e7ddff 60%, #efe6ff 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(20, 12, 45, .05);
  --shadow: 0 16px 44px rgba(60, 40, 130, .12);
  --shadow-lg: 0 30px 80px rgba(60, 40, 130, .16);

  --maxw: 1180px;
  --font: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic", Meiryo, sans-serif;
  --font-en: "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.9; font-size: 16px; letter-spacing: .01em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.3; letter-spacing: .01em; font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section--lilac { background: var(--grad-lilac); }
.section--deep { background: var(--bg-deep); color: #fff; }
.text-center { text-align: center; }

/* Section heading block with number + big English word */
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-num {
  font-family: var(--font-en); font-weight: 800; font-size: 14px;
  letter-spacing: .2em; color: var(--brand); display: inline-block; margin-bottom: 10px;
}
.sec-en {
  display: block; font-family: var(--font-en); font-weight: 900;
  font-size: clamp(34px, 6vw, 64px); line-height: 1; letter-spacing: -.01em;
  color: var(--ink); text-transform: uppercase; margin: 0 0 14px;
}
.section--deep .sec-en { color: #fff; }
.sec-ja {
  font-size: clamp(19px, 2.6vw, 24px); font-weight: 800; margin: 0 0 14px;
  display: flex; align-items: center; gap: 12px;
}
.sec-ja::before { content: ""; width: 5px; height: 1.1em; background: var(--grad); border-radius: 3px; }
.center .sec-ja { justify-content: center; }
.sec-lead { color: var(--muted); max-width: 720px; font-size: 15.5px; margin: 0; }
.center .sec-lead { margin: 0 auto; }
.section--deep .sec-lead { color: #b9b6cf; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 16px 32px;
  border-radius: 999px; font-weight: 800; font-size: 15px; cursor: pointer; border: 0;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(124, 77, 255, .34); }
.btn--violet { background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(124,77,255,.32); }
.btn--violet:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(124,77,255,.45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 19px 44px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn .arw { font-size: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .logo-mark {
  width: 44px; height: 40px; background: var(--ink); color: #fff; font-family: var(--font-en);
  font-weight: 900; font-size: 26px; display: grid; place-items: center; letter-spacing: -.04em;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
}
.brand .bt { font-family: var(--font-en); font-weight: 900; font-size: 19px; letter-spacing: .02em; line-height: 1; }
.brand small { display: block; font-size: 9.5px; font-weight: 700; color: var(--muted); letter-spacing: .16em; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--font-en); font-size: 13.5px; font-weight: 800; letter-spacing: .08em; color: var(--ink); text-transform: uppercase; transition: color .15s; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: #fff; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 70px 0 84px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-en); font-weight: 900; text-transform: uppercase;
  font-size: clamp(44px, 8.5vw, 104px); line-height: .96; letter-spacing: -.02em;
  margin: 0 0 26px; color: var(--ink);
}
.hero h1 .hl { color: var(--brand); }
.hero .subja {
  display: flex; align-items: center; gap: 14px; font-size: clamp(16px, 2.4vw, 21px);
  font-weight: 800; margin: 0 0 22px;
}
.hero .subja::before { content: ""; width: 5px; height: 1.3em; background: var(--ink); border-radius: 3px; }
.hero p.lead { font-size: 16.5px; color: var(--ink-2); margin: 0 0 30px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--bg-lilac);
  border-radius: 999px; padding: 7px 15px; font-size: 12.5px; font-weight: 800; color: var(--brand);
}
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-lilac);
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); position: relative;
  display: grid; place-items: center;
}
.hero-photo .ph-emoji { font-size: 120px; filter: saturate(1.05); }
.hero-float {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 18px; border: 1px solid var(--line);
}
.hero-float .n { font-family: var(--font-en); font-size: 26px; font-weight: 900; color: var(--brand); line-height: 1; }
.hero-float .l { font-size: 11px; color: var(--muted); font-weight: 700; }
.hero-float.f1 { top: 24px; left: -22px; }
.hero-float.f2 { bottom: 30px; right: -18px; }

/* ---------- Marquee / logos ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; background: #fff; }
.trust-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.trust span { font-size: 13px; font-weight: 800; color: var(--muted); letter-spacing: .04em; }
.trust .lbl { color: var(--ink); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-lilac); display: grid; place-items: center; font-size: 25px; margin-bottom: 18px; }
.card .cnum { font-family: var(--font-en); font-size: 13px; font-weight: 900; color: var(--lilac); letter-spacing: .12em; }
.card h3 { font-size: 19px; margin: 6px 0 10px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Problem ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; font-size: 15.5px; }
.check-list li::before {
  content: "✓"; flex: 0 0 26px; height: 26px; border-radius: 50%; background: var(--grad);
  color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 900; margin-top: 4px;
}
.problem-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.problem-card .q { font-size: 34px; font-family: var(--font-en); font-weight: 900; color: var(--lilac); line-height: 1; }
.problem-card p { margin: 10px 0 0; font-weight: 700; font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 16px; }
.step-item { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.step-item .no { width: 50px; height: 50px; border-radius: 13px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-en); font-weight: 900; font-size: 19px; }
.step-item h3 { margin: 0 0 6px; font-size: 18px; }
.step-item p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.price-card.is-featured { border-color: var(--ink); box-shadow: var(--shadow-lg); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 18px; border-radius: 999px; white-space: nowrap; }
.price-card .pen { font-family: var(--font-en); font-weight: 900; font-size: 13px; letter-spacing: .12em; color: var(--brand); text-transform: uppercase; }
.price-card h3 { font-size: 21px; margin: 4px 0 6px; }
.price-card .desc { color: var(--muted); font-size: 13.5px; min-height: 44px; margin: 0 0 18px; }
.price-card .price { font-size: 38px; font-weight: 900; letter-spacing: -.01em; font-family: var(--font-en); }
.price-card .price small { font-size: 15px; color: var(--muted); font-weight: 700; font-family: var(--font); }
.price-card .per { color: var(--muted); font-size: 13px; margin: 2px 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.price-card ul li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.price-card ul li::before { content: "✓"; color: var(--brand); font-weight: 900; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }

/* Performance-based pricing hero */
.price-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 44px; }
.price-hero-main { text-align: center; padding: 10px 20px; }
.price-hero-main .ph-lead { color: #c8c6dc; font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.price-hero-main .ph-rate { margin: 0; line-height: .9; display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-hero-main .ph-rate .num { font-family: var(--font-en); font-weight: 900; font-size: clamp(88px, 15vw, 150px); background: linear-gradient(120deg,#fff,#c9b6ff); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; }
.price-hero-main .ph-rate .pct { font-family: var(--font-en); font-weight: 900; font-size: clamp(40px, 7vw, 64px); color: var(--brand-2); }
.price-hero-main .ph-rate .only { font-size: 22px; font-weight: 800; color: #fff; margin-left: 6px; }
.price-hero-main .ph-sub { color: #9d9bbb; font-size: 12.5px; margin: 18px 0 0; line-height: 1.7; }
.price-hero-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.price-hero-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; color: #d8d6ea; font-size: 14.5px; }
.price-hero-list li strong { color: #fff; font-size: 15.5px; }
.price-hero-list .ck { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 13px; margin-top: 2px; }
@media (max-width: 760px) {
  .price-hero { grid-template-columns: 1fr; padding: 30px 22px; gap: 24px; }
  .price-hero-main { padding: 0; }
}

/* ---------- Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .n { font-family: var(--font-en); font-size: clamp(38px, 5.5vw, 60px); font-weight: 900; line-height: 1; color: #fff; letter-spacing: -.02em; }
.stat .n .u { font-size: .5em; color: var(--lilac); }
.stat .l { color: #b9b6cf; font-size: 13.5px; font-weight: 700; margin-top: 8px; }

/* ---------- Works ---------- */
.work-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, box-shadow .18s; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-card .thumb { aspect-ratio: 16/10; background: var(--grad-lilac); display: grid; place-items: center; font-size: 46px; position: relative; }
.work-card .thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(10,10,15,.8); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.work-card .body { padding: 24px 26px; }
.work-card .cat { font-family: var(--font-en); font-size: 12px; font-weight: 800; color: var(--brand); letter-spacing: .08em; }
.work-card h3 { font-size: 17px; margin: 8px 0 14px; }
.work-card .metrics { display: flex; gap: 22px; border-top: 1px solid var(--line); padding-top: 16px; }
.work-card .metrics div { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.work-card .metrics strong { display: block; font-family: var(--font-en); font-size: 24px; color: var(--ink); }
.work-card .metrics strong .up { color: var(--brand); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 24px; }
.faq summary { cursor: pointer; padding: 20px 0; font-weight: 800; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; font-family: var(--font-en); font-weight: 900; color: var(--brand); margin-right: 12px; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 24px; font-weight: 300; transition: transform .2s; margin-left: auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 20px; font-size: 14.5px; padding-left: 26px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 66px 40px; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 20%, rgba(124,77,255,.5), transparent 60%), radial-gradient(50% 80% at 15% 90%, rgba(166,120,255,.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band .cta-en { font-family: var(--font-en); font-weight: 900; text-transform: uppercase; font-size: clamp(28px, 5vw, 52px); line-height: 1; margin: 0 0 16px; letter-spacing: -.01em; }
.cta-band p { color: rgba(255,255,255,.82); margin: 0 0 30px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 8px; }
.field label .req { color: #fff; background: var(--brand); font-size: 10px; margin-left: 8px; padding: 2px 8px; border-radius: 4px; vertical-align: middle; }
.field label .opt { color: var(--muted); background: var(--bg-alt); font-size: 10px; margin-left: 8px; padding: 2px 8px; border-radius: 4px; vertical-align: middle; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; background: #fdfdff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(124,77,255,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form-success { display: none; background: #f0fdf7; border: 1px solid #bbf0d6; color: #0b7a4b; border-radius: 12px; padding: 16px 18px; font-weight: 700; margin-bottom: 18px; }
.form-error { display: none; background: #fef2f2; border: 1px solid #fbcaca; color: #b3261e; border-radius: 12px; padding: 16px 18px; font-weight: 700; margin-bottom: 18px; font-size: 14px; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.info-list .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-lilac); display: grid; place-items: center; font-size: 20px; }
.info-list h4 { margin: 0 0 3px; font-size: 15px; }
.info-list p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ---------- Table ---------- */
.simple-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.simple-table th, .simple-table td { text-align: left; padding: 16px 20px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.simple-table th { background: var(--bg-alt); width: 32%; font-weight: 800; }
.simple-table tr:last-child th, .simple-table tr:last-child td { border-bottom: 0; }

/* ---------- Article / Blog ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article .meta .cat { background: var(--bg-lilac); color: var(--brand); font-weight: 800; padding: 4px 12px; border-radius: 999px; font-size: 12px; }
.article h2 { font-size: 25px; margin: 46px 0 16px; padding-left: 15px; border-left: 5px solid var(--brand); }
.article h3 { font-size: 19px; margin: 32px 0 12px; }
.article p { margin: 0 0 18px; color: var(--ink-2); }
.article ul, .article ol { color: var(--ink-2); margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article .lead { font-size: 18px; color: var(--ink); font-weight: 500; }
.article .callout { background: var(--bg-lilac); border-radius: 14px; padding: 22px 26px; margin: 24px 0; }
.article .callout strong { color: var(--brand); }
.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px; margin: 0 0 36px; }
.toc strong { display: block; margin-bottom: 10px; font-family: var(--font-en); letter-spacing: .06em; }
.toc ol { margin: 0; padding-left: 20px; }
.toc a { color: var(--brand); font-weight: 600; }

.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .thumb { aspect-ratio: 16/9; background: var(--grad-lilac); display: grid; place-items: center; font-size: 42px; }
.blog-card .body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .cat { font-family: var(--font-en); font-size: 11.5px; font-weight: 800; color: var(--brand); letter-spacing: .06em; }
.blog-card h3 { font-size: 16.5px; margin: 8px 0 10px; line-height: 1.5; }
.blog-card time { color: var(--muted); font-size: 12.5px; margin-top: auto; }

/* ---------- Page hero (sub) ---------- */
.page-hero { background: var(--grad-lilac); padding: 66px 0 60px; position: relative; overflow: hidden; }
.page-hero .en { font-family: var(--font-en); font-weight: 900; text-transform: uppercase; font-size: clamp(36px, 6vw, 68px); line-height: 1; letter-spacing: -.02em; margin: 8px 0 10px; }
.page-hero .ja { font-size: 16px; font-weight: 800; color: var(--brand); }
.page-hero p { color: var(--ink-2); max-width: 680px; margin: 14px 0 0; font-size: 15px; }
.breadcrumb { font-family: var(--font-en); font-size: 12px; color: var(--muted); margin-bottom: 4px; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #c8c6dc; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.site-footer .brand .bt { color: #fff; }
.site-footer .brand .logo-mark { background: #fff; color: var(--ink); }
.site-footer .fdesc { font-size: 13px; color: #8d8ba8; margin: 16px 0 0; max-width: 300px; }
.footer-col h4 { font-family: var(--font-en); font-size: 12px; letter-spacing: .1em; color: #fff; margin: 0 0 14px; text-transform: uppercase; }
.footer-col a { display: block; font-size: 13.5px; color: #8d8ba8; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #6d6b88; }

/* ---------- Floating CTA (mobile) ---------- */
.float-cta { display: none; }

/* ---------- Reveal (progressive enhancement) ----------
   Hidden ONLY when JS is active (html.js). Without JS, content is fully visible. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 46px 0 60px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}
@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .nav-links, .nav .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 16px 24px 24px; gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .grid-2, .grid-3, .grid-4, .price-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-grid { gap: 30px; }
  .price-card.is-featured { order: -1; }
  .cta-band { padding: 46px 24px; }
  .hero-float.f1 { left: 6px; } .hero-float.f2 { right: 6px; }
  .float-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: #fff; border-top: 1px solid var(--line); padding: 10px 14px; box-shadow: 0 -6px 20px rgba(20,12,45,.08); gap: 10px; }
  .float-cta .btn { flex: 1; padding: 14px; font-size: 14px; }
  body { padding-bottom: 70px; }
  .site-footer { padding-bottom: 96px; }
  .simple-table th { width: 40%; }
}
