/* ====== CSS CUSTOM PROPERTIES ====== */
/* Skip-to-content (accessibility) */
.skip-to-content {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
  z-index: 10000; background: var(--purple-500); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) 0; font-weight: 600; text-decoration: none;
}
.skip-to-content:focus {
  position: fixed; left: 0; top: 0; width: auto; height: auto; overflow: visible;
}
:root {
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --purple-400: #c084fc;
  --purple-300: #d8b4fe;
  --purple-200: #e9d5ff;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --red-500: #ef4444;
  --bg-primary: #0f0820;
  --bg-secondary: #1a1030;
  --bg-tertiary: #1f1438;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(168, 85, 247, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --section-gap: 6rem;
  --section-gap-lg: 8rem;
  --nav-height: 72px;
  --max-width: 1200px;
  --side-padding: 7%;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
}

/* ====== BASE RESET ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, a, .card { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
button, input, select, textarea { font-family: inherit; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--purple-500); outline-offset: 2px; }

/* ====== UTILITY ====== */
.container { max-width: var(--max-width); margin: 0 auto; }
.visually-hidden { position: absolute; left: -9999px; top: 0; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; background: var(--purple-500); color: #fff; padding: 0.8rem 1.5rem; border-radius: var(--radius-md); font-weight: 600; z-index: 10001; }

/* ====== NAVIGATION ====== */
nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(15, 8, 32, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom: 1px solid rgba(186, 148, 255, 0.15);
  padding: 0 var(--side-padding);
  height: var(--nav-height);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(15, 8, 32, 0.98);
  box-shadow: 0 4px 30px rgba(138, 85, 255, 0.2);
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.6px;
}
.logo-img {
  width: 36px; height: 36px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4));
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-tertiary); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 0.5rem 0; transition: 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; gap: 1rem; align-items: center; }
.lang-switch { display: flex; gap: 0.3rem; }
.lang-btn {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted); padding: 0.3rem 0.6rem; border-radius: 6px;
  font-size: 0.75rem; cursor: pointer; font-weight: 500; transition: 0.3s;
}
.lang-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--border-accent); }
.lang-btn.active {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(192, 132, 252, 0.2));
  color: #fff; border-color: rgba(168, 85, 247, 0.5);
}

/* ====== BUTTONS ====== */
.btn-primary {
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-700) 100%);
  color: white; padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}
.btn-secondary {
  background: rgba(168, 85, 247, 0.1); color: white;
  padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(10px); display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.2); border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.btn-large { font-size: 1.05rem; padding: 1.1rem 2.5rem; }
.btn-block { width: 100%; justify-content: center; }

/* ====== MOBILE MENU ====== */
.mobile-menu-btn {
  display: none; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm); padding: 0.5rem; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 20px; height: 2px; background: #fff;
  margin: 4px 0; border-radius: 2px; transition: 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(15, 8, 32, 0.98); backdrop-filter: blur(40px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem var(--side-padding); z-index: 999;
  flex-direction: column; gap: 1rem;
}
.mobile-nav.open { display: flex; animation: slideDown 0.3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav a {
  color: var(--text-secondary); font-size: 1.1rem; font-weight: 500;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav a:hover { color: var(--purple-400); }
.mobile-nav .btn-primary { text-align: center; justify-content: center; margin-top: 0.5rem; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-height) + 4rem) var(--side-padding) 4rem;
  background: radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(192, 132, 252, 0.1) 0%, transparent 50%),
              linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
  position: relative;
}
.hero-content {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
  border: 1px solid var(--border-accent); padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600;
  color: var(--purple-400); margin-bottom: 2rem;
}
.badge-dot { width: 8px; height: 8px; background: var(--purple-500); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem; letter-spacing: -0.03em; color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400), var(--purple-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-secondary);
  margin-bottom: 2rem; line-height: 1.7; max-width: 540px;
}
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border-subtle);
}
.stat-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.stat-item:hover { background: var(--glass-bg-hover); border-color: var(--border-accent); }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(168,85,247,0.08));
  color: var(--purple-400);
}
.stat-number {
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-400), var(--teal-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -1px; line-height: 1.2;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.15rem; }

/* Hero Dashboard Mock */
.hero-visual { position: relative; }
.dashboard-mock {
  background: linear-gradient(145deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  border-radius: var(--radius-xl); border: 1px solid rgba(168, 85, 247, 0.25);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(168, 85, 247, 0.15),
    0 0 60px -10px rgba(168, 85, 247, 0.15);
  animation: floatIn 1s ease-out;
}
@keyframes floatIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.dash-header {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
  padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center;
}
.dash-header-left { display: flex; flex-direction: column; gap: 0.3rem; }
.dash-header-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.dash-header-value { font-size: 2.2rem; font-weight: 800; letter-spacing: -2px; display: flex; align-items: baseline; gap: 0.5rem; }
.dash-trend {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0;
  color: var(--green-400); background: rgba(34, 197, 94, 0.15);
  padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
}
.dash-status {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--green-400);
}
.dash-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-400);
  box-shadow: 0 0 8px var(--green-400);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-400); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--green-400); }
}
.dash-body { padding: 1.5rem; }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1rem; }
.dash-metric {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem; border-radius: var(--radius-md);
}
.dash-metric-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.dash-metric-value { font-size: 1.35rem; font-weight: 700; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.dash-metric-sub { font-size: 0.95rem; font-weight: 400; color: var(--text-muted); }
.dash-tag {
  font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.15rem 0.45rem; border-radius: var(--radius-pill);
}
.dash-tag-green { color: var(--green-400); background: rgba(34,197,94,0.12); }
.dash-stars { font-size: 0.7rem; color: #fbbf24; letter-spacing: 1px; }
.dash-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.75rem; }
.dash-chart-section, .dash-upcoming {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 1rem;
}
.dash-chart-title {
  font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 0.75rem;
}
.dash-chart {
  height: 90px; display: flex; align-items: flex-end; gap: 0.4rem;
}
.dash-bar {
  flex: 1; background: linear-gradient(180deg, var(--purple-500), var(--purple-700));
  border-radius: 3px 3px 0 0; opacity: 0.7;
  animation: growBar 1.2s ease-out forwards; transform-origin: bottom; transform: scaleY(0);
}
.dash-bar-today {
  background: linear-gradient(180deg, var(--purple-400), var(--purple-500));
  opacity: 1; box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}
@keyframes growBar { to { transform: scaleY(1); } }
.dash-bar:nth-child(1) { height: 45%; animation-delay: 0.1s; }
.dash-bar:nth-child(2) { height: 65%; animation-delay: 0.15s; }
.dash-bar:nth-child(3) { height: 55%; animation-delay: 0.2s; }
.dash-bar:nth-child(4) { height: 75%; animation-delay: 0.25s; }
.dash-bar:nth-child(5) { height: 60%; animation-delay: 0.3s; }
.dash-bar:nth-child(6) { height: 90%; animation-delay: 0.35s; }
.dash-bar:nth-child(7) { height: 100%; animation-delay: 0.4s; }
.dash-chart-labels {
  display: flex; justify-content: space-between; margin-top: 0.4rem;
  font-size: 0.55rem; color: var(--text-muted); text-transform: uppercase;
}
.dash-upcoming { display: flex; flex-direction: column; gap: 0.5rem; }
.dash-upcoming .dash-chart-title { margin-bottom: 0.25rem; }
.dash-appt {
  display: flex; gap: 0.6rem; align-items: center;
  padding: 0.45rem 0.6rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
}
.dash-appt-time {
  font-weight: 700; color: var(--purple-400); min-width: 34px;
  font-size: 0.7rem; font-variant-numeric: tabular-nums;
}
.dash-appt-name { color: var(--text-secondary); }

/* ====== TRUST STRIP ====== */
.trust-strip {
  padding: 1rem var(--side-padding) 0;
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto;
}
.trust-chip {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-pill); padding: 0.4rem 1rem;
  font-size: 0.85rem; display: flex; gap: 0.4rem; align-items: center; color: var(--text-tertiary);
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-500); box-shadow: 0 0 8px var(--purple-500); }

/* ====== SECTION SHARED ====== */
.section-header { text-align: center; max-width: 750px; margin: 0 auto 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168,85,247,0.06));
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 0.5rem 1.2rem; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 700; color: var(--purple-400);
  margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem;
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}
.section-header p { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-secondary); line-height: 1.6; }

/* ====== HOW IT WORKS ====== */
.how-it-works { padding: var(--section-gap) var(--side-padding); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  max-width: var(--max-width); margin: 0 auto; position: relative;
}
.steps-grid::before {
  content: ""; position: absolute; top: 55px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.35);
}
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.step-card p { color: var(--text-secondary); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* ====== FEATURES ====== */
.features-section { padding: var(--section-gap-lg) var(--side-padding); }
.feature-categories { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }
.feature-category { margin-bottom: 0; }
.category-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
}
.category-icon-wrapper {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(168,85,247,0.3);
}
.category-icon-wrapper svg { color: #fff; }
.category-label h3 { font-size: 1.3rem; font-weight: 700; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem;
}
.feature-card {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-4px); border-color: var(--border-accent);
  box-shadow: 0 12px 35px rgba(168,85,247,0.15);
  background: var(--glass-bg-hover);
}
.feature-card-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(168,85,247,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-icon svg { color: var(--purple-400); }
.feature-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }

/* ====== PRICING ====== */
.pricing-section { padding: var(--section-gap-lg) var(--side-padding); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle span { font-size: 0.95rem; color: var(--text-tertiary); font-weight: 500; }
.pricing-toggle span.active { color: #fff; }
.toggle-switch {
  width: 52px; height: 28px; background: rgba(255,255,255,0.1);
  border-radius: 14px; position: relative; cursor: pointer;
  border: 1px solid var(--border-subtle); transition: 0.3s;
}
.toggle-switch.active { background: rgba(168,85,247,0.3); border-color: var(--border-accent); }
.toggle-knob {
  width: 22px; height: 22px; background: #fff; border-radius: 50%;
  position: absolute; top: 2px; left: 2px; transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-switch.active .toggle-knob { left: 26px; }
.save-badge {
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: var(--max-width); margin: 0 auto;
}
.pricing-card {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; transition: 0.35s; position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px); border-color: var(--border-accent);
  box-shadow: 0 15px 40px rgba(168,85,247,0.15);
}
.pricing-card.featured {
  background: radial-gradient(circle at top, rgba(168,85,247,0.2), transparent 70%), var(--glass-bg);
  border: 1.5px solid rgba(168,85,247,0.45);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(168,85,247,0.2);
}
.pricing-card.featured:hover { transform: translateY(-12px) scale(1.02); }
.pricing-badge-tag {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff; padding: 0.4rem 1rem; border-radius: var(--radius-pill);
  font-size: 0.7rem; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 6px 20px rgba(168,85,247,0.4);
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price {
  font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.3rem;
}
.pricing-period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.3rem; }
.pricing-branch-note { color: var(--purple-400); font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.pricing-card:not(:has(.pricing-branch-note)) .pricing-period { margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  font-size: 0.9rem; color: var(--text-secondary); display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.4;
}
.pricing-features li svg { flex-shrink: 0; color: var(--purple-400); margin-top: 2px; }
.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; text-align: center; justify-content: center; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { padding: var(--section-gap-lg) var(--side-padding); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: var(--max-width); margin: 0 auto;
}
.testimonial-card {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  transition: 0.35s; position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px); border-color: var(--border-accent);
  box-shadow: 0 12px 35px rgba(168,85,247,0.12);
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7;
  font-size: 0.95rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-tag {
  display: inline-block; margin-top: 1rem; font-size: 0.75rem;
  background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.25);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
  color: var(--purple-200); font-weight: 500;
}

/* ====== FAQ ====== */
.faq-section { padding: var(--section-gap) var(--side-padding); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden; transition: 0.3s;
}
.faq-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.3rem; cursor: pointer; gap: 1rem;
}
.faq-title { font-weight: 600; font-size: 0.95rem; }
.faq-icon {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: 0.3s; color: var(--text-muted);
}
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 1.3rem; }
.faq-body p { color: var(--text-secondary); padding: 0 0 1.1rem; line-height: 1.6; font-size: 0.9rem; }
.faq-item.open { border-color: var(--border-accent); background: rgba(168,85,247,0.05); }
.faq-item.open .faq-body { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--border-accent); color: var(--purple-400); }

/* ====== ABOUT ====== */
.about-section { padding: var(--section-gap-lg) var(--side-padding); }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: var(--max-width); margin: 0 auto 3rem;
}
.about-card {
  background: var(--glass-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-card:hover {
  transform: translateY(-4px); border-color: var(--border-accent);
  box-shadow: 0 12px 35px rgba(168,85,247,0.15);
  background: var(--glass-bg-hover);
}
.about-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(168,85,247,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.about-card-icon svg { color: var(--purple-400); }
.about-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.about-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.about-values {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 2.5rem; border-top: 1px solid var(--border-subtle);
}
.about-value { text-align: center; }
.about-value-number {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.3rem;
}
.about-value-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* ====== CTA ====== */
.cta-section {
  padding: var(--section-gap-lg) var(--side-padding);
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.12) 0%, transparent 70%);
  text-align: center; position: relative;
}
.cta-content { max-width: 750px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem;
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
}
.cta-content p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-secondary);
  margin-bottom: 2rem; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-badges {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border-subtle);
}
.trust-badge { display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.9rem; }
.trust-badge svg { color: var(--purple-400); }

/* ====== STICKY CTA ====== */
.sticky-cta {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.9); border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill); padding: 0.6rem 0.8rem 0.6rem 1.2rem;
  display: flex; gap: 1rem; align-items: center; z-index: 998;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5); opacity: 0;
  transition: opacity 0.3s, transform 0.3s; pointer-events: none;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-cta strong { font-size: 0.85rem; }
.sticky-cta small { color: var(--text-muted); font-size: 0.7rem; }

/* ====== FOOTER ====== */
footer {
  background: #000; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem var(--side-padding) 2rem;
}
.footer-content {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-subtle);
}
.footer-brand p { color: var(--text-muted); line-height: 1.7; margin-top: 1rem; max-width: 300px; font-size: 0.9rem; }
.footer-column h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--purple-400); padding-left: 4px; }
.footer-bottom { padding-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ====== MODALS ====== */
.modal {
  display: none; position: fixed; z-index: 10000; inset: 0;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
}
.modal.open { display: flex; align-items: center; justify-content: center; padding: 2rem; }
.modal-content {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.modal-brand {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;
  font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: -0.4px;
}
.modal-brand img { filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4)); }
.modal-header-row {
  display: flex; justify-content: space-between; align-items: center;
}
.modal-header h2 { font-size: 1.5rem; }
.modal-close { color: #aaa; font-size: 1.8rem; cursor: pointer; line-height: 1; transition: 0.3s; background: none; border: none; }
.modal-close:hover { color: #fff; }
.modal-body { padding: 2rem; }
.modal-subtitle { color: var(--text-tertiary); margin-bottom: 1.5rem; font-size: 0.9rem; }
.signup-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 0.7rem 0.9rem; color: #fff;
  font-size: 0.9rem; transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
.form-group input.input-error, .form-group select.input-error, .form-group textarea.input-error {
  border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-hint { color: var(--text-muted); font-size: 0.8rem; }
.checkbox-group label { display: flex; align-items: start; gap: 0.5rem; cursor: pointer; }
.checkbox-group span { color: var(--text-secondary); font-size: 0.85rem; }
.checkbox-group a { color: var(--purple-400); text-decoration: underline; }
.form-footer { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }
.form-footer svg { vertical-align: middle; }
.success-message { text-align: center; padding: 2rem; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { color: #fff; }
.success-message h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.success-message p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem; }
.btn-loading { position: relative; pointer-events: none; opacity: 0.7; }
.btn-loading::after {
  content: ""; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ====== SCROLL TO TOP ====== */
.scroll-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 997;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-500); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(168,85,247,0.4);
  opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none;
  transform: translateY(10px);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(168,85,247,0.6); }

/* ====== COOKIE CONSENT ====== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(0,0,0,0.97); border-top: 1px solid var(--border-subtle);
  padding: 1.25rem var(--side-padding); display: none;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.cookie-banner.visible { display: flex; }
.cookie-banner-content {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  max-width: 960px; width: 100%; justify-content: center;
}
.cookie-banner p { color: var(--text-secondary); font-size: 0.85rem; flex: 1; min-width: 200px; margin: 0; }
.cookie-banner a { color: var(--purple-400); text-decoration: underline; }
.cookie-options { display: flex; gap: 1rem; align-items: center; }
.cookie-opt { display: flex; align-items: center; gap: 0.3rem; color: var(--text-secondary); font-size: 0.8rem; cursor: pointer; }
.cookie-opt input[type="checkbox"] { accent-color: var(--purple-500); cursor: pointer; }
.cookie-opt input:disabled { opacity: 0.6; cursor: default; }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary { padding: 0.5rem 1.2rem; font-size: 0.8rem; white-space: nowrap; }
.cookie-reject-btn { background: transparent !important; border: 1px solid var(--border-subtle) !important; color: var(--text-secondary) !important; }
.cookie-reject-btn:hover { border-color: var(--purple-400) !important; color: #fff !important; }
@media (max-width: 640px) {
  .cookie-banner-content { flex-direction: column; text-align: center; }
  .cookie-options { justify-content: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
}

/* ====== NOSCRIPT ====== */
noscript .noscript-msg {
  background: var(--bg-primary); color: var(--text-secondary);
  padding: 4rem 2rem; text-align: center; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
noscript .noscript-msg h1 { font-size: 2rem; margin-bottom: 1rem; color: #fff; }
noscript .noscript-msg p { font-size: 1.1rem; max-width: 500px; line-height: 1.6; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .mobile-menu-btn { display: block; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --side-padding: 5%; --section-gap: 4rem; --section-gap-lg: 5rem; }
  .nav-right .btn-primary, .nav-right .btn-secondary { display: none; }
  .hero { padding-top: calc(var(--nav-height) + 2rem); min-height: auto; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-values { gap: 2rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .stat-item { justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .trust-badges { gap: 1rem; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-cta {
    width: calc(100% - 2rem); left: 1rem; right: 1rem;
    transform: none; border-radius: var(--radius-md);
    flex-direction: column; gap: 0.6rem; text-align: center;
  }
  .sticky-cta .btn-primary { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal-content { max-width: 95%; }
  .modal-body { padding: 1.5rem; }
  .dash-metrics { grid-template-columns: 1fr; }
  .dash-row { grid-template-columns: 1fr; }
  .dash-header { padding: 1rem 1.5rem; }
  .dash-header-value { font-size: 1.6rem; }
  .dash-body { padding: 1rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .section-header h2 { font-size: 1.8rem; }
}

/* ====== REDUCED MOTION ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .dashboard-mock { animation: none; }
  .dash-bar { animation: none; transform: scaleY(1); }
}

/* ====== PRINT STYLES ====== */
@media print {
  nav, .sticky-cta, .scroll-top, .cookie-banner, .mobile-nav, .modal, .hero-visual { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .hero { min-height: auto; background: none; padding: 2rem 0; }
  a { color: #000; }
  .btn-primary, .btn-secondary { border: 1px solid #333; color: #000; background: none; box-shadow: none; }
  section { page-break-inside: avoid; }
  .hero h1, .section-header h2, .cta-content h2 { color: #000; }
  .hero h1 .highlight { -webkit-text-fill-color: #333; }
  .stat-number { -webkit-text-fill-color: #333; }
}
