:root {
  --primary: #FF2D9A;
  --primary-dark: #D91A7A;
  --primary-light: #FF6DB8;
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;
  --accent-green: #10B981;
  --bg: #FAFAFA;
  --bg-hero: #0D0D1A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* === Gradient Text === */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-dark {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 700; border-radius: 50px; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); cursor: pointer; text-align: center; border: none; }
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(255,45,154,0.35); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 28px rgba(255,45,154,0.45); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 8px 24px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; letter-spacing: 0.02em; }

/* === Header === */
.header { position: fixed; top: 0; left: 0; right: 0; background: rgba(13,13,26,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 64px; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--white); text-decoration: none; letter-spacing: -0.03em; }
.header-nav { display: flex; gap: 28px; }
.nav-link { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; font-weight: 600; transition: color 0.2s; }
.nav-link:hover { color: var(--white); }
.header .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.25); font-size: 0.82rem; padding: 6px 20px; }
.header .btn-outline:hover { background: var(--white); color: var(--gray-900); border-color: var(--white); }

/* === Hero === */
.hero { position: relative; background: var(--bg-hero); padding: 140px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255,45,154,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 80% 40%, rgba(139,92,246,0.1) 0%, transparent 50%), radial-gradient(ellipse 50% 40% at 60% 80%, rgba(59,130,246,0.06) 0%, transparent 50%); pointer-events: none; }

/* Hero Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; opacity: 0.3; }
.p1 { width: 4px; height: 4px; background: var(--primary-light); top: 20%; left: 15%; animation: drift 8s ease-in-out infinite; }
.p2 { width: 3px; height: 3px; background: var(--accent-purple); top: 60%; left: 75%; animation: drift 12s ease-in-out infinite reverse; }
.p3 { width: 5px; height: 5px; background: var(--accent-blue); top: 30%; left: 85%; animation: drift 10s ease-in-out infinite 2s; }
.p4 { width: 3px; height: 3px; background: var(--primary); top: 75%; left: 25%; animation: drift 9s ease-in-out infinite 1s; }
.p5 { width: 4px; height: 4px; background: var(--accent-purple); top: 45%; left: 55%; animation: drift 11s ease-in-out infinite 3s; }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(20px, -30px); } 50% { transform: translate(-10px, 20px); } 75% { transform: translate(15px, 10px); } }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-text { text-align: left; }
.hero-badge { display: inline-block; background: rgba(255,45,154,0.1); color: var(--primary-light); font-size: 0.75rem; font-weight: 600; padding: 5px 16px; border-radius: 50px; border: 1px solid rgba(255,45,154,0.18); margin-bottom: 24px; letter-spacing: 0.06em; }
.hero-title { font-size: 2.8rem; font-weight: 900; line-height: 1.25; margin-bottom: 18px; color: var(--white); letter-spacing: -0.02em; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 32px; line-height: 1.9; font-weight: 400; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.hero-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* === Phone Mockup === */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone-mockup { position: relative; }
.phone-glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, rgba(255,45,154,0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(30px); pointer-events: none; z-index: 0; }
.phone-frame { width: 260px; background: #1a1a2e; border-radius: 32px; padding: 12px; box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); position: relative; z-index: 1; }
.phone-notch { width: 80px; height: 6px; background: #0D0D1A; border-radius: 3px; margin: 0 auto 12px; }
.phone-screen { background: #12121f; border-radius: 22px; padding: 0; min-height: 380px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.phone-screen-img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; display: block; }

.mock-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent-purple)); }
.mock-greeting { flex: 1; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.2); margin-bottom: 4px; }
.mock-line.light { background: rgba(255,255,255,0.08); }
.mock-line.w80 { width: 80%; } .mock-line.w70 { width: 70%; } .mock-line.w60 { width: 60%; } .mock-line.w50 { width: 50%; } .mock-line.w40 { width: 40%; }

.mock-stats { display: flex; gap: 8px; margin-bottom: 14px; }
.mock-stat { flex: 1; padding: 10px 6px; border-radius: 12px; text-align: center; }
.mock-stat.pink { background: rgba(255,45,154,0.12); }
.mock-stat.purple { background: rgba(139,92,246,0.12); }
.mock-stat.blue { background: rgba(59,130,246,0.12); }
.mock-stat-num { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.mock-stat-label { font-size: 0.55rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

.mock-card { background: rgba(255,255,255,0.04); border-radius: 12px; padding: 12px; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.05); }
.mock-card-row { display: flex; align-items: center; gap: 10px; }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot.pink { background: var(--primary); } .mock-dot.purple { background: var(--accent-purple); } .mock-dot.blue { background: var(--accent-blue); }
.mock-card-lines { flex: 1; }
.mock-badge { font-size: 0.55rem; background: rgba(255,45,154,0.2); color: var(--primary-light); padding: 2px 8px; border-radius: 6px; font-weight: 700; }
.mock-time { font-size: 0.6rem; color: rgba(255,255,255,0.4); font-weight: 600; }

.mock-nav { display: flex; justify-content: space-around; margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.mock-nav-item { color: rgba(255,255,255,0.25); padding: 4px; }
.mock-nav-item.active { color: var(--primary); }

/* Floating cards */
.float-card { position: absolute; background: rgba(30,30,50,0.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--white); font-weight: 600; white-space: nowrap; animation: float 3s ease-in-out infinite; z-index: 2; }
.float-ai { top: 30%; right: -30px; animation-delay: 0s; }
.float-schedule { bottom: 25%; left: -25px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* === Trust === */
.trust { padding: 44px 0; text-align: center; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trust-label { font-size: 0.78rem; color: var(--gray-400); letter-spacing: 0.06em; margin-bottom: 18px; font-weight: 600; }
.trust-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.trust-tag { background: var(--gray-50); color: var(--gray-500); font-size: 0.8rem; padding: 5px 14px; border-radius: 50px; border: 1px solid var(--gray-200); font-weight: 600; transition: all 0.2s; }
.trust-tag:hover { border-color: var(--primary); color: var(--primary); }

/* === Stats === */
.stats { padding: 72px 0; background: linear-gradient(135deg, #0D0D1A, #1a0a2e); position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,45,154,0.06) 0%, transparent 70%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 900; background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.stat-small { font-size: 1.6rem; }
.stat-unit { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 4px; }
.stat-desc { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent); }

/* === Section common === */
.section-label { text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.section-title { text-align: center; font-size: 2rem; font-weight: 900; line-height: 1.3; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-sub { text-align: center; font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 48px; }

/* === Features (row layout) === */
.features { padding: 100px 0; background: var(--white); }
.features .section-title { margin-bottom: 64px; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon-wrap.accent-purple { background: linear-gradient(135deg, var(--accent-purple), #A78BFA); }
.feature-icon-wrap.accent-blue { background: linear-gradient(135deg, var(--accent-blue), #60A5FA); }
.feature-icon-wrap.accent-green { background: linear-gradient(135deg, var(--accent-green), #34D399); }
.feature-icon { width: 22px; height: 22px; color: var(--white); }
.feature-h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.feature-p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.feature-list { list-style: none; }
.feature-list li { font-size: 0.88rem; color: var(--gray-700); padding: 4px 0; padding-left: 20px; position: relative; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: 0.5; }

/* === Feature Visuals === */
.feature-visual { display: flex; justify-content: center; }

/* Screenshot in feature visual */
.fv-screenshot { display: flex; justify-content: center; }
.fv-screenshot-img { width: 280px; border-radius: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05); }

/* Glass card effect */
.glass-card { background: rgba(249,250,251,0.8); backdrop-filter: blur(10px); }

/* Customer visual */
.fv-customer { display: flex; gap: 14px; align-items: flex-start; }
.fv-profile-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px; padding: 24px 20px; width: 240px; transition: all 0.3s; }
.fv-profile-card:hover { box-shadow: 0 12px 40px rgba(255,45,154,0.08); border-color: rgba(255,45,154,0.2); }
.fv-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent-purple)); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.fv-avatar-inner { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.fv-name { text-align: center; font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; }
.fv-tag-row { display: flex; justify-content: center; gap: 6px; margin-bottom: 16px; }
.fv-tag { font-size: 0.65rem; padding: 2px 10px; border-radius: 50px; font-weight: 700; }
.fv-tag.pink { background: rgba(255,45,154,0.1); color: var(--primary); }
.fv-tag.gray { background: var(--gray-100); color: var(--gray-500); }
.fv-bar-section { margin-bottom: 10px; }
.fv-bar-label { font-size: 0.68rem; color: var(--gray-400); margin-bottom: 4px; }
.fv-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.fv-bar-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 3px; }
.fv-bar-fill.purple { background: linear-gradient(90deg, var(--accent-purple), #A78BFA); }
.fv-bar-val { font-size: 0.68rem; color: var(--gray-700); font-weight: 700; text-align: right; margin-top: 2px; }

.fv-mini-cards { display: flex; flex-direction: column; gap: 10px; }
.fv-mini { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; padding: 14px 16px; text-align: center; width: 100px; transition: all 0.3s; }
.fv-mini:hover { border-color: var(--primary); transform: translateY(-2px); }
.fv-mini-num { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.fv-mini-label { font-size: 0.62rem; color: var(--gray-400); }

/* AI Chat visual */
.fv-chat { width: 100%; max-width: 360px; }
.fv-chat-bubble { border-radius: 16px; padding: 14px 16px; margin-bottom: 10px; font-size: 0.85rem; line-height: 1.7; }
.fv-chat-bubble.user { background: var(--primary); color: var(--white); margin-left: 40px; border-bottom-right-radius: 4px; }
.fv-chat-bubble.ai { background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-700); margin-right: 20px; border-bottom-left-radius: 4px; }
.fv-ai-label { display: flex; align-items: center; gap: 4px; font-size: 0.7rem; font-weight: 700; color: var(--accent-purple); margin-bottom: 6px; }
.fv-chat-actions { display: flex; gap: 8px; margin-left: 0; }
.fv-action { font-size: 0.72rem; color: var(--gray-400); background: var(--gray-50); border: 1px solid var(--gray-200); padding: 3px 12px; border-radius: 50px; cursor: default; transition: all 0.2s; }
.fv-action:hover { border-color: var(--primary); color: var(--primary); }

/* Calendar visual */
.fv-calendar { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px; padding: 20px; width: 100%; max-width: 340px; }
.fv-cal-header { font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; text-align: center; }
.fv-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.65rem; color: var(--gray-400); font-weight: 600; margin-bottom: 6px; }
.fv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.78rem; gap: 2px; margin-bottom: 14px; }
.fv-cal-grid span { padding: 6px 0; border-radius: 8px; }
.fv-cal-grid .dim { color: var(--gray-400); }
.fv-cal-grid .today { background: var(--primary); color: var(--white); font-weight: 700; }
.fv-cal-grid .has-event { background: rgba(255,45,154,0.08); color: var(--primary); font-weight: 600; }
.fv-cal-events { display: flex; flex-direction: column; gap: 6px; }
.fv-cal-event { font-size: 0.72rem; padding: 6px 10px; border-radius: 8px; font-weight: 600; }
.fv-cal-event.pink { background: rgba(255,45,154,0.08); color: var(--primary-dark); border-left: 3px solid var(--primary); }
.fv-cal-event.blue { background: rgba(59,130,246,0.08); color: #2563EB; border-left: 3px solid var(--accent-blue); }
.fv-cal-event.purple { background: rgba(139,92,246,0.08); color: #7C3AED; border-left: 3px solid var(--accent-purple); }

/* SNS visual */
.fv-sns { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 12px; }
.fv-post { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 16px; transition: all 0.3s; }
.fv-post:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.fv-post-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fv-post-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.8rem; }
.fv-post-name { font-size: 0.82rem; font-weight: 700; }
.fv-post-time { font-size: 0.65rem; color: var(--gray-400); }
.fv-post-body { font-size: 0.85rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 10px; }
.fv-post-footer { display: flex; gap: 16px; font-size: 0.72rem; color: var(--gray-400); }

/* === Industries === */
.industries { padding: 100px 0; background: var(--bg); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid var(--gray-200); transition: all 0.25s; }
.industry-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.05); border-color: var(--primary); }
.industry-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.industry-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* === Testimonials === */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 24px; transition: all 0.3s; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 4rem; line-height: 1; color: var(--gray-200); font-family: Georgia, serif; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: rgba(255,45,154,0.2); }
.testimonial-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.88rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.85rem; font-weight: 700; }
.testimonial-role { font-size: 0.72rem; color: var(--gray-400); }

/* === Pricing === */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.pricing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; display: flex; flex-direction: column; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.pricing-card.popular { border: 2px solid var(--primary); box-shadow: 0 8px 30px rgba(255,45,154,0.1); }
.pricing-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; letter-spacing: 0.05em; }
.pricing-name { font-size: 1rem; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--gray-900); margin-bottom: 4px; line-height: 1.2; }
.pricing-yen { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-right: 2px; }
.pricing-period { font-size: 0.85rem; font-weight: 600; color: var(--gray-400); }
.pricing-desc { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-features li { font-size: 0.85rem; padding: 6px 0; padding-left: 24px; position: relative; }
.pricing-features li.included { color: var(--gray-700); }
.pricing-features li.excluded { color: var(--gray-400); text-decoration: line-through; opacity: 0.6; }
.pricing-features li.included::before { content: ''; position: absolute; left: 0; top: 11px; width: 14px; height: 14px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%2310B981' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.pricing-features li.excluded::before { content: ''; position: absolute; left: 2px; top: 14px; width: 10px; height: 2px; background: var(--gray-400); border-radius: 1px; }
.btn-pricing { width: 100%; padding: 14px; font-size: 0.92rem; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--gray-400); }

/* === Comparison === */
.comparison { padding: 100px 0; background: var(--white); }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.88rem; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--gray-200); }
.comparison-table th { font-weight: 700; font-size: 0.85rem; color: var(--gray-500); padding-bottom: 18px; }
.comparison-table th.comp-highlight { color: var(--primary); font-size: 0.95rem; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--gray-700); }
.comparison-table td.comp-highlight { background: rgba(255,45,154,0.03); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr { transition: background 0.15s; }
.comparison-table tbody tr:hover { background: var(--gray-50); }
.comp-yes { color: var(--accent-green); font-weight: 700; font-size: 1.1rem; }
.comp-no { color: var(--gray-400); font-size: 1rem; }
.comp-partial { color: #F59E0B; font-size: 1rem; }

/* === How it works === */
.how { padding: 100px 0; background: var(--bg); }
.steps { display: flex; align-items: center; justify-content: center; gap: 24px; }
.step { text-align: center; flex: 1; max-width: 240px; }
.step-visual { position: relative; margin-bottom: 18px; }
.step-num { position: absolute; top: -8px; right: calc(50% - 52px); width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent-purple)); color: var(--white); font-size: 0.78rem; font-weight: 900; display: flex; align-items: center; justify-content: center; z-index: 1; }
.step-svg { width: 80px; height: 80px; display: block; margin: 0 auto; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }
.step-arrow { flex-shrink: 0; }

/* === FAQ === */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(255,45,154,0.3); }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 4px 16px rgba(255,45,154,0.08); }
.faq-question { padding: 18px 24px; font-size: 0.92rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; transition: color 0.2s; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--gray-400); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); color: var(--primary); }
.faq-item[open] .faq-question { color: var(--primary); }
.faq-answer { padding: 0 24px 18px; font-size: 0.88rem; color: var(--gray-500); line-height: 1.8; }

/* === Legal LP Section === */
.legal-lp { padding: 100px 0; background: var(--white); }
.legal-lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.legal-lp-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 28px; }
.legal-lp-card-title { font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.legal-lp-updated { font-size: 0.72rem; color: var(--gray-400); margin-bottom: 20px; }
.legal-lp-body { margin-bottom: 20px; }
.legal-lp-body > p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }
.legal-lp-detail { border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 8px; overflow: hidden; background: var(--white); }
.legal-lp-detail summary { padding: 12px 16px; font-size: 0.85rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; color: var(--gray-700); }
.legal-lp-detail summary::-webkit-details-marker { display: none; }
.legal-lp-detail summary::after { content: '+'; font-size: 1.1rem; color: var(--gray-400); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.legal-lp-detail[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.legal-lp-detail[open] summary { color: var(--primary); border-bottom: 1px solid var(--gray-200); }
.legal-lp-detail p { padding: 12px 16px; font-size: 0.82rem; color: var(--gray-500); line-height: 1.8; margin: 0; }
.legal-lp-detail ul { padding: 12px 16px 12px 32px; margin: 0; }
.legal-lp-detail ul li { font-size: 0.82rem; color: var(--gray-500); line-height: 2; }
.legal-lp-contact { padding-top: 16px; border-top: 1px solid var(--gray-200); }
.legal-lp-contact p { font-size: 0.75rem; color: var(--gray-400); margin: 0; }
.legal-lp-contact a { color: var(--primary); text-decoration: none; font-weight: 600; }
.legal-lp-contact a:hover { text-decoration: underline; }

/* === Multi-platform === */
.platforms { padding: 100px 0; background: var(--bg); }
.platform-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.platform-desc { font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; }
.platform-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.platform-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; padding: 10px 20px; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); transition: all 0.2s; }
.platform-badge:hover { border-color: var(--primary); color: var(--primary); }
.platform-badge svg { color: var(--primary); }

/* Device stack visual */
.device-stack { position: relative; display: flex; justify-content: center; }
.device-laptop { background: var(--gray-200); border-radius: 12px; padding: 8px 8px 0; width: 320px; }
.device-laptop-screen { background: var(--gray-900); border-radius: 8px 8px 0 0; padding: 12px; aspect-ratio: 16/10; }
.device-screen-content { display: flex; gap: 8px; height: 100%; }
.dsc-sidebar { width: 40px; background: rgba(255,255,255,0.06); border-radius: 6px; }
.dsc-main { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.dsc-bar { height: 16px; background: rgba(255,255,255,0.08); border-radius: 4px; }
.dsc-cards { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dsc-card { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; }
.device-phone { position: absolute; right: -20px; bottom: -10px; width: 80px; background: var(--gray-900); border-radius: 12px; padding: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); border: 2px solid var(--gray-200); }
.device-phone-screen { background: #12121f; border-radius: 8px; padding: 8px; min-height: 120px; }
.dps-header { height: 10px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 6px; }
.dps-card { height: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; margin-bottom: 4px; }
.dps-card.short { width: 70%; }

/* === CTA === */
.cta { padding: 120px 0; background: linear-gradient(135deg, var(--bg-hero) 0%, #1a0a2e 100%); text-align: center; position: relative; overflow: hidden; }
.cta-bg-pattern { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255,45,154,0.1) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 20% 20%, rgba(139,92,246,0.06) 0%, transparent 50%), radial-gradient(ellipse 40% 30% at 80% 30%, rgba(59,130,246,0.04) 0%, transparent 50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: 2.6rem; font-weight: 900; margin-bottom: 14px; color: var(--white); letter-spacing: -0.02em; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.45); margin-bottom: 36px; line-height: 1.8; }
.cta-note { margin-top: 16px; font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* === Footer === */
.footer { padding: 60px 0 30px; background: var(--bg-hero); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand {}
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-links h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 12px; letter-spacing: 0.04em; }
.footer-links a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.35); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; }

/* === Scroll Animations === */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* === Responsive === */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero { padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.92rem; }
  .btn-lg { padding: 14px 32px; font-size: 0.95rem; }
  .phone-frame { width: 220px; }
  .phone-screen { min-height: 320px; }
  .float-card { display: none; }
  .section-title { font-size: 1.55rem; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .feature-visual { order: -1; }
  .fv-customer { flex-direction: column; align-items: center; }
  .fv-mini-cards { flex-direction: row; gap: 10px; }
  .fv-profile-card { width: 100%; max-width: 280px; }
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps { flex-direction: column; gap: 20px; }
  .step-arrow { transform: rotate(90deg); }
  .cta-title { font-size: 1.6rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 24px; }
  .features, .industries, .how, .cta, .pricing, .testimonials, .comparison, .faq, .platforms, .legal-lp { padding: 72px 0; }
  .legal-lp-grid { grid-template-columns: 1fr; }
  .feature-row { margin-bottom: 56px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-divider { display: none; }
  .stat-number { font-size: 2rem; }
  .platform-inner { grid-template-columns: 1fr; }
  .platform-text .section-title { text-align: center; }
  .platform-desc { text-align: center; }
  .platform-badges { justify-content: center; }
  .device-stack { justify-content: center; }
  .device-laptop { width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.2rem; }
  .section-title { font-size: 2.2rem; }
  .cta-title { font-size: 2.8rem; }
}
