/* ==========================================================================
   ちょーでー LP — base styles
   ========================================================================== */

:root {
  --primary: #136DB0;
  --primary-dark: #0A4E80;
  --primary-deep: #082F4E;
  --secondary: #38C1A5;
  --secondary-dark: #2AA089;
  --accent: #F2825A;
  --sand: #FAF6EC;
  --sand-deep: #F2EBDA;
  --white: #FFFFFF;
  --ink: #12232E;
  --ink-soft: #4A5A63;
  --ink-faint: #7C8B93;
  --line: #E3EEF3;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(10, 58, 92, 0.08);
  --shadow: 0 14px 40px rgba(10, 58, 92, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 58, 92, 0.16);

  --container: 1140px;
  --section-pad: clamp(32px, 4.5vw, 60px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  color: var(--primary-deep);
  line-height: 1.5;
  font-weight: 700;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Prevent grid/flex items with text content from refusing to shrink
   below their content's natural width (default min-width:auto), which
   causes horizontal overflow on narrow viewports (notably iOS Safari). */
.hero-copy,
.hero-visual,
.hero-badges li,
.about-copy,
.about-visual,
.contact-info,
.contact-form-card,
.price-card,
.pillar-card,
.check-item,
.check-item > div,
.industry-card,
.footer-brand,
.footer-col,
.feature-panel-head,
.feature-list,
.point-list .point,
.point-list .point > div,
.contact-points li,
.contact-points li > div,
.mini-cta p {
  min-width: 0;
}

section {
  position: relative;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.bg-navy {
  background: linear-gradient(160deg, var(--primary-deep), var(--primary-dark) 70%);
  color: var(--white);
}
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary-dark);
  background: rgba(56, 193, 165, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.bg-navy .eyebrow {
  color: #8FE9D3;
  background: rgba(56, 193, 165, 0.18);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
}

.bg-navy .section-head p {
  color: rgba(255,255,255,0.82);
}

.text-gradient {
  background: linear-gradient(100deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(100deg, var(--secondary), var(--primary));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(19, 109, 176, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(19, 109, 176, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.bg-navy .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.bg-navy .btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 17px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  margin-top: 8px;
  margin-bottom: 14px;
}
.cta-note svg { color: var(--secondary-dark); flex-shrink: 0; }
.bg-navy .cta-note { color: rgba(255,255,255,0.65); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(10, 58, 92, 0.08);
  border-bottom-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 34px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .btn {
  height: 38px;
  padding: 0 20px;
  font-size: 13.5px;
  box-sizing: border-box;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--primary-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 88px 0 56px;
  background: linear-gradient(180deg, #EAF6F3 0%, var(--white) 78%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-audience {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(100deg, var(--accent), #d96a3f);
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(242, 130, 90, 0.32);
}

.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.hero h1 .marker {
  display: inline;
  font-weight: 900;
  color: var(--primary-deep);
  padding: 0 6px;
  background-image: linear-gradient(to top, rgba(56, 193, 165, 0.5) 40%, transparent 40%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  font-size: 16.5px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-badges svg {
  flex-shrink: 0;
  color: var(--secondary-dark);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(10, 58, 92, 0.18));
}

.hero-stat-badge {
  position: absolute;
  left: -18px;
  bottom: 0;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}

.hero-stat-badge .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.hero-stat-badge .label {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 5px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -60px -40px;
  background: radial-gradient(circle at 30% 20%, rgba(56, 193, 165, 0.22), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(19, 109, 176, 0.18), transparent 55%);
  z-index: -1;
}

/* wave divider */
.divider {
  line-height: 0;
  overflow: hidden;
}
.divider svg {
  width: 100%;
  height: 32px;
  display: block;
}

/* ==========================================================================
   Mini CTA (repeated conversion prompts)
   ========================================================================== */

.mini-cta {
  max-width: 820px;
  margin: 32px auto 0;
  background: linear-gradient(135deg, rgba(19, 109, 176, 0.07), rgba(56, 193, 165, 0.09));
  border: 1.5px solid rgba(19, 109, 176, 0.2);
  border-radius: var(--radius-lg);
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-cta p {
  font-weight: 900;
  color: var(--primary-deep);
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.mini-cta .btn {
  flex-shrink: 0;
}

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */

.trust-strip {
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-dark) 75%);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.trust-label {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* ==========================================================================
   Problem checklist
   ========================================================================== */

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--sand);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 26px;
}

.check-mark {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(242, 130, 90, 0.32);
}

.check-item h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.check-item p {
  font-size: 14px;
  color: var(--ink-soft);
}

.check-prompt {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  color: var(--primary-deep);
  margin-top: 24px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 109, 176, 0.08);
  color: var(--primary);
}

.icon-badge.teal { background: rgba(56, 193, 165, 0.14); color: var(--secondary-dark); }
.icon-badge.coral { background: rgba(242, 130, 90, 0.14); color: var(--accent); }

/* ==========================================================================
   Timeline (search evolution)
   ========================================================================== */

.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 32px;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  color: var(--secondary-dark);
  opacity: 0.7;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}

.timeline-card.is-past { opacity: 0.55; }

.timeline-card.is-now {
  background: var(--primary-deep);
  color: var(--white);
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.timeline-era {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 12px;
}
.timeline-card.is-now .timeline-era { color: #8FE9D3; }

.timeline-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.timeline-card.is-now h4 { color: var(--white); }

.timeline-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.timeline-card.is-now p { color: rgba(255,255,255,0.82); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.stat-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.stat-card {
  background: var(--white);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}

.stat-card .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.stat-card .label {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.stat-card .source {
  font-size: 11.5px;
  color: var(--ink-faint);
}

/* ==========================================================================
   Pillars (GBP / review / web)
   ========================================================================== */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  border: 2px solid var(--line);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-card.is-key {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(242, 130, 90, 0.14);
}

.pillar-tag {
  position: absolute;
  top: -14px;
  left: 26px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--ink-faint);
  color: var(--white);
}

.pillar-card.is-key .pillar-tag { background: var(--accent); }
.pillar-card.is-hot .pillar-tag { background: var(--primary); }

.pillar-card h3 {
  font-size: 19px;
  margin: 16px 0 6px;
}

.pillar-card .pillar-en {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--ink-soft);
}

.point-list {
  background: var(--primary-deep);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.point-list .point {
  display: flex;
  gap: 16px;
  color: var(--white);
}

.point-list .point-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.point-list .point h4 {
  color: var(--white);
  font-size: 15.5px;
  margin-bottom: 6px;
}

.point-list .point p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

/* ==========================================================================
   About / Brand story (ちょーでーとは)
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.about-visual .ring {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, #EAF6F3 0%, transparent 70%);
  z-index: 0;
}

.about-visual img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

.word-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  max-width: 260px;
  margin-bottom: 24px;
}

.word-card .word-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 4px;
}

.word-card .word-en {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.about-copy p:last-child { margin-bottom: 0; }

.about-operator {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-faint);
}

.about-operator a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.about-copy strong {
  color: var(--primary-dark);
}

/* ==========================================================================
   Industries (photo placeholders)
   ========================================================================== */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.industry-card {
  text-align: center;
}

.industry-illust {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover .industry-illust {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.industry-illust img {
  width: 68%;
  height: 68%;
}

.industry-card p {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ==========================================================================
   Feature groups (Google / クチコミ / AI)
   ========================================================================== */

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.feature-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.feature-tab.is-active,
.feature-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(19, 109, 176, 0.06);
}

.feature-panels {
  display: grid;
  gap: 28px;
}

.feature-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.feature-panel.is-active {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.feature-panel-head .icon-badge {
  margin-bottom: 18px;
}

.feature-panel-head h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-panel-head p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--sand);
  padding: 14px 16px;
  border-radius: 12px;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary-dark);
}

.feature-list li .soon {
  display: inline-block;
  font-size: 11px;
  color: var(--white);
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   Flow
   ========================================================================== */

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 0 16px;
  text-align: center;
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(19, 109, 176, 0.28);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 60%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
}

.flow-step h4 {
  font-size: 15.5px;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.price-bonus {
  max-width: 620px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  background: var(--white);
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius);
  padding: 20px 28px;
}

.price-bonus-img {
  flex-shrink: 0;
  width: 92px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(10, 58, 92, 0.12));
}

.price-bonus span:last-child {
  flex: 1;
  min-width: 140px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.price-bonus strong {
  color: var(--accent);
  margin-right: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 2px solid var(--line);
  display: flex;
  flex-direction: column;
}

.price-card.is-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(180deg, #F4FAF8, var(--white) 30%);
}

.price-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(100deg, var(--secondary), var(--primary));
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.price-card .price-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.price-rows {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px dashed var(--line);
}

.price-footnote {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: -14px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-row .row-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.price-row .row-value {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 26px;
  color: var(--primary-dark);
  font-weight: 700;
}

.price-row .row-value small {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  margin-left: 2px;
}

.price-card .price-includes {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card .price-includes li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.price-card .price-includes svg {
  flex-shrink: 0;
  color: var(--secondary-dark);
  margin-top: 3px;
}

.pricing-note {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.pricing-note h4 {
  font-size: 14.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-note ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.pricing-note li {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Competitor comparison
   ========================================================================== */

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th,
.compare-table td {
  padding: 9px 10px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table .compare-feature {
  text-align: left;
  width: 30%;
}

.compare-table .compare-caption {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
}

.compare-table td:first-child {
  text-align: left;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.compare-table thead th {
  vertical-align: bottom;
  padding-top: 16px;
}

.compare-name {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.compare-price {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: var(--ink-soft);
}

.compare-price small {
  font-size: 10.5px;
  font-weight: 700;
}

.compare-table th.is-featured,
.compare-table td.is-featured {
  background: rgba(19, 109, 176, 0.06);
  position: relative;
}

.compare-table th.is-featured {
  border-radius: 16px 16px 0 0;
}

.compare-table tr:last-child td.is-featured {
  border-radius: 0 0 16px 16px;
}

.compare-table th.is-featured .compare-name,
.compare-table th.is-featured .compare-price {
  color: var(--primary-dark);
}

.compare-ribbon {
  display: inline-block;
  margin-bottom: 5px;
  background: linear-gradient(100deg, var(--secondary), var(--primary));
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.compare-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.compare-status svg,
.compare-legend svg {
  width: 11px;
  height: 11px;
}

.compare-status.is-yes { background: rgba(56, 193, 165, 0.16); color: var(--secondary-dark); }
.compare-status.is-partial { background: rgba(242, 130, 90, 0.16); color: var(--accent); }
.compare-status.is-no { background: var(--sand-deep); color: var(--ink-faint); }

.compare-table mark {
  background: rgba(242, 130, 90, 0.35);
  color: var(--primary-dark);
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 900;
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.compare-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 700;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}

.faq-question .q-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(19, 109, 176, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.faq-question .chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--ink-faint);
}

.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer div {
  padding: 0 26px 24px 76px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--white);
  margin-bottom: 18px;
}

.contact-info p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.contact-points {
  display: grid;
  gap: 20px;
}

.contact-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-points .icon-badge {
  background: rgba(255,255,255,0.12);
  color: #8FE9D3;
  flex-shrink: 0;
}

.contact-points h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-points p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0;
}

.contact-points p a {
  color: #8FE9D3;
  font-weight: 700;
  font-size: 15px;
}

.contact-points p a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-tag {
  font-size: 10.5px;
  color: var(--white);
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.opt-tag {
  font-size: 10.5px;
  color: var(--ink-faint);
  background: var(--sand-deep);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(19, 109, 176, 0.1);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.form-consent input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.form-consent a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
}

.form-status.is-success {
  display: block;
  background: rgba(56, 193, 165, 0.14);
  color: var(--secondary-dark);
}

.form-status.is-error {
  display: block;
  background: rgba(242, 130, 90, 0.14);
  color: #C1512E;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand img { height: 30px; }

.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.9;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
}

.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 14px 20px;
  box-shadow: 0 -8px 24px rgba(10, 58, 92, 0.12);
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-panel.is-active { grid-template-columns: 1fr; }
  .feature-list li { font-size: 13px; padding: 12px 14px; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .hero-audience { font-size: 11px; padding: 6px 14px; }
  .check-item { padding: 16px 18px; gap: 12px; }
  .check-mark { width: 28px; height: 28px; }
  .check-item h3 { font-size: 15px; margin-bottom: 4px; }
  .check-item p { font-size: 13px; }
  .check-grid { gap: 12px; }

  .main-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--white);
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 199;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }

  .nav-toggle { display: flex; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .header-cta .btn { display: none; }

  .timeline { grid-template-columns: 1fr; gap: 10px; }
  .timeline-arrow { justify-content: center; padding: 0; }
  .timeline-arrow svg { transform: rotate(90deg); }
  .timeline-card.is-now { transform: none; }
  .timeline-card { padding: 16px 18px; }
  .timeline-era { margin-bottom: 4px; }
  .timeline-card h4 { font-size: 15px; margin-bottom: 4px; }
  .timeline-card p { font-size: 12.5px; }

  .pillar-grid { grid-template-columns: 1fr; gap: 14px; }
  .pillar-card { padding: 22px 20px; }
  .pillar-card p { font-size: 13px; }
  .point-list { grid-template-columns: 1fr; padding: 22px; gap: 16px; }
  .point-list .point h4 { font-size: 14.5px; }
  .point-list .point p { font-size: 12.5px; }
  .stat-grid { grid-template-columns: 1fr; }

  .flow-grid { grid-template-columns: 1fr; gap: 28px; }
  .flow-step::after { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .trust-item { border-right: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.16); }

  .footer-top { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }

  .sticky-cta { display: flex; gap: 12px; }
  .sticky-cta.is-visible { transform: translateY(0); }
  body { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: clamp(26px, 7.5vw, 34px); }
  .section-head { margin-bottom: 40px; }
  .btn-lg { padding: 16px 22px; font-size: 15px; }
  .hero-actions { gap: 12px; }
  .check-item { flex-direction: column; gap: 8px; }
  .check-mark { margin-bottom: 2px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 28px 22px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 10px; }
  .hero { padding: 88px 0 40px; }
}
