/* ===== PROVEN. — Main Stylesheet ===== */

:root {
  --accent: #80F9D6;
  --accent-dim: rgba(128, 249, 214, 0.12);
  --accent-glow: rgba(128, 249, 214, 0.3);
  --bg-dark: #080d14;
  --bg-card: #0d1520;
  --bg-card2: #111d2a;
  --bg-nav: rgba(8, 13, 20, 0.94);
  --text-white: #eef4ff;
  --text-muted: #8899bb;
  --text-dim: #4d6070;
  --border: rgba(128, 249, 214, 0.1);
  --border-hover: rgba(128, 249, 214, 0.32);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(128,249,214,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-muted); }
a { color: var(--accent); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

.accent { color: var(--accent); }
.white { color: var(--text-white); }
.muted { color: var(--text-muted); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.text-center { text-align: center; }
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
  letter-spacing: 0.01em; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08); opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: var(--accent); color: #080d14;
  box-shadow: 0 4px 20px rgba(128,249,214,0.2);
}
.btn-primary:hover {
  background: #a0fce3; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(128,249,214,0.4); opacity: 1;
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim); transform: translateY(-2px); opacity: 1;
  box-shadow: 0 4px 20px rgba(128,249,214,0.12);
}
.btn-ghost {
  background: rgba(255,255,255,0.05); color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn svg { flex-shrink: 0; }

/* ── Alerts ── */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 16px; border-radius: 10px; font-size: 0.86rem;
  margin-bottom: 18px;
}
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.25);  color: #fca5a5; }
.alert-success { background: rgba(128,249,214,0.08); border: 1px solid var(--border-hover);   color: var(--accent); }
.alert svg { flex-shrink: 0; margin-top: 1px; }
.alert ul { margin: 0; padding-left: 4px; list-style: none; }
.alert ul li::before { content: '· '; }
.alert a { color: inherit; text-decoration: underline; }

/* ── Role cards (register) ── */
.role-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.role-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; cursor: pointer; transition: all var(--transition);
  display: flex; flex-direction: column; gap: 3px; position: relative;
}
.role-card input[type="radio"] { position: absolute; opacity: 0; }
.role-card:hover { border-color: var(--border-hover); background: rgba(128,249,214,0.03); }
.role-card.selected { border-color: var(--accent); background: var(--accent-dim); }
.role-card__icon { color: var(--accent); margin-bottom: 4px; }
.role-card__label { font-size: 0.85rem; font-weight: 600; color: var(--text-white); }
.role-card__sub { font-size: 0.72rem; color: var(--text-dim); }

/* ── Auth page ── */
.auth-page {
  min-height: calc(100vh - 68px); display: flex; align-items: center;
  justify-content: center; padding: 40px 20px;
}
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  width: 100%; max-width: 460px;
}
.auth-logo { margin-bottom: 28px; }
.auth-logo img { height: 36px; }
.auth-card h2 { margin-bottom: 4px; font-size: 1.5rem; }
.subtitle { color: var(--text-muted); font-size: 0.9rem; }
.auth-footer { color: var(--text-dim); font-size: 0.86rem; margin-top: 16px; }

/* ── Tags ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.73rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.tag-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-hover); }
.tag-white { background: rgba(255,255,255,0.07); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1); }
.tag-student { background: rgba(99,179,237,0.1); color: #63b3ed; border: 1px solid rgba(99,179,237,0.22); }
.tag-nqp { background: rgba(154,117,234,0.1); color: #b794f4; border: 1px solid rgba(154,117,234,0.22); }
.tag-qualified { background: rgba(252,129,74,0.1); color: #fc814a; border: 1px solid rgba(252,129,74,0.22); }
.tag-org { background: rgba(128,249,214,0.08); color: var(--accent); border: 1px solid var(--border-hover); }

/* ── Navbar ── */
.navbar {
  position: sticky !important; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg-nav); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
/* Inner page top padding — prevents content sitting flush against navbar */
.page-wrap { padding-top: 48px; }
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(128,249,214,0.15);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar__logo img { height: 38px; display: block; transition: transform var(--transition); }
.navbar__logo img:hover { transform: scale(1.04); }
/* inline nav always hidden — hamburger only on all devices */
.navbar__nav { display: none; }
.navbar__actions { display: flex; align-items: center; gap: 10px; }
.navbar__hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  border-radius: 8px; transition: background var(--transition);
}
.navbar__hamburger:hover { background: rgba(128,249,214,0.08); }
.navbar__hamburger span { display: block; width: 22px; height: 2px; background: var(--text-white); transition: all var(--transition); border-radius: 2px; }
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile / Hamburger dropdown ── */
.navbar__mobile {
  display: none;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}
.navbar__mobile.open { display: block; }
.navbar__mobile a {
  display: block; padding: 13px 28px;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  transition: color var(--transition), background var(--transition);
  border-left: 2px solid transparent;
}
.navbar__mobile a:hover {
  color: var(--text-white); background: rgba(128,249,214,0.04);
  border-left-color: var(--accent); opacity: 1;
}
.navbar__mobile a.active { color: var(--accent); border-left-color: var(--accent); }
.navbar__mobile .mobile-divider {
  height: 1px; background: var(--border); margin: 10px 28px;
}
.navbar__mobile .mobile-actions {
  display: flex; gap: 10px; padding: 10px 28px 4px;
}

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 68px); display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -15%, rgba(128,249,214,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 55%, rgba(128,249,214,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 10% 70%, rgba(99,130,237,0.04) 0%, transparent 60%);
}
.hero__orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(128,249,214,0.06) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb:nth-child(1) { width: 600px; height: 600px; top: -200px; left: -100px; animation-delay: 0s; }
.hero__orb:nth-child(2) { width: 400px; height: 400px; top: 30%; right: -100px; animation-delay: -4s; }
.hero__orb:nth-child(3) { width: 300px; height: 300px; bottom: -100px; left: 30%; animation-delay: -8s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.96); }
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: linear-gradient(rgba(128,249,214,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(128,249,214,1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px; padding: 7px 16px;
  background: var(--accent-dim); border: 1px solid var(--border-hover);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  animation: fadeDown 0.7s ease both;
}
.hero__eyebrow .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.6); } }

.hero__title { animation: fadeUp 0.8s 0.1s ease both; }
.hero__title .line-accent {
  color: var(--accent);
  background: linear-gradient(135deg, #80F9D6 0%, #a0fce3 50%, #60e8c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite alternate;
  background-size: 200% 200%;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

/* ── Hero trust badges ── */
.hero__trust {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-dim); margin-top: 20px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero__trust svg { color: var(--accent); }
/* Slogan in navbar (visible on wide screens) */
@media (min-width: 1100px) {
  .navbar__slogan { display: inline !important; }
}
/* Compact slogan used in footer */
.slogan-inline {
  font-size: 0.82rem; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.02em;
}
.slogan-inline .s-accent { color: var(--accent); }
.hero__subtitle {
  font-size: 1.12rem; color: var(--text-muted); max-width: 560px; margin-bottom: 36px;
  line-height: 1.75; animation: fadeUp 0.8s 0.2s ease both;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero__stats { display: flex; gap: 40px; margin-top: 64px; animation: fadeUp 0.8s 0.45s ease both; }
.hero__stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.hero__stat span { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 500; }
.hero__divider { width: 1px; background: var(--border); align-self: stretch; }

.hero__visual { position: relative; animation: fadeLeft 0.9s 0.2s ease both; }
@keyframes fadeLeft { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:none; } }
.hero__mockup {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-card), var(--shadow-glow), 0 0 0 1px var(--border);
  position: relative;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero__mockup::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: shimmerLine 3s ease infinite;
}
@keyframes shimmerLine {
  0%,100% { opacity:0.6; } 50% { opacity:1; }
}
.mockup__bar {
  display: flex; gap: 6px; margin-bottom: 24px; align-items: center;
}
.mockup__dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup__dot:nth-child(1) { background: #ff5f57; }
.mockup__dot:nth-child(2) { background: #febc2e; }
.mockup__dot:nth-child(3) { background: #28c840; }
.mockup__label { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; text-align: center; flex: 1; }
.mockup__stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.mockup__stat {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 10px; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.mockup__stat:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.mockup__stat .val { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.mockup__stat .lbl { font-size: 0.66rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.mockup__item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--bg-card2); border-radius: 10px;
  border: 1px solid var(--border); margin-bottom: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.mockup__item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.mockup__item:last-child { margin-bottom: 0; }
.mockup__icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup__info .name { font-size: 0.82rem; font-weight: 600; color: var(--text-white); }
.mockup__info .sub { font-size: 0.7rem; color: var(--text-dim); }
.mockup__badge { margin-left: auto; padding: 3px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 600; white-space: nowrap; }
.badge-done { background: rgba(128,249,214,0.12); color: var(--accent); }
.badge-pend { background: rgba(252,129,74,0.12); color: #fc814a; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.03rem; max-width: 560px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}

/* ── Feature Cards ── */
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(128,249,214,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-dim); border: 1px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 20px rgba(128,249,214,0.2);
}
.feature-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.65; }

/* ── User Tabs ── */
.user-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.user-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px; font-size: 0.86rem;
  font-weight: 600; cursor: pointer; border: 1.5px solid var(--border);
  transition: all var(--transition); background: var(--bg-card);
  color: var(--text-muted);
}
.user-tab svg { opacity: 0.6; transition: opacity var(--transition); }
.user-tab.active, .user-tab:hover {
  background: var(--accent-dim); color: var(--accent);
  border-color: var(--border-hover);
}
.user-tab.active svg, .user-tab:hover svg { opacity: 1; color: var(--accent); }
.user-tab-content { display: none; animation: fadeUp 0.5s ease both; }
.user-tab-content.active { display: grid; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline__item { position: relative; margin-bottom: 32px; }
.timeline__item::before {
  content: ''; position: absolute; left: -26px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--bg-dark), 0 0 0 5px rgba(128,249,214,0.2);
  animation: timelinePulse 2.5s ease infinite;
}
@keyframes timelinePulse { 0%,100% { box-shadow: 0 0 0 3px var(--bg-dark), 0 0 0 5px rgba(128,249,214,0.2); } 50% { box-shadow: 0 0 0 3px var(--bg-dark), 0 0 0 8px rgba(128,249,214,0.08); } }
.timeline__step { font-size: 0.73rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.timeline__item h4 { font-size: 0.95rem; margin-bottom: 5px; }
.timeline__item p { font-size: 0.86rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent); background: var(--bg-card2);
  box-shadow: 0 0 80px rgba(128,249,214,0.08), 0 0 0 1px rgba(128,249,214,0.2);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.pricing__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--accent); color: #080d14;
  padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing__plan { font-size: 0.76rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.09em; font-weight: 600; margin-bottom: 6px; }
.pricing__name { font-size: 1.35rem; font-weight: 800; color: var(--text-white); margin-bottom: 8px; }
.pricing__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing__price .amount { font-size: 2.8rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.pricing__price .per { font-size: 0.85rem; color: var(--text-dim); }
.pricing__desc { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing__features { list-style: none; margin-bottom: 28px; }
.pricing__features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.86rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features li .feat-check { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pricing__features li.miss { color: var(--text-dim); }
.pricing__features li.miss .feat-check { color: var(--text-dim); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.testimonial-card__quote {
  position: absolute; top: 16px; right: 20px;
  font-size: 5rem; color: rgba(128,249,214,0.06); font-family: Georgia, serif;
  line-height: 1; pointer-events: none; font-weight: 700;
}
.testimonial-card p { font-size: 0.92rem; line-height: 1.75; color: var(--text-white); margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--accent); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-dim); border: 2px solid var(--border-hover);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent); font-size: 0.88rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.86rem; color: var(--text-white); }
.testimonial-author span { font-size: 0.76rem; color: var(--text-dim); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 80px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 520px; margin: 0 auto 36px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(128,249,214,0.05), transparent 70%);
  pointer-events: none; animation: ctaGlow 5s ease-in-out infinite alternate;
}
@keyframes ctaGlow { 0% { opacity:0.6; transform:translate(-50%,-50%) scale(0.9); } 100% { opacity:1; transform:translate(-50%,-50%) scale(1.1); } }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 10px; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex;
  align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 0.94rem; color: var(--text-white);
  background: var(--bg-card); user-select: none; transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-card2); }
.faq-icon { color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px; font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; background: var(--bg-card);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── Stats Bar ── */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 0; background: var(--bg-card);
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 2.4rem; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.stat-item span { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 500; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(128,249,214,0.1));
}
.step { text-align: center; padding: 0 16px; }
.step__num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--bg-card2); border: 2px solid var(--accent);
  color: var(--accent); font-size: 1.05rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(128,249,214,0.15);
  transition: all var(--transition);
}
.step:hover .step__num { transform: scale(1.1); box-shadow: 0 0 40px rgba(128,249,214,0.3); }
.step h4 { font-size: 0.93rem; margin-bottom: 8px; }
.step p { font-size: 0.81rem; }

/* ── Trust Bar ── */
.trust-bar { padding: 40px 0; }
.trust-bar__label { text-align: center; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 600; margin-bottom: 28px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-logo {
  padding: 10px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 0.8rem; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.03em; transition: all var(--transition);
}
.trust-logo:hover { border-color: var(--border-hover); color: var(--text-muted); }

/* ── Dashboard Preview ── */
.dash-preview {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dash-header {
  background: var(--bg-dark); border-bottom: 1px solid var(--border);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
}
.dash-header .logo-text { font-size: 1rem; font-weight: 800; color: var(--accent); }
.dash-body { display: flex; height: 400px; }
.dash-sidebar {
  width: 200px; background: var(--bg-card2);
  border-right: 1px solid var(--border); padding: 16px 0;
  display: flex; flex-direction: column; gap: 2px; flex-shrink: 0;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; font-size: 0.82rem; color: var(--text-dim);
  cursor: pointer; transition: all var(--transition);
}
.dash-nav-item svg { flex-shrink: 0; }
.dash-nav-item.active {
  background: var(--accent-dim); color: var(--accent);
  border-right: 2px solid var(--accent);
}
.dash-nav-item:hover { color: var(--text-white); background: rgba(255,255,255,0.04); }
.dash-content { flex: 1; padding: 20px; overflow: auto; }

/* ── Progress Bar ── */
.progress-bar {
  height: 6px; background: var(--border); border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  background: linear-gradient(90deg, var(--accent), #a0fce3);
}
.progress-fill[data-width] { width: 0; }
.progress-fill.animated { width: var(--target-width); }

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 48px; position: relative;
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(128,249,214,0.07) 0%, transparent 70%);
}
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px; width: 100%; max-width: 480px;
  position: relative; z-index: 1;
  animation: scaleIn 0.5s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes scaleIn { from { opacity:0; transform:scale(0.96) translateY(12px); } to { opacity:1; transform:none; } }
.auth-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 44px; }
.auth-logo .logo-text { font-size: 2rem; font-weight: 800; color: var(--accent); }
.auth-card h2 { text-align: center; font-size: 1.5rem; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; font-size: 0.86rem; color: var(--text-dim); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 7px; letter-spacing: 0.02em;
}
.form-control {
  width: 100%; padding: 12px 16px; background: var(--bg-dark);
  border: 1.5px solid var(--border); border-radius: 10px;
  color: var(--text-white); font-size: 0.9rem;
  transition: all var(--transition); outline: none; font-family: inherit;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(128,249,214,0.1); }
.form-control::placeholder { color: var(--text-dim); }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2380F9D6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.76rem; color: var(--text-dim); margin-top: 5px; }
.form-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.form-divider span { font-size: 0.78rem; color: var(--text-dim); white-space: nowrap; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: 0.82rem; color: var(--text-dim); cursor: pointer; line-height: 1.55; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 0.84rem; color: var(--text-dim); }
.auth-footer a { color: var(--accent); font-weight: 600; }

.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
.role-card {
  padding: 16px 12px; border-radius: 10px; border: 1.5px solid var(--border);
  cursor: pointer; text-align: center; transition: all var(--transition);
  background: var(--bg-dark); display: block;
}
.role-card input[type="radio"] { display: none; }
.role-card.selected, .role-card:has(input:checked) {
  border-color: var(--accent); background: var(--accent-dim);
  box-shadow: 0 0 20px rgba(128,249,214,0.08);
}
.role-card__icon { margin-bottom: 8px; color: var(--accent); display: flex; justify-content: center; }
.role-card__name { font-size: 0.82rem; font-weight: 600; color: var(--text-white); }

/* ── Footer ── */
.footer {
  background: #050810; border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer__brand img { height: 36px; margin-bottom: 16px; display: block; }
.footer__brand .logo-text { font-size: 1.6rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; display: block; }
.footer__brand p { font-size: 0.85rem; color: var(--text-dim); max-width: 280px; line-height: 1.65; }
.footer__legal-info { margin-top: 20px; }
.footer__legal-info p { font-size: 0.76rem; color: var(--text-dim); line-height: 1.65; }
.footer__col h4 { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a { color: var(--text-dim); font-size: 0.85rem; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer__col ul li a:hover { color: var(--text-white); opacity: 1; }
.footer__col ul li a svg { opacity: 0; transition: opacity var(--transition), transform var(--transition); }
.footer__col ul li a:hover svg { opacity: 0.6; transform: translateX(2px); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer__legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal-links a { font-size: 0.78rem; color: var(--text-dim); transition: color var(--transition); }
.footer__legal-links a:hover { color: var(--text-muted); opacity: 1; }
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px;
  background: rgba(128,249,214,0.05); border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.72rem; color: var(--text-dim);
}
.footer__badge svg { color: var(--accent); flex-shrink: 0; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--border-hover); color: var(--accent); transform: translateY(-2px); opacity: 1; }

/* ── Legal Pages ── */
.legal-page { padding-top: 68px; }
.legal-hero { padding: 64px 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.legal-hero .tag { margin-bottom: 16px; }
.legal-body { padding: 64px 0; }
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; color: var(--text-white); }
.legal-content p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 12px 0 16px 24px; }
.legal-content li { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 6px; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text-white); }
.legal-sidebar {
  position: sticky; top: 88px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.legal-sidebar h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-dim); margin-bottom: 14px; font-weight: 700; }
.legal-sidebar ul { list-style: none; }
.legal-sidebar li { margin-bottom: 8px; }
.legal-sidebar a { font-size: 0.84rem; color: var(--text-dim); transition: color var(--transition); }
.legal-sidebar a:hover { color: var(--accent); opacity: 1; }
.legal-meta { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-top: 20px; }
.legal-meta p { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 4px; }
.legal-meta p:last-child { margin-bottom: 0; }

/* ── Error Pages ── */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(128,249,214,0.06) 0%, transparent 70%);
}
.error-code {
  font-size: clamp(5rem, 15vw, 9rem); font-weight: 800;
  color: transparent; -webkit-text-stroke: 2px rgba(128,249,214,0.25);
  line-height: 1; margin-bottom: 12px; letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(128,249,214,0.4), rgba(128,249,214,0.05));
  -webkit-background-clip: text; background-clip: text;
  animation: fadeUp 0.7s ease both;
}
.error-title { font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 14px; animation: fadeUp 0.7s 0.1s ease both; }
.error-desc { max-width: 440px; margin: 0 auto 36px; animation: fadeUp 0.7s 0.2s ease both; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9999;
  max-width: 520px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--bg-card2); border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner__top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cookie-banner__icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.cookie-banner__title { font-size: 0.96rem; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.cookie-banner__text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.cookie-banner__text a { color: var(--accent); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1; justify-content: center; min-width: 120px; }

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(5,8,16,0.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cookie-modal-overlay.visible { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: var(--bg-card2); border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg); padding: 36px; max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.95); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal-overlay.visible .cookie-modal { transform: scale(1); }
.cookie-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cookie-modal__header h3 { font-size: 1.15rem; }
.cookie-modal__close { background: none; border: none; color: var(--text-dim); cursor: pointer; padding: 4px; transition: color var(--transition); }
.cookie-modal__close:hover { color: var(--text-white); }
.cookie-category {
  padding: 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
}
.cookie-category__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cookie-category__name { font-size: 0.9rem; font-weight: 600; color: var(--text-white); }
.cookie-category p { font-size: 0.82rem; }
.cookie-toggle {
  position: relative; width: 44px; height: 24px; flex-shrink: 0;
}
.cookie-toggle input { display: none; }
.cookie-toggle__slider {
  position: absolute; inset: 0; border-radius: 24px;
  background: var(--border); cursor: pointer; transition: background 0.25s ease;
}
.cookie-toggle__slider::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  border-radius: 50%; background: white; top: 3px; left: 3px;
  transition: transform 0.25s ease;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--accent); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { cursor: not-allowed; opacity: 0.6; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.reveal { opacity:0; transform:translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.revealed { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.revealed { opacity:1; transform:none; }
.reveal-scale { opacity:0; transform:scale(0.94); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.revealed { opacity:1; transform:none; }

/* Stagger children */
.stagger > * { opacity:0; transform:translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.revealed > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.stagger.revealed > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.stagger.revealed > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.19s; }
.stagger.revealed > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.26s; }
.stagger.revealed > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.33s; }
.stagger.revealed > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.40s; }
.stagger.revealed > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.47s; }
.stagger.revealed > *:nth-child(8) { opacity:1; transform:none; transition-delay: 0.54s; }
.stagger.revealed > *:nth-child(9) { opacity:1; transform:none; transition-delay: 0.61s; }
.stagger.revealed > *:nth-child(n+10) { opacity:1; transform:none; transition-delay: 0.65s; }

/* Marquee trust strip */
.trust-marquee { overflow: hidden; position: relative; }
.trust-marquee__track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-marquee__track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.trust-marquee::before, .trust-marquee::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:1; pointer-events:none;
}
.trust-marquee::before { left:0; background:linear-gradient(to right, var(--bg-dark), transparent); }
.trust-marquee::after { right:0; background:linear-gradient(to left, var(--bg-dark), transparent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .navbar__nav, .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile {
    display: flex; flex-direction: column;
    background: var(--bg-nav); padding: 12px 24px 20px;
    border-top: 1px solid var(--border); backdrop-filter: blur(20px);
  }
  .navbar__mobile a { padding: 12px 0; color: var(--text-muted); font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .navbar__mobile a:last-child { border-bottom: none; color: var(--accent); font-weight: 700; }
  .footer__grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 24px; }
  .section { padding: 64px 0; }
  .dash-body { flex-direction: column; height: auto; }
  .dash-sidebar { width: 100%; flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .dash-nav-item { white-space: nowrap; }
  .cookie-banner { left: 12px; right: 12px; transform: translateX(0) translateY(120px); max-width: none; }
  .cookie-banner.visible { transform: translateX(0) translateY(0); }
  .legal-content h2 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 13px 24px; font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .role-grid { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { flex: none; width: 100%; }
}
