/* ============================================================
   TECH PRACTICE LAB — Shared Stylesheet
   Palette: Cyan + Blue (Neon) | Light default | Dark toggle
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --cyan-dark: #0891b2;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --neon-cyan: #00f5ff;
  --neon-blue: #0080ff;

  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: rgba(6,182,212,0.15);
  --border-subtle: #e2e8f0;
  --text: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --glass-bg: rgba(255,255,255,0.85);
  --glass-border: rgba(6,182,212,0.15);
  --nav-bg: rgba(255,255,255,0.92);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(6,182,212,0.18);
  --shadow-neon: 0 0 20px rgba(6,182,212,0.3), 0 0 40px rgba(6,182,212,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

.dark {
  --bg: #030712;
  --bg-2: #0f172a;
  --bg-3: #1e293b;
  --surface: #0f172a;
  --surface-2: #1e293b;
  --border: rgba(6,182,212,0.15);
  --border-subtle: #1e293b;
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #475569;
  --glass-bg: rgba(15,23,42,0.85);
  --glass-border: rgba(6,182,212,0.12);
  --nav-bg: rgba(3,7,18,0.95);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 12px 40px rgba(6,182,212,0.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; transition: background 0.3s, color 0.3s; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.2s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--cyan), var(--blue)); border-radius: 3px; }
::selection { background: rgba(6,182,212,0.25); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { line-height: 1.1; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-2); }

/* ── Utility Classes ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.neon-text {
  background: linear-gradient(90deg, #00f5ff, #0080ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
}
.tag-cyan { background: rgba(6,182,212,0.1); color: var(--cyan); border: 1px solid rgba(6,182,212,0.2); }
.tag-blue { background: rgba(59,130,246,0.1); color: var(--blue); border: 1px solid rgba(59,130,246,0.2); }
.tag-green { background: rgba(34,197,94,0.1); color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.tag-orange { background: rgba(249,115,22,0.1); color: #f97316; border: 1px solid rgba(249,115,22,0.2); }
.tag-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.2); }
.tag-red { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.7rem 1.6rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--cyan-light), var(--blue-dark)); box-shadow: 0 8px 30px rgba(6,182,212,0.45); transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border-subtle);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1.5px solid rgba(6,182,212,0.4);
}
.btn-outline:hover { background: rgba(6,182,212,0.08); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-white { background: #fff; color: var(--cyan-dark); }
.btn-white:hover { background: #f0fdff; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(6,182,212,0.25); }
.card-neon { border-color: rgba(6,182,212,0.2); background: linear-gradient(135deg, rgba(6,182,212,0.04), rgba(59,130,246,0.04)); }

/* ── Progress Bar ── */
.progress-bar { height: 6px; background: var(--bg-3); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 3px; transition: width 1.2s ease; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em;
}

/* ── Form Elements ── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: var(--surface-2);
  color: var(--text); font-size: 0.88rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ── Divider ── */
.divider { height: 1px; background: var(--border-subtle); margin: 1.5rem 0; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  background: rgba(6,182,212,0.08); color: var(--cyan);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem; border: 1px solid rgba(6,182,212,0.2);
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 580px; margin: 0.75rem auto 0; font-size: 1rem; }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media(max-width:1024px){
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:640px){
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── BG Patterns ── */
.bg-grid {
  background-image: linear-gradient(rgba(6,182,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bg-dots {
  background-image: radial-gradient(circle, rgba(6,182,212,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; background: transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 800; }
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(6,182,212,0.35);
  font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 12px; border-radius: 8px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-2); background: none; border: none; cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost { padding: 6px 14px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; color: var(--text-2); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.nav-btn-ghost:hover { color: var(--cyan); }
.theme-toggle {
  width: 36px; height: 36px; border-radius: 9px; border: none; cursor: pointer;
  background: var(--bg-3); color: var(--text-2); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.theme-toggle:hover { background: rgba(6,182,212,0.1); color: var(--cyan); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 36px; height: 36px; border-radius: 9px; border: none;
  background: var(--bg-3); align-items: center; justify-content: center; padding: 8px;
}
.hamburger span { display: block; height: 2px; width: 18px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* Mega menu */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 480px; background: var(--glass-bg); backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); padding: 1rem;
  opacity: 0; visibility: hidden; transition: all 0.2s; pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown-label { font-size: 0.7rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; padding: 0 4px; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; transition: all 0.2s; }
.dropdown-item:hover { background: rgba(6,182,212,0.07); }
.dropdown-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.dropdown-item-text { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.dropdown-item:hover .dropdown-item-text { color: var(--cyan); }
.dropdown-footer { border-top: 1px solid var(--border-subtle); margin-top: 0.75rem; padding-top: 0.75rem; }
.dropdown-footer a { font-size: 0.82rem; font-weight: 600; color: var(--cyan); display: flex; align-items: center; gap: 6px; padding: 0 4px; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  z-index: 999; overflow-y: auto; padding: 1rem 1.5rem 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav .mobile-link {
  display: flex; align-items: center; gap: 10px;
  padding: 0.75rem 1rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-2); margin-bottom: 2px; border: none; background: none; cursor: pointer; width: 100%; text-align: left;
}
.mobile-nav a:hover, .mobile-nav .mobile-link:hover { background: rgba(6,182,212,0.07); color: var(--cyan); }
.mobile-section-label { font-size: 0.7rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em; padding: 0.75rem 1rem 0.4rem; }
.mobile-divider { height: 1px; background: var(--border-subtle); margin: 0.75rem 0; }
.mobile-actions { display: flex; gap: 8px; padding: 0.75rem 0.25rem; }
.mobile-actions .btn { flex: 1; justify-content: center; }

@media(max-width:1024px){
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-btn-ghost { display: none; }
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--border-subtle); padding: 5rem 0 2rem; }
.footer-cta {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: var(--radius-lg); padding: 3rem; margin-bottom: 4rem;
  position: relative; overflow: hidden;
}
.footer-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.footer-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-cta h3 { font-size: 1.6rem; color: #fff; }
.footer-cta p { color: rgba(255,255,255,0.8); margin-top: 4px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.875rem; color: var(--text-2); margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-2); margin-bottom: 0.5rem; }
.footer-contact-icon { color: var(--cyan); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 8px; margin-top: 1.25rem; }
.social-btn { width: 36px; height: 36px; border-radius: 9px; background: var(--bg-3); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-2); transition: all 0.2s; }
.social-btn:hover { background: rgba(6,182,212,0.1); color: var(--cyan); border-color: rgba(6,182,212,0.3); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.82rem; color: var(--text-2); }
.footer-col a:hover { color: var(--cyan); }
.footer-newsletter { border-top: 1px solid var(--border-subtle); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-newsletter-form input { padding: 0.55rem 1rem; border-radius: 9px; border: 1.5px solid var(--border-subtle); background: var(--surface); color: var(--text); font-size: 0.85rem; width: 220px; outline: none; }
.footer-newsletter-form input:focus { border-color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 0.78rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-3); }
.footer-legal a:hover { color: var(--cyan); }

/* ========================================================
   HERO (Home)
   ======================================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
  background: var(--bg);
}
.dark .hero { background: linear-gradient(160deg, #030712 0%, #0c1a2e 60%, #030712 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow-1 { position: absolute; top: 20%; left: 15%; width: 400px; height: 400px; background: rgba(6,182,212,0.08); border-radius: 50%; filter: blur(80px); }
.hero-glow-2 { position: absolute; bottom: 20%; right: 15%; width: 350px; height: 350px; background: rgba(59,130,246,0.08); border-radius: 50%; filter: blur(80px); }
.hero-inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; padding: 5rem 1.5rem; }
.hero h1 { margin: 1rem 0 1.25rem; }
.hero p.lead { font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-3); font-weight: 500; margin-top: 2px; }

/* Dashboard mockup */
.hero-mockup {
  background: var(--surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  max-width: 900px; margin: 0 auto; position: relative;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--bg-3); border-bottom: 1px solid var(--border-subtle);
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-url {
  flex: 1; margin: 0 1rem; padding: 4px 12px; border-radius: 6px;
  background: var(--surface); font-size: 0.72rem; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace; text-align: center;
}
.mockup-body { display: grid; grid-template-columns: 200px 1fr; min-height: 360px; }
.mockup-sidebar { background: var(--surface); border-right: 1px solid var(--border-subtle); padding: 1rem; }
.mockup-main { background: var(--bg-2); padding: 1rem; }
.mockup-user { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; padding: 8px; background: var(--bg-3); border-radius: 10px; }
.mockup-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); flex-shrink: 0; }
.mockup-user-text .name { font-size: 0.75rem; font-weight: 700; color: var(--text); }
.mockup-user-text .role { font-size: 0.65rem; color: var(--text-3); }
.mockup-nav-item { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 7px; font-size: 0.72rem; color: var(--text-2); margin-bottom: 2px; }
.mockup-nav-item.active { background: rgba(6,182,212,0.1); color: var(--cyan); font-weight: 600; }
.mockup-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.mockup-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.mockup-kpi { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px; }
.mockup-kpi-val { font-size: 1.1rem; font-weight: 900; }
.mockup-kpi-label { font-size: 0.62rem; color: var(--text-3); margin-top: 1px; }
.mockup-board { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.mockup-board-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mockup-board-title { font-size: 0.72rem; font-weight: 700; color: var(--text); }
.board-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.board-col-head { font-size: 0.62rem; font-weight: 700; color: var(--text-3); margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.board-col-dot { width: 6px; height: 6px; border-radius: 50%; }
.board-task { background: var(--bg-2); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 5px 7px; font-size: 0.6rem; color: var(--text-2); margin-bottom: 3px; }
.mockup-skills { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px; }
.skill-row { margin-bottom: 6px; }
.skill-row-top { display: flex; justify-content: space-between; font-size: 0.62rem; margin-bottom: 3px; }
.skill-name { color: var(--text-2); }
.skill-pct { color: var(--cyan); font-weight: 600; }

@media(max-width:700px){
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
}

/* ========================================================
   TRUSTED BY (marquee)
   ======================================================== */
.trusted-section { padding: 3rem 0; background: var(--bg-2); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); overflow: hidden; }
.trusted-label { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.marquee-wrap { position: relative; }
.marquee-fade-left { position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(90deg, var(--bg-2), transparent); z-index: 1; }
.marquee-fade-right { position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(270deg, var(--bg-2), transparent); z-index: 1; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  padding: 7px 20px; border-radius: 9px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border-subtle);
  font-size: 0.82rem; font-weight: 700; color: var(--text-3);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========================================================
   HOW IT WORKS (Home)
   ======================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps-line { position: absolute; top: 52px; left: 10%; right: 10%; height: 2px; background: var(--border-subtle); z-index: 0; }
.steps-line-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); width: 0; transition: width 1.5s ease; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-icon-wrap {
  width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.step-num { position: absolute; top: -8px; right: calc(50% - 30px - 8px + 60px); width: 22px; height: 22px; background: var(--bg); border: 2px solid var(--border-subtle); border-radius: 50%; font-size: 0.65rem; font-weight: 800; color: var(--text-3); display: flex; align-items: center; justify-content: center; }
.step-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.82rem; }
@media(max-width:768px){ .steps-grid { grid-template-columns: 1fr 1fr; } .steps-line { display: none; } }
@media(max-width:480px){ .steps-grid { grid-template-columns: 1fr; } }

/* ========================================================
   PROGRAM CARDS
   ======================================================== */
.programs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media(max-width:1100px){ .programs-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px){ .programs-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .programs-grid { grid-template-columns: 1fr; } }
.program-card { border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--border-subtle); background: var(--surface); transition: all 0.3s; cursor: pointer; display: flex; flex-direction: column; gap: 0; }
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(6,182,212,0.3); }
.program-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.program-card h3 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.program-card p { font-size: 0.78rem; color: var(--text-2); margin-bottom: 0.85rem; flex: 1; }
.program-tools { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 0.85rem; }
.tool-chip { font-size: 0.65rem; font-weight: 600; padding: 3px 9px; border-radius: 5px; background: var(--bg-3); color: var(--text-2); border: 1px solid var(--border-subtle); }
.program-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--border-subtle); font-size: 0.72rem; color: var(--text-3); }
.program-duration { display: flex; align-items: center; gap: 4px; }
.program-arrow { font-size: 0.8rem; color: var(--text-3); transition: all 0.2s; }
.program-card:hover .program-arrow { color: var(--cyan); transform: translateX(3px); }

/* ========================================================
   SIMULATION (Kanban)
   ======================================================== */
.simulation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media(max-width:900px){ .simulation-grid { grid-template-columns: 1fr; } }
.feature-list-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius); border: 1px solid var(--border-subtle); background: var(--surface); margin-bottom: 0.75rem; transition: all 0.2s; }
.feature-list-item:hover { border-color: rgba(6,182,212,0.25); background: rgba(6,182,212,0.02); }
.feature-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.feature-list-item h4 { font-size: 0.88rem; margin-bottom: 3px; }
.feature-list-item p { font-size: 0.78rem; }
.kanban-board { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.kanban-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--bg-3); border-bottom: 1px solid var(--border-subtle); }
.kanban-title { font-size: 0.82rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 7px; }
.kanban-body { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 12px; }
.kanban-col { }
.kanban-col-head { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.k-dot { width: 7px; height: 7px; border-radius: 50%; }
.k-col-name { font-size: 0.7rem; font-weight: 700; color: var(--text-2); }
.k-count { margin-left: auto; font-size: 0.6rem; background: var(--bg-3); color: var(--text-3); padding: 1px 7px; border-radius: 20px; font-weight: 600; }
.k-task { background: var(--bg-2); border: 1px solid var(--border-subtle); border-radius: 8px; padding: 8px; margin-bottom: 5px; cursor: pointer; transition: all 0.2s; }
.k-task:hover { border-color: rgba(6,182,212,0.3); }
.k-task-title { font-size: 0.7rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.k-task-foot { display: flex; align-items: center; justify-content: space-between; }
.k-task-tag { font-size: 0.6rem; background: var(--bg-3); color: var(--text-3); padding: 1px 7px; border-radius: 4px; font-weight: 600; }
.k-task-dot { width: 6px; height: 6px; border-radius: 50%; }
.k-progress-bar { height: 3px; background: var(--bg-3); border-radius: 2px; margin-top: 7px; overflow: hidden; }
.k-progress-fill { height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 2px; }

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonial-card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-2); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; padding-top: 1rem; border-top: 1px solid var(--border-subtle); }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.author-role { font-size: 0.72rem; color: var(--text-3); }

/* ========================================================
   CTA SECTION
   ======================================================== */
.cta-section { padding: 5rem 0; }
.cta-box {
  background: linear-gradient(135deg, var(--cyan), var(--blue-dark), #6d28d9);
  border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-box > * { position: relative; }
.cta-box h2 { color: #fff; margin: 0.75rem 0 1rem; }
.cta-box p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ========================================================
   COUNTERS SECTION
   ======================================================== */
.counters-section { padding: 4rem 0; background: var(--bg-2); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
@media(max-width:768px){ .counters-grid { grid-template-columns: repeat(2,1fr); } }
.counter-num { font-size: 2.5rem; font-weight: 900; display: block; }
.counter-label { font-size: 0.82rem; color: var(--text-2); margin-top: 4px; font-weight: 500; }

/* ========================================================
   ABOUT PAGE
   ======================================================== */
.page-hero { padding: 7rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; }
.dark .page-hero { background: linear-gradient(180deg, #030712, #0f172a); }
.page-hero h1 { margin: 0.75rem 0 1rem; }
.page-hero p.lead { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--cyan), var(--blue)); border-radius: 2px; }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-dot { position: absolute; left: -2rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--cyan); }
.timeline-year { font-size: 0.72rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.05em; margin-bottom: 4px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.timeline-desc { font-size: 0.85rem; color: var(--text-2); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
@media(max-width:900px){ .values-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .values-grid { grid-template-columns: 1fr; } }
.value-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--border-subtle); background: var(--surface); transition: all 0.3s; }
.value-card:hover { border-color: rgba(6,182,212,0.3); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8rem; }

/* ========================================================
   FAQ ACCORDION
   ======================================================== */
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; background: var(--surface); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; font-size: 0.9rem; font-weight: 600; color: var(--text); user-select: none; gap: 1rem; }
.faq-icon { font-size: 1.2rem; font-weight: 300; color: var(--cyan); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; padding: 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: 0.875rem; color: var(--text-2); }

/* ========================================================
   FILTER BAR
   ======================================================== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; border: 1.5px solid var(--border-subtle); background: var(--surface); color: var(--text-2); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.filter-btn.active { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; border-color: transparent; }

/* ========================================================
   DASHBOARD PAGE
   ======================================================== */
.dashboard-layout { display: grid; grid-template-columns: 230px 1fr; min-height: calc(100vh - 64px); margin-top: 64px; }
.dash-sidebar { background: var(--surface); border-right: 1px solid var(--border-subtle); padding: 1.5rem 1rem; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 9px; font-size: 0.84rem; font-weight: 500; color: var(--text-2); margin-bottom: 2px; cursor: pointer; transition: all 0.2s; border: none; background: none; width: 100%; text-align: left; text-decoration: none; }
.dash-nav-item:hover { background: rgba(6,182,212,0.07); color: var(--cyan); }
.dash-nav-item.active { background: rgba(6,182,212,0.1); color: var(--cyan); font-weight: 700; }
.dash-nav-icon { font-size: 1rem; }
.dash-badge { margin-left: auto; min-width: 18px; height: 18px; border-radius: 50px; background: var(--cyan); color: #fff; font-size: 0.62rem; font-weight: 800; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.dash-main { background: var(--bg-2); padding: 2rem; overflow-x: hidden; }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media(max-width:900px){ .dash-kpis { grid-template-columns: repeat(2,1fr); } }
.dash-kpi { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1.25rem; }
.dash-kpi-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 0.75rem; }
.dash-kpi-val { font-size: 1.6rem; font-weight: 900; }
.dash-kpi-label { font-size: 0.75rem; color: var(--text-3); margin-top: 2px; }
.dash-kpi-delta { font-size: 0.7rem; color: #22c55e; margin-top: 4px; }
.dash-2col { display: grid; grid-template-columns: 1fr 320px; gap: 1.25rem; }
@media(max-width:1000px){ .dash-2col { grid-template-columns: 1fr; } }
@media(max-width:700px){ .dashboard-layout { grid-template-columns: 1fr; } .dash-sidebar { display: none; } }

/* ========================================================
   MULTI-STEP FORM
   ======================================================== */
.step-indicator { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2.5rem; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; border: 2px solid var(--border-subtle); background: var(--surface); color: var(--text-3); transition: all 0.3s; flex-shrink: 0; }
.step-dot.active { background: linear-gradient(135deg, var(--cyan), var(--blue)); border-color: transparent; color: #fff; box-shadow: 0 4px 14px rgba(6,182,212,0.35); }
.step-dot.done { background: #22c55e; border-color: transparent; color: #fff; }
.step-line { flex: 1; max-width: 80px; height: 2px; background: var(--border-subtle); transition: background 0.3s; }
.step-line.done { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.step-form { display: none; }
.step-form.active { display: block; }
.program-radio { display: none; }
.program-radio-label {
  display: flex; align-items: center; gap: 12px; padding: 0.9rem 1rem;
  border: 1.5px solid var(--border-subtle); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; background: var(--surface);
}
.program-radio-label:hover { border-color: var(--cyan); }
.program-radio:checked + .program-radio-label { border-color: var(--cyan); background: rgba(6,182,212,0.05); }
.program-radio-icon { font-size: 1.1rem; }
.program-radio-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }

/* ========================================================
   ENQUIRY POPUP
   ======================================================== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.popup-overlay.open { display: flex; }
.popup-box { background: var(--surface); border: 1px solid rgba(6,182,212,0.2); border-radius: var(--radius-lg); width: 100%; max-width: 480px; overflow: hidden; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.25); animation: popupIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popupIn { from { opacity: 0; transform: scale(0.88) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-top-bar { height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.popup-body { padding: 1.5rem; }
.popup-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 8px; background: var(--bg-3); border: none; cursor: pointer; font-size: 1.1rem; color: var(--text-2); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.popup-close:hover { background: rgba(239,68,68,0.1); color: #ef4444; }
.popup-success { text-align: center; padding: 1.5rem; display: none; }
.popup-success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ========================================================
   PAGE HERO (inner pages)
   ======================================================== */
.inner-hero { padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.dark .inner-hero { background: linear-gradient(180deg, #030712 0%, #0f172a 100%); }
.inner-hero::before { content: ''; position: absolute; inset: 0; }
.inner-hero-glow { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 300px; background: rgba(6,182,212,0.06); border-radius: 50%; filter: blur(60px); pointer-events: none; }

/* ========================================================
   STICKY SIDEBAR (Program Detail)
   ======================================================== */
.detail-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2.5rem; align-items: start; }
.detail-sticky { position: sticky; top: 80px; }
@media(max-width:900px){ .detail-layout { grid-template-columns: 1fr; } .detail-sticky { position: static; } }
.sidebar-card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.sidebar-nav-link { display: block; font-size: 0.8rem; color: var(--text-2); padding: 5px 0; border-bottom: 1px solid var(--border-subtle); }
.sidebar-nav-link:hover { color: var(--cyan); }
.sidebar-nav-link:last-child { border-bottom: none; }
.curriculum-phase { padding: 1.25rem; border-radius: var(--radius-sm); border-left: 3px solid var(--cyan); background: var(--surface); border-top: 1px solid var(--border-subtle); border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin-bottom: 1rem; }
.curriculum-phase h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.4rem; }
.curriculum-phase .phase-weeks { font-size: 0.72rem; color: var(--cyan); font-weight: 600; margin-bottom: 0.75rem; }
.curriculum-phase ul { list-style: disc; padding-left: 1.2rem; }
.curriculum-phase li { font-size: 0.82rem; color: var(--text-2); margin-bottom: 3px; }
.mentor-card { display: flex; align-items: center; gap: 12px; padding: 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border-subtle); background: var(--surface); margin-bottom: 0.75rem; }
.mentor-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.mentor-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.mentor-title { font-size: 0.75rem; color: var(--text-3); }

/* ========================================================
   BLOG
   ======================================================== */
.blog-featured { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; margin-bottom: 3rem; align-items: center; background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
@media(max-width:768px){ .blog-featured { grid-template-columns: 1fr; } }
.blog-featured-img { min-height: 280px; background: linear-gradient(135deg, var(--cyan), var(--blue)); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-featured-body { padding: 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:900px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-thumb { height: 160px; position: relative; overflow: hidden; }
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: var(--text-3); margin: 0.5rem 0 0.75rem; }
.blog-title { font-size: 0.92rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 0.5rem; }
.blog-excerpt { font-size: 0.8rem; color: var(--text-2); line-height: 1.6; }
.blog-author { display: flex; align-items: center; gap: 8px; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-subtle); }
.author-pic { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; color: #fff; }

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
@media(max-width:800px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { display: flex; align-items: flex-start; gap: 12px; padding: 1rem; border-radius: var(--radius-sm); border: 1px solid var(--border-subtle); background: var(--surface); margin-bottom: 0.75rem; }
.contact-info-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(6,182,212,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--cyan); }
.contact-info-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { font-size: 0.82rem; color: var(--text-2); }
.map-placeholder { height: 200px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.08)); border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; }
.whatsapp-btn { display: flex; align-items: center; gap: 10px; padding: 0.85rem 1.25rem; border-radius: var(--radius-sm); background: #25d366; color: #fff; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; width: 100%; justify-content: center; transition: all 0.2s; text-decoration: none; margin-bottom: 0.75rem; }
.whatsapp-btn:hover { background: #1fba57; }

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 15px rgba(6,182,212,0.3); } 50% { box-shadow: 0 0 30px rgba(6,182,212,0.6); } }

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-float { animation: floatY 5s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse 2.5s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================================
   RESPONSIVE HELPERS
   ======================================================== */
@media(max-width:640px){
  .section { padding: 3.5rem 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

/* ========================================================
   TOAST
   ======================================================== */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 12px 18px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; color: #fff;
  background: #1e293b; border: 1px solid rgba(6,182,212,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); min-width: 240px;
  animation: fadeInUp 0.35s ease;
  display: flex; align-items: center; gap: 8px;
}
.toast-success { background: linear-gradient(135deg, #0891b2, #1d4ed8); }
.toast-error { background: linear-gradient(135deg, #dc2626, #9333ea); }
