/* ============================================================
   RADIOSHOP RIOBAMBA — Static Website Stylesheet
   Dark tech aesthetic with teal accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #111d32;
  --navy-mid: #162035;
  --navy-border: #1e2d47;
  --teal: #0099cc;
  --teal-dark: #0077a8;
  --teal-glow: rgba(0, 153, 204, 0.15);
  --teal-glow-strong: rgba(0, 153, 204, 0.25);
  --green: #25D366;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f1f4;
  --gray-200: #e2e4e9;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #555e6e;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text-light: #c8cdd5;
  --text-muted: #8892a0;
  --red: #f87171;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-w: 1140px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-dark: 0 4px 20px rgba(0,0,0,0.3);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.bg-navy { background: var(--navy); }
.bg-navy-light { background: var(--navy-light); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }

/* ===== TYPOGRAPHY ===== */
.label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
h1, .h1 { font-size: 40px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2, .h2 { font-size: 30px; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3, .h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
h4, .h4 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.section-header { margin-bottom: 44px; }
.section-header .label { margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 15px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 44px; height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 14px;
}
.section-header.center .divider { margin: 14px auto 0; }

/* Dark section text */
.dark-text h1, .dark-text h2, .dark-text h3, .dark-text h4 { color: var(--white); }
.dark-text p, .dark-text span { color: var(--text-muted); }
.dark-text .label { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 4px 14px rgba(0,153,204,0.35); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: var(--gray-50); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--gray-200); }
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { opacity: 0.9; box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ===== GRID ===== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }
.grid-1-1 { grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
.nav-cta { margin-left: 8px; color: #fff !important; font-weight: 800; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.nav-cta:hover { color: #fff !important; background: var(--teal-dark); }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.95), rgba(10,22,40,0.88));
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: var(--text-muted); font-size: 16px; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.page-hero .divider { margin: 16px auto 0; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Home Hero (larger) */
.home-hero {
  padding: 190px 0 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,153,204,0.08), transparent 60%);
  z-index: 1;
}
.home-hero .container { position: relative; z-index: 2; }
.home-hero-content { max-width: 660px; margin: 0 auto; text-align: center; }
.home-hero h1 { color: var(--white); font-size: 44px; margin-bottom: 18px; }
.home-hero p { color: var(--text-light); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.home-hero .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--teal);
  padding: 30px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-dark {
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-left: 3px solid var(--teal);
}
.card-dark:hover { box-shadow: var(--shadow-dark); }
.card-accent { border-top: 3px solid var(--teal); }
.card-accent-bottom { border-bottom: 3px solid var(--teal); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.card-icon-round {
  width: 56px; height: 56px;
  background: var(--teal-glow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.card h4 { margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.card-dark h4 { color: var(--white); }
.card-dark p { color: var(--text-muted); }

/* Service cards on homepage */
.service-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--teal);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-dark); border-left-color: var(--white); }
.service-card .emoji { font-size: 28px; margin-bottom: 12px; }
.service-card h4 { color: var(--white); font-size: 15px; margin-bottom: 8px; }
.service-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.service-card a { color: var(--teal); font-weight: 700; font-size: 12px; }
.service-card a:hover { color: var(--white); }

/* Product card */
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); }
.product-card-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.product-card-body { padding: 20px; }
.product-card-body .tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}
.product-card-body h4 { font-size: 15px; margin-bottom: 6px; }
.product-card-body p { font-size: 12px; line-height: 1.5; margin-bottom: 14px; }
.product-card-body a { color: var(--teal); font-size: 12px; font-weight: 700; }
/* Dark product card */
.product-card.dark { background: var(--navy-light); border: 1px solid var(--navy-border); }
.product-card.dark .product-card-img { background: linear-gradient(135deg, #0d1a2d, #1a2a40); }
.product-card.dark h4 { color: var(--white); }
.product-card.dark p { color: var(--text-muted); }
/* Light product card */
.product-card.light { background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.product-card.light .product-card-img { background: linear-gradient(135deg, #e8f4f8, #f0f8ff); }
.product-card.light h4 { color: var(--gray-800); }
.product-card.light p { color: var(--gray-500); }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-item .check {
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 14px;
}
.check-item span { font-size: 13px; line-height: 1.6; }
.dark-text .check-item span { color: var(--text-light); }

/* ===== SKILL BARS ===== */
.skill-bar { margin-bottom: 18px; }
.skill-bar:last-child { margin-bottom: 0; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.skill-bar-header span:first-child { font-size: 13px; font-weight: 600; color: var(--white); }
.skill-bar-header span:last-child { font-size: 12px; color: var(--teal); font-weight: 700; }
.skill-bar-track { height: 7px; background: var(--navy); border-radius: 4px; overflow: hidden; }
.skill-bar-fill { height: 100%; background: linear-gradient(90deg, var(--teal-dark), var(--teal)); border-radius: 4px; transition: width 1s ease; }
/* Light variant */
.skill-bar.light .skill-bar-header span:first-child { color: var(--gray-700); }
.skill-bar.light .skill-bar-track { background: var(--gray-200); }

/* ===== INFO BOX (for Servicios sidebar) ===== */
.info-box {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 3px solid var(--teal);
}
.info-box-light {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-md);
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-cell {
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}
.info-cell-dark { background: var(--navy); }
.info-cell-light { background: var(--gray-50); }
.info-cell .big { font-size: 26px; font-weight: 800; color: var(--teal); line-height: 1; }
.info-cell .small { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ===== CODE BLOCK (Servicios) ===== */
.code-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 2;
  overflow-x: auto;
}
.code-block .comment { color: var(--text-muted); }
.code-block .keyword { color: var(--white); }
.code-block .var { color: #5cb3ff; }
.code-block .string { color: #f0c674; }
.code-block .teal { color: var(--teal); }

/* ===== STEP / PROCESS ===== */
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--gray-500); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial { padding: 30px; }
.testimonial .stars { color: var(--teal); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { font-size: 13px; color: var(--gray-600); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--gray-800); }
.testimonial-role { font-size: 11px; color: var(--gray-400); }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 70px 0;
}
.cta-section h3 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-gradient { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }

/* ===== FORM ===== */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  background: var(--gray-50);
  color: var(--gray-800);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Dark form inputs */
.form-dark .form-control {
  background: var(--navy);
  border-color: var(--navy-border);
  color: var(--white);
}
.form-dark .form-control::placeholder { color: var(--text-muted); }
.form-dark label { color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item h4 { color: var(--gray-800); margin-bottom: 8px; font-size: 15px; }
.faq-item p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ===== CATEGORY NAV (Products) ===== */
.cat-nav-item {
  display: block;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}
.cat-nav-item:hover { border-color: var(--teal); transform: translateY(-2px); }
.cat-nav-item .emoji { font-size: 30px; margin-bottom: 6px; display: block; }
.cat-nav-item .name { font-size: 12px; font-weight: 700; color: var(--gray-700); }

/* ===== CATEGORY HEADER (Products) ===== */
.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.cat-header-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.cat-header h2 { font-size: 22px; }
.cat-header p { font-size: 12px; margin-top: 2px; }
.dark-text .cat-header-icon { background: var(--teal-glow); }
.cat-header-icon { background: rgba(0,153,204,0.1); }

/* ===== CONTACT SIDEBAR CARDS ===== */
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 14px;
  border-left: 3px solid var(--teal);
}
.sidebar-card h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; }
.sidebar-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.sidebar-card strong { color: var(--text-light); }
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
  font-size: 12px;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { color: var(--text-muted); }
.schedule-row .time { color: var(--white); font-weight: 600; }
.schedule-row .time.closed { color: var(--red); }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: var(--navy-light);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.map-placeholder .emoji { font-size: 48px; }
.map-placeholder p { color: var(--text-muted); font-size: 14px; }

/* ===== PARTNERS ===== */
.partners { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; opacity: 0.6; }
.partners img { max-height: 40px; width: auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h5 { color: var(--white); font-size: 14px; margin-bottom: 16px; }
.footer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px; color: var(--text-muted);
}
.footer-contact-item .icon { color: var(--teal); flex-shrink: 0; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--teal); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease forwards; }
.fade-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 30px; }
  h2, .h2 { font-size: 24px; }
  .section { padding: 50px 0; }
  .container { padding: 0 20px; }

  .grid-2, .grid-3, .grid-4, .grid-6, .grid-2-1, .grid-1-1 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-row { grid-template-columns: 1fr; }

  .home-hero { padding: 150px 0 70px; }
  .home-hero h1 { font-size: 30px; }
  .page-hero { padding: 140px 0 50px; }

  .stats-bar .container { gap: 30px; }
  .stat-num { font-size: 28px; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--navy-border);
  }
  .mobile-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
