/* ============================================================
   WINTER TECH AI — styles.css  (LIGHT THEME)
   Master shared stylesheet. Loaded on every page.
   DO NOT duplicate :root, nav, or footer styles in page files.
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
/* Orbitron 400/700/800/900 · Space Grotesk 300/400/500/600/700 */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* ── Evening Sky Snow Theme ──────────────────────────
     Deep navy evening sky with snow-white text accents
     and rich midnight-blue primary colours.
  ─────────────────────────────────────────────────── */
  --primary:        #1565C0;
  --primary-light:  rgba(21,101,192,0.15);
  --primary-glow:   rgba(21,101,192,0.25);
  --secondary:      #0A1628;
  --accent:         #1976D2;
  --success:        #2E7D32;
  --warning:        #E65100;
  --error:          #C62828;
  --text-primary:   #E8F0FE;
  --text-secondary: #90B4D9;
  --text-muted:     #4A6FA5;
  --glass:          rgba(10,22,40,0.88);
  --glass-border:   rgba(100,160,255,0.18);
  --card-bg:        #111E35;
  --surface:        #0D1A2E;
  --surface-hover:  #152340;
  --gradient-main:  linear-gradient(135deg,#0D47A1 0%,#1565C0 50%,#1976D2 100%);
  --gradient-bg:    linear-gradient(135deg,#0A1628 0%,#0D1A2E 50%,#0A1628 100%);
  --font-display:   'Orbitron', sans-serif;
  --font-body:      'Space Grotesk', sans-serif;
  --nav-height:     72px;
  --radius:         20px;
  --radius-sm:      12px;
  --radius-pill:    50px;
  --transition:     0.3s ease;
  --max-width:      1200px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.2);
  --shadow-lg:      0 20px 60px rgba(21,101,192,0.25), 0 8px 24px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A1628; }
::-webkit-scrollbar-thumb { background: var(--gradient-main); border-radius: 3px; }
::selection { background: rgba(21,101,192,0.15); color: var(--primary); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
  position: fixed !important; left: 1rem !important; top: 1rem !important;
  width: auto !important; height: auto !important; overflow: visible !important;
  background: var(--card-bg); border: 1px solid var(--primary);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm); z-index: 10000; color: var(--primary);
}

/* ── ANIMATED BACKGROUND (light) ─────────────────────────── */
.bg-animated {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; background: var(--gradient-bg); overflow: hidden;
}
.bg-animated::before {
  content: ''; position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(21,101,192,0.07) 0%, transparent 70%);
  top: -250px; left: -250px; animation: bgFloat1 10s ease-in-out infinite;
}
.bg-animated::after {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(21,101,192,0.05) 0%, transparent 70%);
  bottom: -250px; right: -250px; animation: bgFloat2 12s ease-in-out infinite;
}
.bg-orb {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.04) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: bgPulseOrb 8s ease-in-out infinite;
}
@keyframes bgFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,80px) scale(1.15); } }
@keyframes bgFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px,-80px) scale(1.1); } }
@keyframes bgPulseOrb { 0%,100% { opacity:0.4; transform:translate(-50%,-50%) scale(1); } 50% { opacity:0.8; transform:translate(-50%,-50%) scale(1.2); } }

.particles { position: absolute; width: 100%; height: 100%; }
.particle {
  position: absolute; width: 3px; height: 3px; background: var(--primary);
  border-radius: 50%; animation: particleFloat linear infinite; opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.3; } 90% { opacity: 0.1; }
  100% { transform: translateY(-100px) translateX(60px); opacity: 0; }
}

.snowflakes { position: absolute; width: 100%; height: 100%; pointer-events: none; }
.snowflake { position: absolute; color: rgba(21,101,192,0.18); font-size: 1rem; animation: snow linear infinite; top: -50px; }
@keyframes snow {
  0%   { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.5; } 90% { opacity: 0.15; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ── PAGE LOADER ──────────────────────────────────────────── */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #111E35; display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 2rem; animation: gradientShift 2s linear infinite; background-size: 200% auto;
}
.loader-bar { width: 200px; height: 2px; background: var(--surface); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; background: var(--gradient-main); border-radius: 2px; animation: loadingBar 2s ease forwards; }
@keyframes loadingBar    { from { width:0% } to { width:100% } }
@keyframes gradientShift { 0% { background-position:0% center } 100% { background-position:200% center } }

.cursor-glow {
  width: 20px; height: 20px; background: rgba(21,101,192,0.12); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998; transition: transform 0.1s ease; mix-blend-mode: multiply;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 2rem; height: var(--nav-height);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
nav.scrolled { background: rgba(255,255,255,0.99); box-shadow: var(--shadow-md); }
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; flex-shrink: 0;
}
.logo-snowflake {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 0 20px rgba(21,101,192,0.3); animation: spinSlow 8s linear infinite; flex-shrink: 0;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.logo-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-center { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-center > li { position: relative; }
.nav-center > li > a {
  color: var(--text-secondary); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  transition: all var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-center > li > a:hover, .nav-center > li > a.active { color: var(--primary); background: var(--primary-light); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: #111E35; border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); padding: 0.5rem;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: all var(--transition); box-shadow: var(--shadow-lg); z-index: 100;
}
.nav-center > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 0.6rem 0.85rem;
  border-radius: 8px; color: var(--text-secondary); font-size: 0.82rem; transition: all var(--transition);
}
.nav-dropdown a:hover { color: var(--primary); background: var(--primary-light); }
.dd-icon {
  width: 28px; height: 28px; background: var(--primary-light); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-signin {
  color: var(--text-secondary) !important; font-size: 0.82rem; font-weight: 500;
  padding: 0.5rem 1rem; border: 1px solid transparent; border-radius: var(--radius-pill); transition: all var(--transition);
}
.nav-signin:hover { color: var(--primary) !important; border-color: var(--glass-border); background: var(--primary-light); }
.nav-cta {
  background: var(--gradient-main) !important; color: white !important;
  padding: 0.5rem 1.4rem; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600 !important;
  transition: all var(--transition) !important; box-shadow: 0 4px 16px rgba(21,101,192,0.3);
  letter-spacing: 0.03em; border: none; cursor: pointer; font-family: var(--font-body);
  display: inline-flex; align-items: center;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.45) !important; color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: #111E35; border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem;
  box-shadow: var(--shadow-md); z-index: 999;
  max-height: calc(100vh - var(--nav-height)); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-secondary); font-size: 0.9rem; padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); transition: all var(--transition); display: flex; align-items: center; gap: 10px;
}
.nav-mobile a:hover { color: var(--primary); background: var(--primary-light); }
.mob-divider { height: 1px; background: var(--glass-border); margin: 0.5rem 0; }
.mob-cta {
  background: var(--gradient-main) !important; color: white !important;
  text-align: center; justify-content: center !important;
  border-radius: var(--radius-pill) !important; padding: 0.85rem !important; font-weight: 600; margin-top: 0.5rem;
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--primary-light); border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border); padding: 0.75rem 0; overflow: hidden; white-space: nowrap;
  position: relative; z-index: 2;
}
.ticker-inner { display: inline-flex; animation: scrollLeft 30s linear infinite; gap: 3rem; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem;
  color: var(--text-secondary); padding: 0 1.5rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.ticker-item::after { content: '◆'; color: var(--primary); font-size: 0.5rem; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { position: relative; z-index: 2; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 6rem 2rem; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 12px; font-size: 0.75rem;
  color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem;
}
.sec-tag::before { content:''; width:24px; height:1px; background:var(--primary); }
.sec-tag::after  { content:''; width:80px; height:1px; background:linear-gradient(90deg,rgba(21,101,192,0.4),transparent); }
.section-title, .sec-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05; color: var(--text-primary); letter-spacing: 0.03em; margin-bottom: 1rem;
}
.section-subtitle, .sec-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; max-width: 560px; }
.gradient-text {
  background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto; animation: gradientShift 4s linear infinite;
}
.outline-text { -webkit-text-stroke: 1px rgba(21,101,192,0.4); color: transparent; }
.section-alt { background: var(--surface); }
.section-white { background: #111E35; }

/* ── GLASS CARD (light) ───────────────────────────────────── */
.glass-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-main); opacity: 0; transition: opacity var(--transition);
}
.glass-card:hover { transform: translateY(-5px); border-color: rgba(21,101,192,0.3); box-shadow: var(--shadow-lg); }
.glass-card:hover::before { opacity: 1; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; cursor: pointer; border: none; outline: none;
  text-decoration: none; transition: all var(--transition); white-space: nowrap; letter-spacing: 0.02em;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn-primary {
  background: var(--gradient-main); color: white; padding: 1rem 2.5rem;
  border-radius: var(--radius-pill); font-size: 0.95rem; box-shadow: 0 4px 20px rgba(21,101,192,0.3);
}
.btn-primary:hover { color: white; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(21,101,192,0.45); }
.btn-secondary {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  padding: 1rem 2.5rem; border-radius: var(--radius-pill); font-size: 0.95rem;
}
.btn-secondary:hover { background: var(--primary-light); color: var(--primary); transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--text-primary); border: 1.5px solid var(--glass-border);
  padding: 1rem 2.5rem; border-radius: var(--radius-pill); font-size: 0.95rem;
}
.btn-outline:hover { background: var(--surface); border-color: rgba(15,23,42,0.25); transform: translateY(-3px); }
.btn-lg   { padding: 1.2rem 3rem !important; font-size: 1.05rem !important; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light);
  border: 1px solid rgba(21,101,192,0.2); border-radius: var(--radius-pill);
  padding: 0.4rem 1.2rem; font-size: 0.78rem; color: var(--primary); letter-spacing: 0.05em; font-weight: 500;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light);
  border: 1px solid rgba(21,101,192,0.2); border-radius: var(--radius-pill);
  padding: 0.5rem 1.5rem; font-size: 0.82rem; color: var(--primary); margin-bottom: 2rem;
  animation: glowBadge 3s ease-in-out infinite; width: fit-content;
}
@keyframes glowBadge { 0%,100% { box-shadow: 0 0 10px rgba(21,101,192,0.1); } 50% { box-shadow: 0 0 25px rgba(21,101,192,0.25); } }
.badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: blinkDot 1.5s ease-in-out infinite; flex-shrink: 0; }
@keyframes blinkDot { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal       { opacity:0; transform:translateY(28px);  transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal-left  { opacity:0; transform:translateX(-28px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal-right { opacity:0; transform:translateX(28px);  transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity:1; transform:translate(0); }

/* ── TERMINAL (light) ─────────────────────────────────────── */
.terminal { background: #0A1628; border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.terminal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-main); }
.t-bar { background: var(--surface); padding: 10px 16px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; gap: 8px; }
.t-dot { width:10px; height:10px; border-radius:50%; }
.t-dot.r { background:#ff5f57; } .t-dot.y { background:#febc2e; } .t-dot.g { background:#28c840; }
.t-title  { font-size:0.65rem; color:var(--text-muted); letter-spacing:0.1em; margin-left:auto; }
.t-body   { padding:1.5rem; display:flex; flex-direction:column; gap:8px; min-height:260px; }
.t-line   { font-size:0.75rem; line-height:1.6; display:flex; align-items:flex-start; gap:10px; font-family:'Courier New',monospace; }
.t-line .prompt { color:var(--primary); flex-shrink:0; }
.t-line.cmd  .text { color:var(--text-primary); } .t-line.out .text { color:var(--text-secondary); }
.t-line.ok   .text { color:var(--success); }       .t-line.warn .text { color:var(--warning); }
.blink { display:inline-block; width:8px; height:14px; background:var(--primary); margin-left:4px; animation:blinkCursor 1s step-end infinite; vertical-align:middle; }
@keyframes blinkCursor { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ── PRICING CARDS (light) ────────────────────────────────── */
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(21,101,192,0.3); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--primary); background: linear-gradient(135deg,rgba(21,101,192,0.03),rgba(14,165,233,0.03));
  box-shadow: 0 8px 32px rgba(21,101,192,0.15);
}
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-main); }
.pricing-badge {
  position: absolute; top: -1px; right: 24px; background: var(--gradient-main); color: white;
  font-size: 0.62rem; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; letter-spacing: 0.1em; text-transform: uppercase;
}
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 1.5rem 0; }
.price-features li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.fi { color:var(--success); flex-shrink:0; margin-top:1px; }

/* ── TOAST (light) ────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: #111E35; border: 1px solid var(--glass-border); border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: 10px; font-size: 0.88rem;
  color: var(--text-primary); z-index: 9999; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-lg); white-space: nowrap;
}
.toast.show  { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(5,150,105,0.4); }
.toast.error   { border-color: rgba(220,38,38,0.4); }

/* ── FOOTER (light) ───────────────────────────────────────── */
.site-footer { background: #111E35; border-top: 1px solid var(--glass-border); position: relative; z-index: 2; box-shadow: 0 -4px 24px rgba(21,101,192,0.05); }
.footer-main { max-width: var(--max-width); margin: 0 auto; padding: 4rem 2rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 1rem; text-decoration: none; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem; color: var(--text-secondary); }
.footer-social  { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--glass-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 0.85rem; transition: all var(--transition); text-decoration: none; }
.social-btn:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-light); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 1.5rem 2rem; border-top: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.powered-by { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--text-muted); transition: color var(--transition); }
.powered-by:hover { color: var(--primary); }
.powered-by span  { color: var(--primary); }

/* ── TRUST BAR (new) ──────────────────────────────────────── */
.trust-bar { background: #0A1628; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 1.25rem 2rem; text-align: center; position: relative; z-index: 2; }
.trust-bar p { font-size: 0.82rem; color: var(--text-secondary); letter-spacing: 0.04em; margin-bottom: 0.6rem; }
.trust-bar-items { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-bar-item { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; padding: 0 1.25rem; display: flex; align-items: center; gap: 6px; }
.trust-bar-item + .trust-bar-item { border-left: 1px solid var(--glass-border); }

/* ── ONBOARDING CHECKLIST ─────────────────────────────────── */
.onboarding-card { background: #111E35; border: 1px solid var(--glass-border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 1.75rem 2rem; margin-bottom: 2rem; box-shadow: var(--shadow-sm); }
.onboarding-progress-bar { width: 100%; height: 6px; background: var(--surface); border-radius: 3px; margin-bottom: 1.25rem; overflow: hidden; }
.onboarding-progress-fill { height: 100%; background: var(--gradient-main); border-radius: 3px; transition: width 0.4s ease; }
.onboarding-step { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 8px; border-bottom: 1px solid var(--surface); cursor: pointer; transition: all var(--transition); border-radius: 8px; }
.onboarding-step:last-of-type { border-bottom: none; }
.onboarding-step:hover { background: var(--surface); }
.step-check { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--glass-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; color: transparent; transition: all var(--transition); }
.step-check.done { background: var(--success); border-color: var(--success); color: white; }
.step-label { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
.step-label.done { color: var(--text-muted); text-decoration: line-through; }

/* ── USAGE METERS ─────────────────────────────────────────── */
.usage-meter-bar { width: 100%; height: 8px; background: var(--surface); border-radius: 4px; overflow: hidden; margin: 0.5rem 0; }
.usage-meter-fill { height: 100%; border-radius: 4px; background: var(--gradient-main); transition: width 0.6s ease; }
.usage-meter-fill.warning { background: linear-gradient(90deg, var(--warning), #F59E0B); }
.usage-meter-fill.danger  { background: linear-gradient(90deg, var(--error), #EF4444); }

/* ── STAT CARD ────────────────────────────────────────────── */
.stat-card { background: #111E35; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 1.5rem; box-shadow: var(--shadow-sm); text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ── COOKIE CONSENT ───────────────────────────────────────── */
#cookie-consent-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: #111E35;
  border-top: 1px solid var(--glass-border); box-shadow: 0 -4px 24px rgba(21,101,192,0.1);
  padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; z-index: 9990; transform: translateY(100%); transition: transform 0.4s ease; flex-wrap: wrap;
}
#cookie-consent-bar.visible { transform: translateY(0); }
#cookie-consent-bar p { font-size: 0.85rem; color: var(--text-secondary); }
#cookie-consent-bar p a { color: var(--primary); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept { background: var(--primary); color: white; border: none; border-radius: var(--radius-pill); padding: 0.5rem 1.25rem; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all var(--transition); }
.cookie-accept:hover { background: var(--accent); }
.cookie-decline { background: transparent; color: var(--text-secondary); border: 1px solid var(--glass-border); border-radius: var(--radius-pill); padding: 0.5rem 1.25rem; font-size: 0.82rem; cursor: pointer; font-family: var(--font-body); transition: all var(--transition); }
.cookie-decline:hover { border-color: var(--text-muted); color: var(--text-primary); }

/* ── FORM INPUTS (light) ──────────────────────────────────── */
.form-input, input[type="text"], input[type="email"], input[type="password"], textarea, select {
  background: #111E35; border: 1.5px solid var(--glass-border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.75rem 1rem; width: 100%; transition: all var(--transition); outline: none;
}
.form-input::placeholder, input::placeholder, textarea::placeholder { color: var(--text-muted); }
.form-input:focus, input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 4rem 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .trust-bar-item + .trust-bar-item { border-left: none; border-top: 1px solid var(--glass-border); }
}
@media (max-width: 480px) {
  .footer-main   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookie-consent-bar { flex-direction: column; align-items: flex-start; }
}
