@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --primary: #1A2E4A;
  --primary-deep: #0F1D33;
  --primary-light: #2B4570;

  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-soft: #DBEAFE;
  --accent-glow: rgba(59, 130, 246, 0.12);
  --accent-glow-strong: rgba(59, 130, 246, 0.22);

  --warm: #F59E0B;
  --warm-soft: #FEF3C7;
  --success: #10B981;
  --success-soft: #D1FAE5;

  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #F1F5F9;
  --text-on-dark-secondary: #94A3B8;

  --bg: #FFFFFF;
  --bg-warm: #FAFAF8;
  --bg-cool: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  --dark-bg: #0C1222;
  --dark-surface: rgba(255, 255, 255, 0.04);
  --dark-border: rgba(255, 255, 255, 0.08);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --shadow-card-hover: 0 12px 24px -4px rgba(0, 0, 0, 0.1), 0 4px 8px -2px rgba(0, 0, 0, 0.06);

  --font-sans: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  --container: 1100px;
  --header-h: 72px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 450ms;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: 'palt';
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  letter-spacing: -0.015em;
}

p { color: var(--text-secondary); }

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.938rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3), 0 1px 2px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-dark {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
  backdrop-filter: none;
}

.btn-dark:hover {
  background: #1F2937;
  border-color: #1F2937;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.813rem;
  border-radius: var(--radius-md);
}

.btn-warm {
  background: var(--warm);
  color: #fff;
  box-shadow: 0 1px 3px rgba(245, 158, 11, 0.3);
}

.btn-warm:hover {
  background: #D97706;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.btn-cta-call {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35), 0 1px 3px rgba(59, 130, 246, 0.2);
}

.btn-cta-call:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.btn-cta-call:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-cta-call-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-cta-call-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 20px 44px;
  font-size: 1.063rem;
  border-radius: var(--radius-lg);
}

/* ===== Section Utilities ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-title {
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.063rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(0.5deg); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes scan-line {
  0% { top: 10%; }
  50% { top: 85%; }
  100% { top: 10%; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(-28px);
}
.animate-on-scroll.slide-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(28px);
}
.animate-on-scroll.slide-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.92);
}
.animate-on-scroll.scale-in.visible {
  transform: scale(1);
}

.animate-on-scroll.delay-1 { transition-delay: 80ms; }
.animate-on-scroll.delay-2 { transition-delay: 160ms; }
.animate-on-scroll.delay-3 { transition-delay: 240ms; }
.animate-on-scroll.delay-4 { transition-delay: 320ms; }
.animate-on-scroll.delay-5 { transition-delay: 400ms; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--duration-normal) var(--ease-out);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .header-logo-text { color: var(--text); }
.header.scrolled .header-nav a { color: var(--text-secondary); }
.header.scrolled .header-nav a:hover { color: var(--text); }

.header.scrolled .btn-dark {
  background: #111827;
  color: #fff;
  border-color: #111827;
  backdrop-filter: none;
}
.header.scrolled .btn-dark:hover {
  background: #1F2937;
  border-color: #1F2937;
  color: #fff;
}

.header-login-link {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.header-login-link:hover { color: #111827; }
.header.scrolled .header-login-link { color: #475569; }
.header.scrolled .header-login-link:hover { color: #0F172A; }

.header-logo-svg { color: #111827; transition: color var(--duration-normal) var(--ease-out); }
.header.scrolled .header-logo-svg { color: #1a1a2e; }

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 10;
}

.header-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35);
}

.header-logo-text {
  color: #111827;
  transition: color var(--duration-normal) var(--ease-out);
  font-size: 1.063rem;
}

.header-logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: -2px;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.header-nav a:hover { color: #111827; }

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.header-nav a:hover::after { width: 100%; }

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

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111827;
  border-radius: 1px;
  transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled .mobile-menu-btn span { background: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(165deg, #eef4ff 0%, #f0f6ff 50%, #f5f9ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 55% at 45% 40%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 45% 40%, black 25%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 110px;
}

.hero-text {
  animation: fadeInUp 0.9s var(--ease-out) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--success);
  animation: pulse-ring 2.5s ease-out infinite;
}

.hero h1 {
  color: #111827;
  margin-bottom: 0;
}

.hero h1 .accent-text {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 60%, #1D4ED8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pain {
  font-size: 1.063rem;
  color: #6b7280;
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.75;
  max-width: 460px;
  font-weight: 400;
}

.hero-pain em {
  font-style: normal;
  color: #374151;
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(0.938rem, 1.8vw, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.813rem;
  color: #6b7280;
}

.hero-note svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
  animation: fadeIn 1.1s var(--ease-out) 0.3s both;
}

.hero-ipad-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.hero-ipad-outer {
  background: linear-gradient(145deg, #1C1C22 0%, #2C2C34 100%);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.hero-ipad-screen {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-ipad-ui {
  padding: 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ipad-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ipad-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ipad-logo-square {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.688rem;
  color: #fff;
  font-weight: 800;
}

.ipad-company-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.ipad-time {
  font-size: 0.688rem;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.ipad-welcome {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ipad-welcome-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.ipad-welcome-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.ipad-qr-box {
  width: 110px;
  height: 110px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto;
  position: relative;
}

/* Scan line animation across QR */
.ipad-qr-box::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 1px;
  animation: scan-line 2.5s ease-in-out infinite;
  opacity: 0.7;
  z-index: 2;
}

.ipad-qr-box::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px dashed rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  animation: pulse-ring 3.5s ease-in-out infinite;
}

.ipad-qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2.5px;
  width: 65px;
  height: 65px;
}

.ipad-qr-cell {
  background: var(--text);
  border-radius: 1.5px;
}

.ipad-qr-cell.empty { background: transparent; }

.ipad-check-in-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.813rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: default;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* ===== Browser Mockup (Hero) ===== */
.hero-browser-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.hero-browser-outer {
  background: linear-gradient(145deg, #1C1C22 0%, #2C2C34 100%);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots .dot.red { background: #FF5F57; }
.browser-dots .dot.yellow { background: #FEBC2E; }
.browser-dots .dot.green { background: #28C840; }

.browser-url {
  flex: 1;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.688rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-browser-screen {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  aspect-ratio: 4 / 3;
  position: relative;
}

.hero-browser-ui {
  padding: 20px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.browser-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-logo-square {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.688rem;
  color: #fff;
  font-weight: 800;
}

.browser-company-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.browser-time {
  font-size: 0.688rem;
  color: var(--text-muted);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.browser-welcome {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.browser-welcome-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.browser-welcome-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.browser-qr-box {
  width: 110px;
  height: 110px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto;
  position: relative;
}

.browser-qr-box::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 1px;
  animation: scan-line 2.5s ease-in-out infinite;
  opacity: 0.7;
  z-index: 2;
}

.browser-qr-box::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 2px dashed rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  animation: pulse-ring 3.5s ease-in-out infinite;
}

.browser-qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2.5px;
  width: 65px;
  height: 65px;
}

.browser-qr-cell {
  background: var(--text);
  border-radius: 1.5px;
}

.browser-qr-cell.empty { background: transparent; }

.browser-check-in-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.813rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: default;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Floating notification cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-floating-card.card-1 {
  top: 8%;
  right: -36px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 12%;
  left: -28px;
  animation: floatSlow 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.floating-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-icon.slack { background: #E8F5E9; color: #4CAF50; }
.floating-card-icon.check { background: var(--accent-soft); color: var(--accent); }

.floating-card-text {
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.floating-card-sub {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ===== Pain Point Section ===== */
.pain-section {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EF4444, #F59E0B);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.pain-card:hover::before { opacity: 1; }

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.15);
  box-shadow: var(--shadow-md);
}

.pain-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.pain-title {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pain-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pain-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 12px;
  background: #FEF2F2;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #DC2626;
}

.pain-bottom-cta {
  text-align: center;
  margin-top: 52px;
}

.pain-bottom-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pain-bottom-cta .pain-bottom-sub {
  font-size: 0.938rem;
  color: var(--text-secondary);
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--bg-cool);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--border);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-number .stat-unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.813rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== QR Flow Demo ===== */
.qr-flow {
  padding: 110px 0 90px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.qr-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.025) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

.qr-flow-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

.qr-flow-header .section-desc { margin: 0 auto; }

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 33%, var(--warm) 66%, var(--success) 100%);
  z-index: 1;
  opacity: 0.4;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.flow-step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s var(--ease-out);
}

.flow-step:hover .flow-step-number {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.flow-step-icon { font-size: 1.75rem; }

.flow-step-label {
  font-size: 0.688rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.flow-step-title {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.flow-step-desc {
  font-size: 0.813rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 170px;
}

.flow-step-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 3px 10px;
  background: var(--accent-glow);
  border-radius: var(--radius-full);
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== Features ===== */
.features {
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
}

.features-header { margin-bottom: 52px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, var(--accent), #93C5FD);
}

.feature-card.featured {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-color: transparent;
  color: #fff;
  padding: 44px 40px;
}

.feature-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-card.featured::before { display: none; }
.feature-card.featured .feature-title { color: #fff; }
.feature-card.featured .feature-desc { color: rgba(255, 255, 255, 0.7); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 20px;
  background: var(--accent-glow);
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.08);
}

.feature-title {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
}

.feature-card.featured .feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #93C5FD;
}

/* ===== Integrations ===== */
.integrations {
  padding: 110px 0 100px;
  background: var(--bg-cool);
  position: relative;
  overflow: hidden;
}

.integrations-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.integrations-text { max-width: 460px; }

.integration-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.integration-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.integration-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success);
  font-size: 0.688rem;
}

.integrations-visual { position: relative; }

.integration-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 420px;
  margin-left: auto;
}

.integration-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.35s var(--ease-out);
}

.integration-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.integration-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-card-icon.slack-icon { background: #E8F5E9; }
.integration-card-icon.teams-icon { background: #EDE9FE; }
.integration-card-icon.gcal-icon { background: #FEF3C7; }
.integration-card-icon.outlook-icon { background: #DBEAFE; }
.integration-card-icon.line-icon { background: #D1FAE5; }
.integration-card-icon.webhook-icon { background: #F3E8FF; }

.integration-card-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.integration-card-status {
  font-size: 0.625rem;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.integration-card-status::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 90px 0 110px;
  background: var(--bg);
  position: relative;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works-header .section-desc { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 16.67%;
  right: 16.67%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

.step-card {
  text-align: center;
  position: relative;
  padding: 0 8px;
}

.step-number-wrap {
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
  position: relative;
}

.step-number-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-cool);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.35s var(--ease-out);
}

.step-card:hover .step-number-bg {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: var(--shadow-glow);
}

.step-number-inner {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.step-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.25rem;
}

.step-title {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

.step-detail {
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--bg-cool);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

/* ===== Company Size Section ===== */
.company-size {
  padding: 100px 0 80px;
  background: var(--bg-warm);
  position: relative;
}

.company-size-header {
  text-align: center;
  margin-bottom: 56px;
}

.company-size-header .section-desc { margin: 0 auto; }

.company-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.size-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}

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

.size-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.688rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.size-card-badge.startup {
  background: var(--accent-soft);
  color: var(--accent);
}

.size-card-badge.growth {
  background: var(--warm-soft);
  color: #B45309;
}

.size-card-badge.enterprise {
  background: #F3E8FF;
  color: #7C3AED;
}

.size-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.size-card-range {
  font-size: 0.813rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

.size-card-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.size-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.size-card-points li .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.size-card-points li .check-icon.blue {
  background: var(--accent-soft);
  color: var(--accent);
}

.size-card-points li .check-icon.amber {
  background: var(--warm-soft);
  color: #B45309;
}

.size-card-points li .check-icon.purple {
  background: #F3E8FF;
  color: #7C3AED;
}

.size-card-rec {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.813rem;
  color: var(--text-muted);
}

.size-card-rec strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== Pricing ===== */
.pricing {
  padding: 90px 0 120px;
  background: var(--bg);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-desc { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.popular {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(59, 130, 246, 0.08);
  transform: scale(1.04);
  z-index: 1;
}

.pricing-card.popular:hover { transform: scale(1.05); }

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-plan-name {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
  font-size: 0.625rem;
}

.pricing-card.popular .pricing-check {
  background: rgba(59, 130, 246, 0.12);
}

.pricing-cta { width: 100%; }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* ===== Pricing Comparison Table ===== */
.pricing-comparison {
  margin-bottom: 56px;
}

.comparison-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 24px;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 540px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-cool);
}

.comparison-table th.comparison-highlight {
  background: rgba(59, 130, 246, 0.06);
  color: var(--accent);
  font-weight: 700;
}

.comparison-table td.comparison-highlight {
  background: rgba(59, 130, 246, 0.03);
  font-weight: 600;
}

.comparison-row-label {
  text-align: left !important;
  font-weight: 600;
  color: var(--text);
  font-size: 0.813rem;
}

.comparison-price-accent {
  color: var(--accent);
  font-size: 1.063rem;
}

.comparison-yes {
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-no {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.comparison-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CTA Call Badge & Benefits ===== */
.cta-call-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.813rem;
  font-weight: 600;
  color: #FBBF24;
  margin-bottom: 20px;
}

.cta-call-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.813rem;
  color: var(--text-on-dark-secondary);
}

.cta-call-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
}

/* ===== Social Proof ===== */
.social-proof {
  padding: 56px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.social-proof-inner {
  text-align: center;
}

.social-proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.4;
}

.social-proof-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.social-proof-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.social-proof-stat strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.social-proof-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== STATS BAR HIGHLIGHT (Hub-style) ===== */
.stats-bar-highlight {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats-highlight-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stats-highlight-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stats-highlight-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-highlight-unit {
  font-size: 1.25rem;
  font-weight: 600;
}
.stats-highlight-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
  margin-top: 6px;
}
.stats-highlight-sub {
  font-size: 0.7rem;
  color: #6b7280;
  margin-top: 2px;
}
.stats-highlight-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-highlight-grid { flex-wrap: wrap; gap: 24px; }
  .stats-highlight-divider { display: none; }
  .stats-highlight-item { flex: 0 0 45%; }
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0 100px;
  background: var(--bg-cool);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-normal) var(--ease-out);
  color: var(--text-muted);
  background: var(--bg-subtle);
  border-radius: 50%;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-glow);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 0;
  position: relative;
}

.cta-banner-inner {
  background: linear-gradient(165deg, #0C1222 0%, #162033 50%, #1A2E4A 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-banner-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-banner-content p {
  color: var(--text-on-dark-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-on-dark-secondary);
  opacity: 0.5;
}

/* ===== Footer ===== */
.footer {
  background: #0A0C10;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand { max-width: 260px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 800;
}

.footer-logo-text {
  font-size: 0.938rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--duration-fast);
}

.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.55); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-content { gap: 48px; }
  .pain-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-column: span 2; }
  .integrations-content { gap: 48px; }
  .company-size-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .header-nav { display: none; }
  .header-cta-group { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 0 56px;
    text-align: center;
  }

  .hero-pain { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }

  .hero-visual {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-floating-card { display: none; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .pain-section { padding: 64px 0; }
  .pain-grid { grid-template-columns: 1fr; }

  .qr-flow { padding: 64px 0; }
  .flow-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .flow-timeline::before { display: none; }

  .features { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }

  .integrations { padding: 64px 0; }
  .integrations-content { grid-template-columns: 1fr; }
  .integration-hub { max-width: 100%; margin: 0 auto; }

  .how-it-works { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }

  .company-size { padding: 64px 0; }
  .company-size-grid { grid-template-columns: 1fr; }

  .pricing { padding: 64px 0 80px; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-2px); }

  .social-proof { padding: 40px 0; }
  .social-proof-logos { gap: 24px; }

  .faq { padding: 64px 0; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-visual {
    max-width: 240px;
    margin: 0 auto 16px;
  }

  .hero-browser-frame {
    max-width: 240px;
  }

  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 12px; }
  .stat-number { font-size: 1.5rem; }

  .flow-timeline { grid-template-columns: 1fr; gap: 20px; }
  .flow-step-number { width: 68px; height: 68px; }
  .flow-step-icon { font-size: 1.5rem; }

  .hero-ipad-outer { padding: 10px; border-radius: 20px; }
  .hero-ipad-screen { border-radius: 12px; }
  .hero-browser-outer { border-radius: 10px; }
  .hero-browser-screen { aspect-ratio: 3 / 2.5; }
  .comparison-table { min-width: 300px; font-size: 0.7rem; overflow-x: auto; }
  .comparison-table th, .comparison-table td { padding: 10px 10px; font-size: 0.75rem; }
  .cta-call-benefits { flex-direction: column; gap: 8px; }
  .social-proof-highlights { gap: 24px; }
  .btn-lg { padding: 14px 24px; font-size: 0.938rem; }
  .cta-banner-inner { padding: 56px 0; }

  .step-number-wrap { width: 96px; height: 96px; }
  .step-number-inner { font-size: 2rem; }
  .step-icon-overlay { font-size: 1.75rem; }
  .integration-hub { grid-template-columns: repeat(2, 1fr); }

  .pain-card { padding: 28px 20px; }
  .book-call-layout { grid-template-columns: 1fr; gap: 32px; }
  .book-call-info { order: 0; }
  .tokushoho-table th { width: 120px; }
  .security-grid { grid-template-columns: 1fr; }
}

/* ===== Sub-pages shared ===== */
.sub-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.sub-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ===== Legal pages ===== */
.legal-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.813rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.063rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h3 {
  font-size: 0.938rem;
  margin-bottom: 6px;
  margin-top: 16px;
}

.legal-content p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content ol,
.legal-content ul {
  margin: 10px 0;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.legal-back {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ===== Tokushoho table ===== */
.tokushoho-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.tokushoho-table th,
.tokushoho-table td {
  padding: 14px 16px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.tokushoho-table th {
  width: 180px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-cool);
  white-space: nowrap;
}

.tokushoho-table td {
  color: var(--text-secondary);
}

/* ===== Security page ===== */
.security-lead {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.security-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
}

.security-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: var(--shadow-md);
}

.security-card-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.security-card h3 {
  font-size: 0.938rem;
  margin-bottom: 8px;
}

.security-card p {
  font-size: 0.813rem;
  line-height: 1.7;
}

.security-infra-list {
  list-style: none;
  padding: 0;
}

.security-infra-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.security-infra-list li::before {
  content: '▸ ';
  color: var(--accent);
  font-weight: 600;
}

/* ===== Book-a-call page ===== */
.book-call-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 100vh;
  background: var(--bg-cool);
}

.book-call-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.book-call-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.book-call-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.book-call-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.book-call-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bc-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.book-call-points strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.book-call-points span {
  font-size: 0.813rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.book-call-form-wrap {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.book-call-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.book-call-form h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.form-sub {
  font-size: 0.813rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group .req {
  color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 72px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== Thanks state ===== */
.book-call-thanks {
  text-align: center;
  padding: 80px 0;
  max-width: 500px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.book-call-thanks h1 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.book-call-thanks p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .book-call-layout { grid-template-columns: 1fr; gap: 32px; }
  .book-call-form-wrap { position: static; }
  .book-call-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .tokushoho-table th { width: auto; display: block; padding-bottom: 4px; border-bottom: none; background: transparent; }
  .tokushoho-table td { display: block; padding-top: 0; }
  .tokushoho-table tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
}


/* ===== Live Demo Styles ===== */
.hero-demo-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.demo-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.demo-step.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Step 0: Reception */
.demo-reception {
  text-align: center;
  padding: 20px;
  width: 100%;
}
.demo-reception-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-logo-square {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.demo-company-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-on-dark);
}
.demo-time {
  font-size: 12px;
  color: var(--text-on-dark-secondary);
  font-variant-numeric: tabular-nums;
}
.demo-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.demo-welcome-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-dark);
}
.demo-welcome-sub {
  font-size: 12px;
  color: var(--text-on-dark-secondary);
  margin-bottom: 8px;
}
.demo-qr-box {
  display: inline-flex;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.demo-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-on-dark-secondary);
}

/* Step 1: Notification Popup */
.demo-notification {
  text-align: left;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(16,185,129,0.06) 100%);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 14px;
  width: 85%;
  max-width: 300px;
  animation: demoPopIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(59,130,246,0.08);
}
@keyframes demoPopIn {
  0% { opacity: 0; transform: translateY(16px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.demo-notif-icon {
  margin-bottom: 12px;
  width: 36px;
  height: 36px;
  background: rgba(59,130,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-notif-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.demo-notif-body {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}
.demo-notif-detail {
  display: flex;
  gap: 6px;
  font-size: 11px;
  color: var(--text-on-dark-secondary);
}
.demo-notif-detail span {
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Step 2: Sending */
.demo-sending {
  text-align: center;
  padding: 24px;
  width: 85%;
  max-width: 300px;
}
.demo-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  position: relative;
}
.demo-spinner::before,
.demo-spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.demo-spinner::before {
  border: 2px solid rgba(59,130,246,0.1);
}
.demo-spinner::after {
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  animation: demoSpin 0.8s cubic-bezier(0.5,0,0.5,1) infinite;
}
@keyframes demoSpin {
  100% { transform: rotate(360deg); }
}
.demo-sending-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  min-height: 21px;
}
.demo-sending-channels {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.demo-channel {
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-on-dark);
  font-weight: 500;
  transition: all 0.3s;
  animation: channelPulse 1.5s ease infinite;
}
.demo-channel:nth-child(2) { animation-delay: 0.2s; }
.demo-channel:nth-child(3) { animation-delay: 0.4s; }
@keyframes channelPulse {
  0%, 100% { border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
  50% { border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.08); color: var(--accent); }
}

/* Step 3: Slack Preview */
.demo-slack-preview {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px;
  width: 85%;
  max-width: 300px;
  text-align: left;
}
.demo-slack-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-on-dark-secondary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-slack-bot-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.demo-slack-text {
  font-size: 12px;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.demo-guide-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.demo-guide-btn:hover {
  background: var(--accent-hover);
}
.demo-slack-message {
  margin-bottom: 4px;
}

/* Step 4: Complete */
.demo-complete {
  text-align: center;
  padding: 24px;
  animation: demoPopIn 0.4s ease;
}
.demo-complete-icon {
  margin-bottom: 12px;
}
.demo-complete-title {
  font-size: 18px;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 8px;
}
.demo-complete-detail {
  font-size: 12px;
  color: var(--text-on-dark-secondary);
}

/* Demo dots */
.demo-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.demo-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

/* ===== Pain Icon SVG ===== */
.pain-icon-svg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.08);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== Feature Icon SVG ===== */
.feature-icon-svg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.08);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== Flow Step Icon SVG ===== */
.flow-step-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ===== Step Icon Overlay SVG ===== */
.step-icon-overlay-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 4px;
}

/* ===== Pricing 3-Column ===== */
.pricing-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-amount-custom {
  font-size: 1.5rem !important;
}

@media (max-width: 900px) {
  .pricing-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile Responsive for Demo ===== */

@media (max-width: 768px) {
  .hero-demo-container {
    min-height: 240px;
  }
  .demo-notification {
    width: 90%;
  }
  .demo-slack-preview {
    width: 90%;
  }
}

/* ── Billing Toggle ──────────────────────── */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.billing-toggle-label {
  font-size: 14px;
  transition: color 0.2s, font-weight 0.2s;
}
.billing-toggle-label.active {
  color: #e2e8f0;
  font-weight: 600;
}
.billing-toggle-label.inactive {
  color: #7a8494;
  font-weight: 400;
}
.billing-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  background: rgba(255,255,255,0.15);
}
.billing-toggle-switch.on {
  background: #3B82F6;
}
.billing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s;
}
.billing-toggle-switch.on .billing-toggle-knob {
  left: 25px;
}
.billing-toggle-badge {
  font-size: 11px;
  color: #3B82F6;
  margin-left: 6px;
  font-weight: 600;
}
.pricing-annual-sub {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}
.pricing-annual-sub.highlight {
  color: #3B82F6;
}
.pricing-annual-sub.muted {
  color: #7a8494;
}
