/* ================================================
   VARIABLES & TOKENS
   ================================================ */
:root {
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-dark: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --accent-subtle: rgba(59, 130, 246, 0.08);

  --bg: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;

  --border: rgba(15, 23, 42, 0.06);
  --border-light: rgba(15, 23, 42, 0.04);

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 140px 0;
  position: relative;
}

/* ================================================
   UTILITY
   ================================================ */
.text-accent {
  color: var(--accent);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ================================================
   REVEAL ANIMATION BASE
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--text-primary);
  color: white;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ================================================
   SECTION 1 — HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.35; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text-sequence {
  margin-bottom: 48px;
}

.hero-line {
  margin-bottom: 20px;
}

.hero-line-1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-line-2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-line-3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-line-4 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-line-4 strong {
  color: var(--text-primary);
}

/* Floating Search UI */
.search-ui {
  margin: 48px auto 56px;
  max-width: 540px;
  width: 100%;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.search-icon {
  flex-shrink: 0;
  opacity: 0.5;
}

.search-text {
  flex: 1;
  text-align: left;
}

.search-cursor {
  width: 2px;
  height: 18px;
  background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}

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

.search-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  text-align: left;
}

.search-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.result-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.result-dot.green { background: #22c55e; }
.result-dot.red { background: #ef4444; }

.result-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.result-url {
  font-size: 0.78rem;
  color: var(--accent);
}

.missing-url {
  color: var(--text-tertiary);
}

.result-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  white-space: nowrap;
}

.result-badge.badge-missing {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.result-missing {
  opacity: 0.65;
  border-style: dashed;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

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

.btn-primary svg {
  transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 2px;
  height: 40px;
  border-radius: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   SECTION COMMON STYLES
   ================================================ */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ================================================
   SECTION 2 — THE PROBLEM
   ================================================ */
.section-problem {
  background: var(--bg);
  text-align: center;
}

.problem-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.problem-point {
  text-align: left;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.problem-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.point-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-point h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.problem-point p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison Card */
.comparison-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}

.comparison-header {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.comparison-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border);
  transition: transform var(--transition-fast);
}

.comp-result:hover {
  transform: translateX(4px);
}

.comp-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-subtle), rgba(59, 130, 246, 0.15));
  flex-shrink: 0;
}

.comp-thumb.empty-thumb {
  background: var(--bg-tertiary);
  border: 2px dashed var(--border);
}

.comp-info {
  flex: 1;
  min-width: 0;
}

.comp-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.comp-link {
  font-size: 0.78rem;
  color: var(--accent);
}

.comp-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dim {
  opacity: 0.4;
}

.comp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.tag-pro {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.tag-missing {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

/* ================================================
   SECTION 3 — RESTAURANT REALITY
   ================================================ */
.section-restaurant {
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}

.restaurant-mockup-wrapper {
  margin-bottom: 64px;
}

.mockup-container {
  perspective: 1200px;
  max-width: 720px;
  margin: 0 auto;
}

.mockup-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
}

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

.red-dot { background: #ff5f57; }
.yellow-dot { background: #febc2e; }
.green-dot { background: #28c840; }

.mockup-url {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-left: 12px;
}

/* Restaurant Mockup Content */
.mockup-content {
  background: white;
}

.mock-hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 24px;
  color: white;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mock-logo {
  font-weight: 700;
  font-size: 0.95rem;
}

.mock-nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.mock-btn {
  padding: 4px 12px;
  background: var(--accent);
  border-radius: var(--radius-full);
  color: white;
}

.mock-hero-text {
  text-align: left;
  padding: 20px 0;
}

.mock-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.mock-title-big {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mock-cta-row {
  display: flex;
  gap: 10px;
}

.mock-btn-primary {
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.mock-btn-outline {
  padding: 8px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
}

.mock-menu-section {
  padding: 24px;
}

.mock-menu-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}

.mock-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-menu-item {
  text-align: left;
}

.mock-food-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.mock-food-img.img-1 {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.mock-food-img.img-2 {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.mock-food-img.img-3 {
  background: linear-gradient(135deg, #fecaca, #f87171);
}

.mock-food-name {
  font-size: 0.72rem;
  font-weight: 600;
}

.mock-food-price {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
}

/* Restaurant Features */
.restaurant-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.r-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.r-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.r-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
}

/* ================================================
   SECTION 4 — BENEFITS SHOWCASE
   ================================================ */
.section-benefits {
  background: var(--bg);
  text-align: center;
}

.benefits-track {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 48px auto 0;
}

.benefit-slide {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.benefit-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-subtle);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.25;
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefit-visual {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bv-icon {
  opacity: 0.7;
}

/* ================================================
   SECTION 5 — SHOWCASE
   ================================================ */
.section-showcase {
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

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

.showcase-mockup {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow var(--transition-base);
  will-change: transform;
}

.showcase-card:hover .showcase-mockup {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.showcase-browser {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}

.showcase-browser .dot {
  width: 8px;
  height: 8px;
}

.showcase-screen {
  padding: 16px;
  background: white;
  min-height: 280px;
}

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

.sc-logo-text {
  font-weight: 700;
  font-size: 0.8rem;
}

.sc-nav-dots {
  display: flex;
  gap: 4px;
}

.sc-nav-dots span {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--bg-tertiary);
}

.sc-hero-img {
  width: 100%;
  height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fde68a, #fdba74, #f87171);
  margin-bottom: 12px;
}

.sc-hero-img.biz-img {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd, #3b82f6);
}

.sc-hero-img.svc-img {
  background: linear-gradient(135deg, #bbf7d0, #86efac, #22c55e);
}

.sc-text-block {
  text-align: left;
  margin-bottom: 12px;
}

.sc-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sc-subtitle {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.sc-btn-mock {
  width: 80px;
  height: 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f87171, #ef4444);
}

.sc-btn-mock.biz-btn {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.sc-btn-mock.svc-btn {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

.sc-grid-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.sc-grid-mock div {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fff1f2, #fecdd3);
}

.sc-grid-mock.biz-grid div {
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
}

.sc-grid-mock.svc-grid div {
  background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.showcase-label {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ================================================
   SECTION 6 — PROCESS
   ================================================ */
.section-process {
  background: var(--bg);
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 48px auto 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.step-icon-wrapper {
  margin-bottom: 20px;
  opacity: 0.8;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 56px;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  border-radius: 1px;
}

/* ================================================
   SECTION 7 — PRICING
   ================================================ */
.section-pricing {
  background: var(--bg-secondary);
  text-align: center;
}

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.pricing-card .section-label {
  position: relative;
  z-index: 1;
}

.pricing-card .section-headline {
  position: relative;
  z-index: 1;
}

.pricing-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.pricing-card .btn {
  position: relative;
  z-index: 1;
}

/* ================================================
   SECTION 8 — FINAL CTA
   ================================================ */
.section-final {
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-bg-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.final-headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.final-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-line-1 {
    font-size: 1.8rem;
  }

  .hero-line-2 {
    font-size: 1.5rem;
  }

  .search-ui {
    margin: 32px auto 40px;
  }

  .search-result {
    flex-wrap: wrap;
    gap: 8px;
  }

  .result-badge {
    margin-left: 22px;
  }

  .problem-points {
    grid-template-columns: 1fr;
  }

  .benefit-slide {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  .benefit-visual {
    width: 64px;
    height: 64px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .mock-nav-links {
    display: none;
  }

  .mock-title-big {
    font-size: 1.2rem;
  }

  .mock-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .restaurant-features {
    gap: 12px;
  }

  .r-feature {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .pricing-card {
    padding: 48px 24px;
  }

  .section-final {
    padding: 120px 0;
  }

  .comparison-card {
    padding: 20px;
  }

  .comp-desc {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-line-1 {
    font-size: 1.5rem;
  }

  .section-headline {
    font-size: 1.6rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .benefit-slide {
    padding: 24px 20px;
  }

  .comp-result {
    padding: 10px;
  }

  .comp-thumb {
    width: 32px;
    height: 32px;
  }
}

/* ================================================
   ANIMATION ENHANCEMENTS
   ================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.search-ui {
  animation: float 6s ease-in-out infinite;
  animation-play-state: paused;
}

.search-ui.visible {
  animation-play-state: running;
}

/* Subtle blue glow on accent elements */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity var(--transition-base);
}

.btn-primary:hover::after {
  opacity: 0.4;
}

/* Smooth section transitions */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.section:first-of-type::before,
.hero + .section::before {
  display: none;
}
