/* ============================================
   RESET & BASE
============================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
  --bg: #f8f7f3;
  --bg-soft: #f0eee8;
  --paper: #ffffff;
  --ink: #0e1b3d;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --line: #e2e0d8;

  --primary: #1e3a8a;       /* deep navy */
  --primary-700: #1e40af;
  --primary-500: #3b82f6;   /* bright blue */
  --primary-100: #dbeafe;

  --accent: #ff6b35;        /* coral/orange */
  --accent-soft: #ffe4d6;
  --yellow: #fbbf24;
  --yellow-soft: #fef3c7;
  --mint: #10b981;
  --mint-soft: #d1fae5;
  --pink: #f472b6;
  --pink-soft: #fce7f3;

  --shadow-sm: 0 2px 8px rgba(15, 23, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 61, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 61, 0.12);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, .display {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.serif { font-family: "Fraunces", serif; font-weight: 900; font-style: italic; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Fraunces", serif; font-style: italic; font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--primary);
  text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--primary); border-radius: 2px;
}
h2.section-title {
  font-size: clamp(28px, 4.5vw, 52px);
  margin-top: 14px;
  margin-bottom: 16px;
}
.section-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.85;
}

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

/* ============================================
   PAPER / GRID BACKGROUND
============================================ */
.paper-bg {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 23, 61, 0.07) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ============================================
   NAVBAR
============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: backdrop-filter 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(248, 247, 243, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900; font-size: 22px; color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: grid; place-items: center;
  position: relative;
}
.nav-logo-mark::before {
  content: ""; width: 16px; height: 16px;
  border: 3px solid #fff; border-radius: 50%;
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(-45deg);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-cta-arrow {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

/* ============================================
   HERO — clean, centered, typography-focused
   No overlapping icons / text / shapes
============================================ */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

/* Subtle dot grid that fades at edges — purely background, never overlaps content */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 23, 61, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, #000 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, #000 80%);
  pointer-events: none;
  opacity: 0.7;
}

/* Soft top glow — pure atmosphere, no overlap */
.hero::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.15), transparent 60%);
  pointer-events: none;
}

/* Corner accent shapes — placed in extreme corners, far from any text */
.hero-corner {
  position: absolute;
  pointer-events: none;
}
.hero-corner-tl {
  top: 110px; left: 4%;
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.9;
  animation: cornerFloat 7s ease-in-out infinite;
}
.hero-corner-tr {
  top: 130px; right: 5%;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 12px;
  transform: rotate(-12deg);
  animation: cornerFloat 8s ease-in-out infinite reverse;
}
.hero-corner-bl {
  bottom: 60px; left: 6%;
  width: 36px; height: 36px;
  border: 4px solid var(--mint);
  border-radius: 50%;
  animation: cornerFloat 9s ease-in-out infinite;
}
.hero-corner-br {
  bottom: 80px; right: 6%;
  width: 48px; height: 12px;
  background-image: radial-gradient(circle, var(--primary) 2.5px, transparent 3.5px);
  background-size: 12px 12px;
  animation: cornerFloat 10s ease-in-out infinite reverse;
}

@keyframes cornerFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}
.hero-corner-tr { animation-name: cornerFloatRot; }
@keyframes cornerFloatRot {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); }
  50% { transform: translate(0, -10px) rotate(0deg); }
}

@media (max-width: 700px) {
  .hero-corner-tl { width: 36px; height: 36px; }
  .hero-corner-tr { width: 28px; height: 28px; }
  .hero-corner-bl { width: 24px; height: 24px; border-width: 3px; }
  .hero-corner-br { width: 32px; height: 8px; background-size: 8px 8px; }
}

.hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeUp 0.7s 0.05s forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  position: relative;
}
.hero-badge-dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--mint);
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-size: clamp(26px, 4.4vw, 54px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 32px 0 28px;
  font-weight: 900;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLine 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line-1 { animation-delay: 0.15s; }
.hero h1 .line-2 { animation-delay: 0.4s; }
@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

/* On narrow phones, allow wrapping but keep size manageable */
@media (max-width: 420px) {
  .hero h1 { font-size: clamp(22px, 6vw, 28px); }
  .hero h1 .line { white-space: normal; }
}

.hero h1 .mark {
  position: relative;
  display: inline-block;
  color: var(--primary);
  white-space: nowrap;
}
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: -0.05em; right: -0.05em;
  bottom: 0.1em;
  height: 0.24em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightIn 0.7s 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes highlightIn { to { transform: scaleX(1); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 2;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-sub strong { color: var(--primary); }

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--primary-700);
  box-shadow: 0 16px 32px rgba(30, 58, 138, 0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  border: 1.5px solid var(--line);
  transition: transform 0.25s, border-color 0.25s, color 0.25s;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.25s;
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* Stats — clean horizontal divider row */
.hero-stats {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: "";
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--line);
}
.hero-stat-num {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px; font-weight: 700;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hero { padding-top: 110px; padding-bottom: 80px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .hero-stat { padding: 0; }
  .hero-stat + .hero-stat::before {
    left: 10%; right: 10%; top: 0;
    width: auto; height: 1px;
  }
  .hero-stat + .hero-stat { padding-top: 16px; }
}

/* ============================================
   MARQUEE
============================================ */
.marquee-section {
  padding: 24px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   PROBLEM SECTION
============================================ */
.problem-section {
  background: var(--bg);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex; flex-direction: column; align-items: center;
}
.section-header.left {
  text-align: left; align-items: flex-start;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.problem-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-num {
  font-family: "Fraunces", serif;
  font-weight: 900; font-style: italic;
  font-size: 56px;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 12px;
}
.problem-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.problem-conclusion {
  margin-top: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.problem-conclusion-text {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}
.problem-conclusion-text strong {
  color: var(--yellow);
}
.problem-arrow-svg {
  width: 60px; height: 30px; flex-shrink: 0;
}
.problem-pill {
  background: var(--accent);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
}

/* ============================================
   SOLUTION SECTION
============================================ */
.solution-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
}
.solution-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.solution-header h2 {
  font-size: clamp(28px, 4.5vw, 52px);
  margin: 14px 0 20px;
}
.solution-header h2 .strike {
  position: relative;
  color: var(--ink-muted);
}
.solution-header h2 .strike::after {
  content: ""; position: absolute;
  left: -4px; right: -4px; top: 52%;
  height: 3px; background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.solution-header h2.in-view .strike::after { transform: scaleX(1); }
.solution-header h2 .highlight {
  color: var(--primary);
  position: relative;
}
.solution-header h2 .highlight::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.solution-header h2.in-view .highlight::after { transform: scaleX(1); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; }
}

.solution-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.solution-tag {
  display: inline-flex;
  font-family: "Fraunces", serif;
  font-weight: 700; font-style: italic;
  font-size: 12px;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.solution-card:nth-child(2) .solution-tag { background: var(--accent); }
.solution-card:nth-child(3) .solution-tag { background: var(--mint); }

.solution-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 24px;
}

.solution-visual {
  height: 160px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Visual 1: video player */
.sv-video {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.sv-video-bar {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}
.sv-video-bar::before {
  content: ""; position: absolute; inset: 0;
  background: var(--yellow);
  transform-origin: left;
  animation: progress 4s ease-out infinite;
}
@keyframes progress {
  0% { transform: scaleX(0); }
  90%, 100% { transform: scaleX(1); }
}
.sv-video-icon {
  width: 56px; height: 56px;
  background: #fff; border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  animation: bobble 2s ease-in-out infinite;
}
.sv-video-icon::after {
  content: ""; width: 0; height: 0;
  border-left: 14px solid var(--primary);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
@keyframes bobble {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Visual 2: language */
.sv-lang {
  background: var(--accent-soft);
  flex-direction: column; gap: 10px; padding: 20px;
}
.sv-lang-row {
  display: flex; gap: 8px; align-items: center;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: langIn 4s infinite;
}
.sv-lang-row:nth-child(1) { animation-delay: 0s; }
.sv-lang-row:nth-child(2) { animation-delay: 0.4s; align-self: center; }
.sv-lang-row:nth-child(3) { animation-delay: 0.8s; align-self: flex-end; }
@keyframes langIn {
  0%, 80%, 100% { opacity: 0; transform: translateY(8px); }
  10%, 70% { opacity: 1; transform: translateY(0); }
}
.sv-lang-flag {
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px; color: #fff; font-weight: 900;
  flex-shrink: 0;
}

/* Visual 3: progress */
.sv-progress {
  background: var(--mint-soft);
  padding: 24px; flex-direction: column; gap: 8px;
  align-items: stretch; justify-content: center;
}
.sv-progress-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  color: var(--ink-soft);
}
.sv-progress-bar {
  flex: 1; height: 8px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.sv-progress-fill {
  position: absolute; inset: 0;
  background: var(--mint);
  border-radius: 4px;
  transform-origin: left;
  transform: scaleX(0);
  animation: fillBar 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.sv-progress-row:nth-child(1) .sv-progress-fill { --w: 0.95; animation-delay: 0s; }
.sv-progress-row:nth-child(2) .sv-progress-fill { --w: 0.78; animation-delay: 0.3s; }
.sv-progress-row:nth-child(3) .sv-progress-fill { --w: 0.85; animation-delay: 0.6s; }
@keyframes fillBar {
  0% { transform: scaleX(0); }
  60%, 100% { transform: scaleX(var(--w, 0.8)); }
}

/* ============================================
   ROI SECTION
============================================ */
.roi-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.roi-section::before {
  content: ""; position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 60%);
  top: -300px; left: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.roi-section::after {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 60%);
  bottom: -200px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.roi-section .eyebrow { color: var(--yellow); }
.roi-section .eyebrow::before { background: var(--yellow); }
.roi-section h2 { color: #fff; }
.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .roi-inner { grid-template-columns: 1fr; gap: 40px; }
}
.roi-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 32px;
  height: 240px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.chart-bar-wrap {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  height: 100%;
}
.chart-bar-col {
  flex: 1; width: 100%;
  display: flex; align-items: flex-end;
  position: relative;
}
.chart-bar {
  width: 100%;
  border-radius: 12px 12px 0 0;
  position: relative;
  height: 0;
  transition: height 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chart-bar.before {
  background: linear-gradient(180deg, var(--accent) 0%, #d44a1c 100%);
}
.chart-bar.after {
  background: linear-gradient(180deg, var(--mint) 0%, #059669 100%);
}
.chart-bar-value {
  position: absolute; top: -32px; left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 22px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s 1s;
}
.in-view .chart-bar-value { opacity: 1; }
.chart-bar-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.chart-arrow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  opacity: 0;
  transition: opacity 0.6s 1.2s, transform 0.6s 1.2s;
}
.in-view .chart-arrow {
  opacity: 1;
}
.chart-arrow::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--accent);
}

.roi-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
}
.roi-content h2 .num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--yellow);
  font-size: 1.3em;
}

.roi-content p {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  margin-bottom: 28px;
}

.roi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.roi-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.roi-stat-num {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
}
.roi-stat-num .unit {
  font-size: 18px;
  color: #fff;
  margin-left: 4px;
  font-style: normal;
}
.roi-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  font-weight: 500;
}

.roi-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--yellow);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   FLOW SECTION (LEGAL EVIDENCE)
============================================ */
.flow-section {
  background: var(--bg);
  position: relative;
}
.flow-intro {
  background: var(--primary-100);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 64px;
  display: flex; gap: 16px; align-items: flex-start;
}
.flow-intro-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
  display: grid; place-items: center;
  position: relative;
}
.flow-intro-icon::before {
  content: ""; width: 12px; height: 12px;
  border: 2px solid #fff; border-radius: 50%;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.flow-intro h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.flow-intro p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.flow-intro p strong { color: var(--ink); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 900px) {
  .flow-steps { grid-template-columns: 1fr; gap: 24px; }
}

.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.flow-step.goal {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.flow-step.goal h4 { color: #fff; }
.flow-step.goal p { color: rgba(255,255,255,0.8); }

.flow-step-tag {
  font-family: "Fraunces", serif;
  font-weight: 700; font-style: italic;
  font-size: 11px;
  background: var(--bg-soft);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.flow-step.goal .flow-step-tag {
  background: var(--accent);
  color: #fff;
}
.flow-step-icon {
  width: 64px; height: 64px;
  background: var(--bg-soft);
  border-radius: 16px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  position: relative;
}
.flow-step.goal .flow-step-icon {
  background: rgba(255,255,255,0.15);
}
.flow-step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.flow-arrow {
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
}
.flow-arrow::before {
  content: ""; width: 0; height: 0;
  border-left: 6px solid var(--ink-soft);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  margin-left: 2px;
}
@media (max-width: 900px) {
  .flow-arrow {
    right: 50%; top: auto; bottom: -22px;
    transform: translateX(50%) rotate(90deg);
  }
}

.flow-conclusion {
  margin-top: 40px;
  text-align: center;
  display: inline-flex;
  align-items: center; gap: 12px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}
.flow-conclusion-wrap { text-align: center; }
.flow-conclusion-check {
  width: 20px; height: 20px;
  background: var(--mint);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
}
.flow-conclusion-check::after {
  content: ""; width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: -2px;
}

/* ============================================
   COMPARE SECTION (Before/After for foreign staff)
============================================ */
.compare-section {
  background: var(--bg-soft);
  position: relative;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--line);
}
.compare-card.before {
  background: var(--bg);
  border-color: rgba(255, 107, 53, 0.2);
}
.compare-card.after {
  background: linear-gradient(180deg, #fff, var(--primary-100));
  border-color: var(--primary);
}
.compare-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed var(--line);
}
.compare-title-tag {
  font-family: "Fraunces", serif;
  font-weight: 700; font-style: italic;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-muted);
  margin-left: auto;
}
.compare-card.after .compare-title-tag {
  background: var(--mint);
  color: #fff;
}
.compare-card.before .compare-title-tag {
  background: var(--accent);
  color: #fff;
}

.compare-rows { display: flex; flex-direction: column; gap: 16px; }
.compare-row {
  display: flex; gap: 14px;
  align-items: flex-start;
}
.compare-row-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-card.after .compare-row-label {
  background: var(--primary);
  color: #fff;
}
.compare-row-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.compare-card.after .compare-row-text { color: var(--ink); }

.compare-result {
  margin-top: 28px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.compare-card.after .compare-result {
  background: var(--primary);
  color: #fff;
}

.compare-arrow {
  display: grid; place-items: center;
  align-self: center;
}
.compare-arrow-circle {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(30, 58, 138, 0.25);
  animation: arrowPulse 2s ease-in-out infinite;
}
.compare-arrow-circle::after {
  content: ""; width: 0; height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
}
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@media (max-width: 900px) {
  .compare-arrow-circle { transform: rotate(90deg); }
  @keyframes arrowPulse {
    0%, 100% { transform: rotate(90deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.08); }
  }
}

/* ============================================
   RECOMMENDED LIST
============================================ */
.recommend-section {
  background: var(--bg);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .recommend-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .recommend-grid { grid-template-columns: 1fr; }
}

.recommend-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.recommend-card.priority {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fff, var(--accent-soft) 200%);
}
.recommend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.recommend-card.priority:hover { border-color: var(--accent); }

.recommend-priority-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 0 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.recommend-icon {
  width: 56px; height: 56px;
  background: var(--bg-soft);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.recommend-card.priority .recommend-icon {
  background: var(--accent-soft);
}
.recommend-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}
.recommend-risk {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.recommend-risk-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.recommend-card:not(.priority) .recommend-risk { color: var(--ink-muted); }
.recommend-card:not(.priority) .recommend-risk-dot { background: var(--ink-muted); }

/* ============================================
   WHY MIREAL
============================================ */
.why-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } }
.why-reasons {
  display: flex; flex-direction: column; gap: 20px;
}
.why-reason {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  transition: transform 0.4s, box-shadow 0.4s;
}
.why-reason:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.why-reason-num {
  font-family: "Fraunces", serif;
  font-weight: 900; font-style: italic;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.why-reason h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.why-reason p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.why-reason p strong { color: var(--accent); }

/* Cost stack visualization */
.cost-viz {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.cost-viz-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.cost-viz-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.cost-stack {
  display: flex; flex-direction: column;
  gap: 6px;
}
.cost-block {
  height: 56px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cost-block.full { background: var(--ink-soft); }
.cost-block.cut {
  background: var(--bg-soft);
  color: var(--ink-muted);
  border: 1px dashed var(--line);
  position: relative;
}
.cost-block.cut::after {
  content: "Cost Cut";
  position: absolute;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 10px;
  color: var(--accent);
}
.cost-block.compact {
  height: 28px; font-size: 10px;
  background: var(--mint);
}
.cost-block.major-cut {
  background: var(--bg-soft);
  color: var(--ink-muted);
  height: 56px;
  position: relative;
  border: 1px dashed var(--line);
}
.cost-block.major-cut::after {
  content: "90% Cut";
  position: absolute;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 900;
  color: var(--accent);
}
.cost-block.template { background: var(--primary); height: 18px; font-size: 0; }
.cost-arrow-svg {
  width: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
}
.cost-stack-label {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.cost-stack-label.highlight { color: var(--primary); font-weight: 900; }

/* ============================================
   PRICING
============================================ */
.pricing-section {
  background: var(--bg);
  position: relative;
}
.pricing-table {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-row {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.pricing-row:hover:not(.pricing-header) { background: var(--bg-soft); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.recommended {
  background: linear-gradient(90deg, var(--primary-100), transparent 80%);
  position: relative;
}
.pricing-row.recommended::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--primary);
}
.pricing-row.pricing-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-bottom: none;
}
.pricing-row.pricing-header > div {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .pricing-row { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .pricing-row.pricing-header { display: none; }
}

.pricing-name {
  font-size: 20px;
  font-weight: 900;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.pricing-name-recommend {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 11px;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.pricing-detail {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.pricing-price {
  text-align: right;
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--ink);
}
.pricing-price .yen {
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
.pricing-price.large { font-size: 36px; color: var(--primary); }
@media (max-width: 700px) {
  .pricing-price { text-align: left; }
}

.pricing-notes {
  margin-top: 24px;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-muted);
}
.pricing-note-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.pricing-note-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* ============================================
   IMPLEMENTATION STEPS
============================================ */
.steps-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
}
.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .steps-timeline { grid-template-columns: 1fr; }
}
.steps-line {
  position: absolute;
  top: 36px; left: 5%; right: 5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.steps-line::before {
  content: ""; position: absolute; inset: 0;
  background: var(--primary);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.in-view .steps-line::before { transform: scaleX(1); }
@media (max-width: 900px) {
  .steps-line { display: none; }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 900; font-style: italic;
  font-size: 28px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}
.in-view .step-circle {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.step-item:nth-child(2) .step-circle { transition-delay: 0.2s; }
.step-item:nth-child(3) .step-circle { transition-delay: 0.4s; }
.step-item:nth-child(4) .step-circle { transition-delay: 0.6s; }
.step-item:nth-child(5) .step-circle { transition-delay: 0.8s; }

.step-item.final .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  position: relative;
}
.step-item.final .step-circle::after {
  content: "";
  width: 28px; height: 28px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 30% 60%, 0 60%);
  display: block;
  position: absolute;
}
.step-item.final .step-circle .step-num { display: none; }

.step-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.step-time {
  margin-top: 10px;
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-shape-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent 60%);
  top: -100px; left: -100px;
  animation: floatBig 12s ease-in-out infinite;
}
.cta-shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 60%);
  bottom: -200px; right: -100px;
  animation: floatBig 14s ease-in-out infinite reverse;
}
@keyframes floatBig {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
}

.cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ""; width: 32px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
}
.cta-section h2 .accent {
  color: var(--yellow);
  font-family: "Fraunces", serif;
  font-style: italic;
}
.cta-section p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent);
  color: #fff;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
  transition: all 0.3s;
}
.cta-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
  background: #ff5722;
}
.cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) {
  .cta-features { grid-template-columns: 1fr; }
}
.cta-feature {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
}
.cta-feature-icon {
  width: 40px; height: 40px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-feature-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  line-height: 1.5;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 40px var(--pad) 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: grid; place-items: center;
  position: relative;
}
.footer-logo-mark::before {
  content: ""; width: 14px; height: 14px;
  border: 2px solid #fff; border-radius: 50%;
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(-45deg);
}
.footer-brand-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.footer-meta {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.counter {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE TWEAKS
============================================ */
@media (max-width: 900px) {
  .hero { padding-top: 110px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  .nav-cta-text-long { display: none; }
}
@media (max-width: 600px) {
  .problem-conclusion { padding: 28px; flex-direction: column; align-items: flex-start; }
  .problem-arrow-svg { transform: rotate(90deg); }
  .roi-stats { grid-template-columns: 1fr; }
  .pricing-row { padding: 20px; }
}
