@charset "UTF-8";

/* ===== LP toC STYLES ===== */
/* Design inspired by nanoc-inc.co.jp & sr-kyoto-jyoseikin.com */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-toc {
  --navy: #0b1f3a;
  --navy-light: #1a3a5c;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #fafbfc;
  --gray-100: #f1f3f5;
  --gray-200: #e2e5e9;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --text: #1a1a2e;
  --text-sub: #5a5a6e;
  --accent: #e8963e;
  --accent-hover: #d4822e;
  --accent-pale: #fef5eb;
  --green: #2d9b6e;
  --green-pale: #eef8f3;

  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp-toc a { text-decoration: none; color: inherit; }
.lp-toc img { max-width: 100%; height: auto; display: block; }
.lp-toc ul { list-style: none; padding: 0; }

/* ===== UTILITY ===== */
.lp-toc .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.lp-toc .container-sm { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.lp-toc .section { padding: 120px 0; }
.lp-toc .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.lp-toc .section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.lp-toc .section-title-center {
  text-align: center;
}
.lp-toc .section-lead {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-top: 20px;
}
.lp-toc .divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 24px 0;
}
.lp-toc .divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCROLL ANIMATION ===== */
.lp-toc .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-toc .fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== HEADER ===== */
.lp-toc .lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.lp-toc .lp-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.lp-toc .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.lp-toc .logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.lp-toc .logo span { color: var(--accent); }
.lp-toc .header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-toc .header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
  position: relative;
}
.lp-toc .header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.lp-toc .header-nav a:hover { color: var(--navy); }
.lp-toc .header-nav a:hover::after { width: 100%; }
.lp-toc .btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.25s;
}
.lp-toc .btn-header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 150, 62, 0.3);
}

/* ===== HERO ===== */
.lp-toc .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lp-toc .hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,150,62,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.lp-toc .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lp-toc .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}
.lp-toc .hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 28px;
}
.lp-toc .hero-sub::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.lp-toc .hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.lp-toc .hero-title .accent { color: var(--accent); }
.lp-toc .hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 40px;
}
.lp-toc .hero-desc strong { color: rgba(255,255,255,0.9); font-weight: 700; }
.lp-toc .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-toc .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(232,150,62,0.35);
}
.lp-toc .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,150,62,0.45);
}
.lp-toc .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  padding: 18px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  transition: all 0.25s;
}
.lp-toc .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Hero Right - Stats */
.lp-toc .hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-toc .hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.lp-toc .hero-stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.lp-toc .hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.lp-toc .hero-stat-val {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lp-toc .hero-stat-val .unit {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}
.lp-toc .hero-stat-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* Scroll Indicator */
.lp-toc .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.lp-toc .scroll-indicator span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.lp-toc .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TRUST BAR ===== */
.lp-toc .trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}
.lp-toc .trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lp-toc .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.lp-toc .trust-icon {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== PROBLEM ===== */
.lp-toc #problem { background: var(--white); }
.lp-toc .problem-head {
  text-align: center;
  margin-bottom: 64px;
}
.lp-toc .problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.lp-toc .problem-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}
.lp-toc .problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}
.lp-toc .problem-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
}
.lp-toc .problem-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.lp-toc .problem-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ===== SOLUTION ===== */
.lp-toc #solution { background: var(--off-white); }
.lp-toc .solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-toc .solution-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.lp-toc .solution-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 100% 0%, rgba(232,150,62,0.15) 0%, transparent 50%);
}
.lp-toc .solution-visual-inner { position: relative; z-index: 1; }
.lp-toc .sv-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.lp-toc .sv-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-toc .sv-step:last-child { border-bottom: none; }
.lp-toc .sv-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.lp-toc .sv-step.active .sv-num {
  background: var(--accent);
  color: var(--white);
}
.lp-toc .sv-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.lp-toc .sv-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.lp-toc .sv-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-toc .sv-metric {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.lp-toc .sv-metric-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}
.lp-toc .sv-metric-val small {
  font-size: 14px;
  font-weight: 400;
}
.lp-toc .sv-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.lp-toc .solution-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}
.lp-toc .sp-item {
  display: flex;
  gap: 20px;
}
.lp-toc .sp-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.lp-toc .sp-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-toc .sp-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}

/* ===== FEATURES ===== */
.lp-toc #features { background: var(--white); }
.lp-toc .features-head {
  text-align: center;
  margin-bottom: 64px;
}
.lp-toc .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-toc .feat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
}
.lp-toc .feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-toc .feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.lp-toc .feat-card:hover::before { opacity: 1; }
.lp-toc .feat-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.lp-toc .feat-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.lp-toc .feat-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.5;
}
.lp-toc .feat-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ===== NUMBERS (Trust) ===== */
.lp-toc #numbers {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lp-toc .numbers-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(232,150,62,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.lp-toc .numbers-inner {
  position: relative;
  z-index: 1;
}
.lp-toc .numbers-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
}
.lp-toc .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.lp-toc .number-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-toc .number-item:last-child { border-right: none; }
.lp-toc .number-val {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.lp-toc .number-val .accent { color: var(--accent); }
.lp-toc .number-val small {
  font-size: 18px;
  font-weight: 500;
}
.lp-toc .number-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

/* ===== WORKS ===== */
.lp-toc #works { background: var(--off-white); }
.lp-toc .works-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.lp-toc .works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.lp-toc .work-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.35s;
}
.lp-toc .work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.lp-toc .work-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lp-toc .wt-1 { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.lp-toc .wt-2 { background: linear-gradient(135deg, #1a3a2a 0%, var(--green) 100%); }
.lp-toc .wt-3 { background: linear-gradient(135deg, #3a1a1a 0%, #c0392b 100%); }
.lp-toc .wt-4 { background: linear-gradient(135deg, #2a1a3a 0%, #8e44ad 100%); }
.lp-toc .work-thumb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lp-toc .work-thumb-content {
  position: relative;
  text-align: center;
  padding: 20px;
}
.lp-toc .work-cat {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.lp-toc .work-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}
.lp-toc .work-body {
  padding: 28px 32px;
}
.lp-toc .work-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.lp-toc .work-body p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}
.lp-toc .work-result {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-pale);
  border-radius: 10px;
  padding: 14px 18px;
}
.lp-toc .wr-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}
.lp-toc .wr-desc {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.lp-toc #process { background: var(--white); }
.lp-toc .process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.lp-toc .process-steps {
  display: flex;
  flex-direction: column;
}
.lp-toc .ps-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.lp-toc .ps-item:first-child { padding-top: 0; }
.lp-toc .ps-item:last-child { border-bottom: none; }
.lp-toc .ps-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.lp-toc .ps-num {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-400);
}
.lp-toc .ps-item.active .ps-num {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.lp-toc .ps-line {
  width: 1px;
  flex: 1;
  background: var(--gray-200);
  margin: 8px 0;
  min-height: 20px;
}
.lp-toc .ps-item:last-child .ps-line { display: none; }
.lp-toc .ps-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.lp-toc .ps-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
}
.lp-toc .ps-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ===== PRICE ===== */
.lp-toc #price { background: var(--off-white); }
.lp-toc .price-head {
  text-align: center;
  margin-bottom: 56px;
}
.lp-toc .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-toc .price-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px 28px;
  position: relative;
  transition: all 0.35s;
}
.lp-toc .price-card:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.lp-toc .price-card.featured {
  border-color: var(--accent);
  background: var(--navy);
}
.lp-toc .price-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.lp-toc .plan-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.lp-toc .price-card.featured .plan-label { color: rgba(255,255,255,0.35); }
.lp-toc .price-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}
.lp-toc .price-card.featured h3 { color: var(--white); }
.lp-toc .price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-toc .price-card.featured .price-amount { color: var(--white); }
.lp-toc .price-amount small {
  font-size: 14px;
  font-weight: 400;
}
.lp-toc .price-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 28px;
}
.lp-toc .price-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 24px;
}
.lp-toc .price-card.featured .price-divider { background: rgba(255,255,255,0.1); }
.lp-toc .price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-toc .price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-sub);
}
.lp-toc .price-card.featured .price-features li { color: rgba(255,255,255,0.6); }
.lp-toc .price-features .chk {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.lp-toc .price-card.featured .price-features .chk { color: var(--accent); }
.lp-toc .btn-plan {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  transition: all 0.25s;
}
.lp-toc .btn-plan-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
}
.lp-toc .btn-plan-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.lp-toc .btn-plan-fill {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,150,62,0.3);
}
.lp-toc .btn-plan-fill:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 28px rgba(232,150,62,0.4);
}

/* ===== FAQ ===== */
.lp-toc #faq { background: var(--white); }
.lp-toc .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.lp-toc .faq-list {
  display: flex;
  flex-direction: column;
}
.lp-toc .faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.lp-toc .faq-item:first-child { border-top: 1px solid var(--gray-200); }
.lp-toc .faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.lp-toc .faq-q:hover .faq-q-text { color: var(--accent); }
.lp-toc .faq-q-left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-toc .faq-q-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 3px;
  flex-shrink: 0;
}
.lp-toc .faq-q-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  transition: color 0.2s;
}
.lp-toc .faq-toggle {
  font-size: 22px;
  color: var(--gray-400);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.lp-toc .faq-a {
  padding: 0 0 24px 36px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  display: none;
}

/* ===== CTA ===== */
.lp-toc #cta {
  background: var(--navy);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lp-toc .cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,150,62,0.12) 0%, transparent 60%);
}
.lp-toc .cta-inner { position: relative; z-index: 1; }
.lp-toc .cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,150,62,0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.lp-toc .cta-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.lp-toc .cta-title .accent { color: var(--accent); }
.lp-toc .cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.lp-toc .cta-desc strong { color: rgba(255,255,255,0.85); }
.lp-toc .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  padding: 22px 48px;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(232,150,62,0.35);
}
.lp-toc .btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(232,150,62,0.45);
}
.lp-toc .cta-trust {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.lp-toc .cta-trust .sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ===== FOOTER ===== */
.lp-toc .lp-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.lp-toc .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-toc .footer-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.lp-toc .footer-logo span { color: var(--accent); }
.lp-toc .footer-links {
  display: flex;
  gap: 24px;
}
.lp-toc .footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.lp-toc .footer-links a:hover { color: rgba(255,255,255,0.7); }
.lp-toc .footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .lp-toc .header-nav { display: none; }
  .lp-toc .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-toc .hero { min-height: auto; padding-top: 72px; padding-bottom: 60px; }
  .lp-toc .hero-right { max-width: 400px; }
  .lp-toc .scroll-indicator { display: none; }
  .lp-toc .problem-grid { grid-template-columns: 1fr; }
  .lp-toc .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-toc .features-grid { grid-template-columns: 1fr; }
  .lp-toc .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-toc .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 20px 16px; }
  .lp-toc .number-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.08); }
  .lp-toc .number-item:nth-last-child(-n+2) { border-bottom: none; }
  .lp-toc .works-grid { grid-template-columns: 1fr; }
  .lp-toc .works-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lp-toc .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-toc .price-grid { grid-template-columns: 1fr; }
  .lp-toc .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-toc .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .lp-toc .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .lp-toc .container { padding: 0 20px; }
  .lp-toc .section { padding: 80px 0; }
  .lp-toc .trust-items { gap: 20px; }
  .lp-toc .cta-trust { flex-wrap: wrap; gap: 12px; }
  .lp-toc .hero-btns { flex-direction: column; }
  .lp-toc .hero-btns a { text-align: center; justify-content: center; }
}
