/*
Theme Name: eduX Futuro
Theme URI: https://edux.com.co
Author: eduX
Author URI: https://edux.com.co
Description: Tema oficial eduX — Software & Formación que Transforma su Sector. Dark tech, glassmorphism, neon.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edux
Tags: dark, technology, education, full-width-template, custom-menu, custom-logo
*/

/* =============================================
   BASE RESET
   ============================================= */

html { scroll-behavior: smooth; font-size: 16px; }
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; }

/* =============================================
   VARIABLES CSS — TEMA OSCURO (DEFAULT)
   ============================================= */
:root, [data-theme="dark"] {
  --bg-main:    #060d1a;
  --bg-card:    rgba(13, 24, 41, 0.6);
  --bg-card-2:  rgba(17, 30, 48, 0.6);
  --border:     rgba(255, 255, 255, 0.08);
  --cyan:       #00e5ff;
  --cyan-dark:  #00b8d4;
  --pink:       #ff4081;
  --green:      #00e676;
  --text:       #e0e8f0;
  --text-muted: #8fa8c0;
  --text-dim:   #5a7a96;
  --radius:     12px;
  --radius-lg:  20px;
  --nav-h:      64px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad-v: 120px;
  --section-pad-h: 100px;
  --gap-lg: 64px;
  --gap-md: 40px;
  --neon-cyan:  0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 10px rgba(0, 229, 255, 0.05);
  --neon-pink:  0 0 20px rgba(255, 64, 129, 0.15), inset 0 0 10px rgba(255, 64, 129, 0.05);
}

[data-theme="light"] {
  --bg-main:    #f4f7f6;
  --bg-card:    rgba(255, 255, 255, 0.65);
  --bg-card-2:  rgba(240, 245, 248, 0.65);
  --border:     rgba(0, 0, 0, 0.08);
  --cyan:       #00b8d4;
  --cyan-dark:  #008ba3;
  --pink:       #d81b60;
  --green:      #00c853;
  --text:       #060d1a;
  --text-muted: #4a5568;
  --text-dim:   #718096;
  --neon-cyan:  0 8px 24px rgba(0, 184, 212, 0.25), inset 0 0 8px rgba(0, 184, 212, 0.1);
  --neon-pink:  0 8px 24px rgba(216, 27, 96, 0.25), inset 0 0 8px rgba(216, 27, 96, 0.1);
}

/* =============================================
   GLASSMORPHISM & NEON UTILITIES
   ============================================= */
.contact-form-card, .service-topic-card, .benefit-card, .value-card,
.disc-card, .process-step, .faq-item, .contact-item, .service-panel {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.contact-form-card:hover, .service-topic-card:hover, .benefit-card:hover,
.value-card:hover, .disc-card:hover, .process-step:hover, .faq-item:hover,
.contact-item:hover {
  box-shadow: var(--neon-cyan);
  border-color: rgba(0, 229, 255, 0.3);
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dark); }
html { scrollbar-color: var(--cyan) var(--bg-main); scrollbar-width: thin; }

/* =============================================
   TIPOGRAFÍA
   ============================================= */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.15; }
p { line-height: 1.75; color: var(--text-dim); }
.accent { color: var(--cyan); }

/* =============================================
   BADGES & DOTS
   ============================================= */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border: 1px solid var(--border);
  border-radius: 500px; font-size: 0.75rem;
  letter-spacing: 0.03em; color: var(--text-dim); background: var(--bg-card);
}
.badge--green { border-color: var(--green); color: var(--green); }
.badge--teal  { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.08); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot--pink  { background: var(--pink); }
.dot--cyan  { background: var(--cyan); }
.dot--green { background: var(--green); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 24px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; border: none;
  transition: all var(--transition); line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan); color: #060d1a; font-weight: 600;
}
.btn--primary:hover {
  background: var(--cyan-dark); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 229, 255, 0.3);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(0,229,255,0.05);
}
.btn--full { width: 100%; justify-content: center; }
.btn--whatsapp {
  background: #25d366; color: #fff; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn--whatsapp:hover { background: #20b858; transform: translateY(-1px); }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: var(--section-pad-v) var(--section-pad-h);
  position: relative;
}
.section--centered { text-align: center; }
.section-label { margin-bottom: 18px; }
.section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700; color: #fff; margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--text-dim); font-size: 1rem; line-height: 1.8;
  max-width: 700px; margin: 0 auto 48px;
}
.section--alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =============================================
   HERO
   ============================================= */
.hero { padding: 0; min-height: 100vh; position: relative; overflow: hidden; }
.hero__video { position: relative; width: 100%; height: 100vh; }
.video-placeholder { position: absolute; inset: 0; }
.hero__bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 48px;
  background: linear-gradient(180deg, rgba(6,13,26,0.4) 0%, rgba(6,13,26,0.7) 100%);
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  max-width: 900px; margin: 0 auto 24px;
}
.hero__subtitle {
  font-size: 1.15rem; color: var(--text-muted); line-height: 1.8;
  max-width: 720px; margin: 0 auto 40px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* =============================================
   DIFF CARDS (DIFERENCIADORES + ECOSISTEMA)
   ============================================= */
.diff-bg-container { position: relative; }
.diff-content { position: relative; z-index: 2; }
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.diff-card:hover {
  border-color: rgba(0,229,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.diff-card h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 10px; font-family: 'Syne',sans-serif;
}
.diff-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   DISC SECTION
   ============================================= */
.disc-section__header { margin-bottom: 40px; }
.disc-section__header h2 { color: #fff; }
.disc-profiles { display: flex; flex-direction: column; gap: 16px; }
.disc-profile {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  cursor: pointer; transition: all var(--transition);
}
.disc-profile:hover { border-color: rgba(0,229,255,0.2); }
.disc-profile.active { border-color: rgba(0,229,255,0.3); background: rgba(0,229,255,0.05); }
.disc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  font-family: 'Syne',sans-serif; color: #fff; font-size: 1.1rem;
  flex-shrink: 0; transition: background var(--transition);
}
.disc-profile h4 { color: #fff; font-size: 0.95rem; margin: 0 0 4px; font-family: 'Syne',sans-serif; }
.disc-profile p { color: var(--text-dim); font-size: 0.85rem; margin: 0; }
.disc-detail {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.disc-detail__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  font-family: 'Syne',sans-serif; color: #fff; font-size: 1.4rem;
  transition: background var(--transition);
}
.disc-detail h3 { color: #fff; font-size: 1.4rem; margin: 0; }
.disc-detail p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.7; }
.disc-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 6px 16px; border: 1px solid var(--cyan);
  border-radius: 999px; font-size: 0.8rem; color: var(--cyan);
  background: rgba(0,229,255,0.05);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: block; font-family: 'Syne',sans-serif; font-size: 2.2rem;
  font-weight: 800; color: var(--cyan); letter-spacing: -0.03em;
}
.stat__lbl { font-size: 0.85rem; color: var(--text-dim); }

/* =============================================
   CONTACTO
   ============================================= */
.contacto-left h2 { color: #fff; text-align: left; }
.contacto-left p { text-align: left; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all var(--transition);
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 16px;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,229,255,0.08);
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: var(--text-dim); }
.contact-form-card label {
  display: block; font-size: 0.8rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: rgba(4, 9, 18, 0.98); border-top: 1px solid var(--border); }
.footer__top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  padding: 80px var(--section-pad-h) 60px;
}
.footer__logo {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.footer__logo span { color: var(--cyan); }
.footer__brand p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.8; max-width: 320px; }
.footer__social { display: flex; gap: 20px; margin-top: 24px; }
.footer__social a { color: var(--text-dim); font-size: 0.9rem; transition: color var(--transition); }
.footer__social a:hover { color: var(--cyan); }
.footer__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer__col h5 {
  color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px; font-family: 'DM Sans',sans-serif;
}
.footer__col a, .footer__col span {
  display: block; color: var(--text-dim); font-size: 0.9rem;
  margin-bottom: 12px; transition: color var(--transition);
}
.footer__col a:hover { color: var(--cyan); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--section-pad-h); border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-dim);
}
.footer__bottom div { display: flex; gap: 24px; }
.footer__bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--cyan); }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-btn {
  position: fixed; bottom: 100px; right: 24px;
  background: #25d366; color: #fff; border-radius: 99px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 0.9rem; font-weight: 600;
  z-index: 200; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.whatsapp-btn:hover { background: #20b858; transform: translateY(-2px); }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.floating-btn {
  position: fixed; right: 24px; width: 48px; height: 48px;
  border-radius: 14px; display: grid; place-items: center;
  border: 1px solid var(--border); background: rgba(13,24,41,0.9);
  backdrop-filter: blur(12px); cursor: pointer; color: var(--text);
  transition: all var(--transition); z-index: 200;
}
.floating-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-home { bottom: 148px; }
.btn-top {
  bottom: 28px; opacity: 0; visibility: hidden;
  transform: translateY(8px);
}
.btn-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-top--solo { bottom: 28px; }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px; background: rgba(6,13,26,0.88);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
}
.navbar__logo { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
.navbar__logo span { color: var(--cyan); }
.navbar__logo a { color: inherit; }
.navbar__links {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; gap: 36px;
}
.navbar__links a { font-size: 0.9rem; color: var(--text-dim); transition: color var(--transition); }
.navbar__links a:hover, .navbar__links a.current-menu-item { color: var(--text); }
.navbar__actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 999px; transition: var(--transition);
}
.navbar__theme-toggle {
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px; color: var(--text);
  cursor: pointer; display: flex; align-items: center;
  transition: all var(--transition);
}
.navbar__theme-toggle:hover { border-color: var(--cyan); color: var(--cyan); }
.navbar__user-menu { position: relative; }
.navbar__user-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; font-family: 'DM Sans', sans-serif;
}
.navbar__user-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,229,255,0.05); }
.navbar__user-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 8px;
  min-width: 200px; background: rgba(13,24,41,0.98);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 1000;
}
.navbar__user-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar__dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; color: var(--text); font-size: 0.9rem;
  transition: all var(--transition); border-left: 3px solid transparent;
}
.navbar__dropdown-item:hover { background: rgba(0,229,255,0.08); color: var(--cyan); border-left-color: var(--cyan); }
.navbar__dropdown-item--danger { color: #ff6b6b; }
.navbar__dropdown-item--danger:hover { background: rgba(255,107,107,0.1); border-left-color: #ff6b6b; color: #ff6b6b; }
.navbar__dropdown-divider { height: 1px; border: none; background: var(--border); margin: 8px 0; }

/* DRAWER (MOBILE MENU) */
.drawer-backdrop {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55); opacity: 0; visibility: hidden;
  transition: opacity var(--transition); z-index: 98;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.side-drawer {
  position: fixed; top: var(--nav-h); right: -100%;
  width: min(360px, 92vw); height: calc(100% - var(--nav-h));
  background: rgba(6,13,26,0.98); border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -24px 0 60px rgba(0,0,0,0.35); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 28px; z-index: 99;
  transition: right var(--transition); overflow-y: auto;
}
.side-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.drawer-logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.drawer-logo span { color: var(--cyan); }
.drawer-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); width: 42px; height: 42px; border-radius: 14px;
  cursor: pointer; outline: none; transition: all var(--transition);
  display: grid; place-items: center;
}
.drawer-close:hover { border-color: var(--cyan); color: var(--cyan); }
.drawer-nav { display: flex; flex-direction: column; gap: 14px; }
.drawer-nav a {
  color: var(--text); font-size: 1rem; padding: 12px 14px;
  border-radius: 12px; transition: background var(--transition), color var(--transition);
}
.drawer-nav a:hover { background: rgba(0,229,255,0.08); color: var(--cyan); }
.drawer-section {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.08);
}
.drawer-section h3 {
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim);
}
.drawer-user { font-size: 0.95rem; color: #fff; }
.drawer-text { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin-bottom: 8px; }
.drawer-buttons { display: flex; flex-direction: column; gap: 12px; }
.drawer-link {
  display: inline-flex; align-items: center; color: var(--cyan);
  font-weight: 600; padding: 10px 14px; border-radius: 8px;
  transition: background var(--transition);
}
.drawer-link:hover { background: rgba(0,229,255,0.08); }
.drawer-link--danger { color: #ff6b6b; }
.drawer-contact p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* =============================================
   PAGES INNER
   ============================================= */
.page-wrap { padding-top: var(--nav-h); }
.page-wrap .section {
  min-height: auto; padding: 90px 48px;
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: stretch;
  gap: 32px; max-width: 1140px; margin: 0 auto;
}
.page-wrap .section + .section { padding-top: 60px; }
.page-wrap .section h2 {
  font-size: clamp(2rem, 2.4vw, 3rem); font-weight: 700;
  color: #f5f9ff; text-align: center; margin-bottom: 18px;
}
.page-wrap .section-subtitle {
  text-align: center; max-width: 800px; margin: 0 auto 32px;
  font-size: 1rem; color: var(--text-muted); line-height: 1.8;
}
.page-card {
  background: #0f1d30; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.form-group label {
  font-size: 0.85rem; color: #95a8c1;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input, .form-group textarea, .form-group select {
  background: #121f36; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 16px 18px; color: #e8f0fb;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,229,255,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #7b8ea9; }

/* =============================================
   WORDPRESS DEFAULT FIXES
   ============================================= */
.wp-block-image { margin: 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  :root {
    --section-pad-h: 60px;
    --section-pad-v: 100px;
  }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .navbar__links { gap: 24px; }
  .navbar__links a { font-size: 0.85rem; }
  .navbar__actions { gap: 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad-h: 24px; --section-pad-v: 80px; }
  .navbar { padding: 0 20px; }
  .navbar__links { display: none; }
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__overlay { padding: 0 24px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__bottom div { flex-wrap: wrap; justify-content: center; }
  .footer__top { padding: 60px 24px 40px; }
  .footer__bottom { padding: 24px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
  .navbar__logo { font-size: 1.5rem; }
  .side-drawer { width: min(280px, 85vw); }
  .hero__title { font-size: 2.2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
