/* ═══════════════════════════════════════════════════════
   FeastPlan Landing Page
   Colors: Primary #3b82f6, Accent #d946ef
   Font: Inter
   ═══════════════════════════════════════════════════════ */

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

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #eff6ff;
  --accent: #d946ef;
  --accent-dark: #c026d3;
  --green: #10b981;
  --orange: #f59e0b;
  --teal: #14b8a6;
  --pink: #ec4899;
  --rose: #f43f5e;
  --indigo: #6366f1;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ */
/* NAVBAR                                  */
/* ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon { width: 32px; height: 32px; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--bg);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost {
  color: var(--text-secondary);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--primary); }

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-block { width: 100%; }

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.lang-btn:hover { background: var(--bg-alt); color: var(--text); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.lang-option:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.lang-option:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.lang-option:hover { background: var(--primary-light); color: var(--primary); }
.lang-option.active { color: var(--primary); font-weight: 600; }

/* ── Mobile Menu ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════ */
/* HERO                                    */
/* ═══════════════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Hero Mockup ── */
.hero-visual { perspective: 1000px; }
.hero-mockup {
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.hero-mockup:hover { transform: rotateY(0) rotateX(0); }

.mockup-browser {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-content {
  display: flex;
  height: 320px;
}
.mockup-sidebar {
  width: 60px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-nav-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--border);
}
.mockup-nav-item.active { background: var(--primary); }

.mockup-main {
  flex: 1;
  padding: 16px;
  position: relative;
}
.mockup-canvas {
  width: 100%;
  height: 100%;
  background: #fafbfc;
  border-radius: 8px;
  border: 1px dashed var(--border);
  position: relative;
}
.mockup-table {
  position: absolute;
  background: var(--primary-light);
  border: 2px solid var(--primary);
}
.mockup-table.round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.mockup-table.rect {
  width: 70px;
  height: 40px;
  border-radius: 4px;
}
.mockup-seat {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}
.mockup-ai-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ═══════════════════════════════════════ */
/* STATS                                   */
/* ═══════════════════════════════════════ */
.stats {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat-number::after { content: '+'; }
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══════════════════════════════════════ */
/* FEATURES                                */
/* ═══════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon.blue    { background: #eff6ff; color: var(--primary); }
.feature-icon.purple  { background: #faf5ff; color: var(--accent); }
.feature-icon.green   { background: #ecfdf5; color: var(--green); }
.feature-icon.orange  { background: #fffbeb; color: var(--orange); }
.feature-icon.teal    { background: #f0fdfa; color: var(--teal); }
.feature-icon.pink    { background: #fdf2f8; color: var(--pink); }
.feature-icon.rose    { background: #fff1f2; color: var(--rose); }
.feature-icon.indigo  { background: #eef2ff; color: var(--indigo); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════ */
/* HOW IT WORKS                            */
/* ═══════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  margin: 16px auto 20px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════ */
/* PRICING                                 */
/* ═══════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.period {
  font-size: 16px;
  color: var(--text-secondary);
}
.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.plan-features svg { flex-shrink: 0; }

/* ═══════════════════════════════════════ */
/* FAQ                                     */
/* ═══════════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-tertiary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  color: var(--primary);
}
.faq-question:hover { color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════ */
/* CTA                                     */
/* ═══════════════════════════════════════ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent-dark) 100%);
  text-align: center;
}
.cta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════ */
/* FOOTER                                  */
/* ═══════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  color: #94a3b8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo span { color: #fff; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
}

/* ═══════════════════════════════════════ */
/* LEGAL & CONTACT PAGES                   */
/* ═══════════════════════════════════════ */
.legal-page {
  padding: 140px 0 80px;
  min-height: calc(100vh - 300px);
}
.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
  list-style: disc;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--primary-dark);
}

/* ═══════════════════════════════════════ */
/* CONTACT PAGE                            */
/* ═══════════════════════════════════════ */
.ct-page {
  padding: 72px 0 0;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.ct-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  width: 100%;
  min-height: calc(100vh - 72px);
}

/* Left: Form */
.ct-left {
  padding: 64px 64px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}
.ct-left h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ct-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.ct-field input:hover,
.ct-field select:hover,
.ct-field textarea:hover {
  border-color: #cbd5e1;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.ct-field textarea {
  resize: vertical;
  min-height: 130px;
}
.ct-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.ct-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px 24px;
  font-size: 16px;
}

/* Right: Info Panel */
.ct-right {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 50%, #1e40af 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ct-right-inner {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ct-right-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  width: fit-content;
}
.ct-right h2 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 40px;
}
.ct-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ct-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-info-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 3px;
}
.ct-info-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* Decorative dots */
.ct-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  opacity: 0.08;
  z-index: 0;
}
.ct-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Success */
.ct-success {
  text-align: center;
  max-width: 440px;
  margin: auto;
  padding: 40px 24px;
}
.ct-success-icon {
  margin-bottom: 28px;
}
.ct-success h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.ct-success p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE                              */
/* ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 40px; }
}

@media (max-width: 1024px) {
  .ct-container { grid-template-columns: 1fr 340px; }
  .ct-left { padding: 48px 40px; }
  .ct-right-inner { padding: 48px 28px; }
  .ct-right h2 { font-size: 22px; }
}

@media (max-width: 768px) {
  .navbar-inner { height: 64px; }
  .nav-links, .nav-right .btn-ghost, .nav-right .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Mobile menu open state */
  body.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
  }
  body.menu-open .nav-links a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  body.menu-open .nav-right .btn-ghost,
  body.menu-open .nav-right .btn-primary {
    display: inline-flex;
  }
  body.menu-open .nav-right {
    position: absolute;
    top: calc(64px + var(--nav-height, 200px));
    left: 24px;
    right: 24px;
    flex-direction: column;
    background: var(--bg);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .hero { padding: 110px 0 60px; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero h1 { font-size: 34px; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; font-size: 16px; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-note { text-align: center; }
  .hero-mockup { transform: none; }
  .hero-mockup:hover { transform: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 28px; }

  .features { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 16px; }

  .how-it-works { padding: 64px 0; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); padding: 0; }

  .pricing { padding: 64px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .faq { padding: 64px 0; }

  .cta { padding: 64px 0; }
  .cta h2 { font-size: 28px; }
  .cta p { font-size: 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .legal-page { padding: 100px 0 60px; }
  .legal-page h1 { font-size: 28px; }

  .ct-container { grid-template-columns: 1fr; }
  .ct-left { padding: 32px 24px 40px; }
  .ct-left h1 { font-size: 28px; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-right { min-height: 360px; }
  .ct-right-inner { padding: 40px 24px; }
  .ct-right h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .price { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
}
