/* ── CSS VARIABLES ── */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF9040;
  --saffron-dark: #D94E00;
  --green: #138808;
  --green-light: #1DAD0A;
  --navy: #002366;
  --navy-light: #0A3580;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-soft: #555566;
  --border: #E8DDD0;
  --shadow: 0 4px 24px rgba(255,107,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--saffron);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(255,107,0,0.1);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  box-shadow: 0 3px 12px rgba(255,107,0,0.35);
}
.nav-logo .logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo .logo-text span:first-child {
  font-family: 'Baloo 2', cursive;
  font-weight: 800; font-size: 1.25rem;
  color: var(--saffron);
}
.nav-logo .logo-text span:last-child {
  font-size: 0.65rem; color: var(--text-soft);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--saffron); color: white; }
.nav-links .hub-link a {
  background: var(--navy);
  color: white;
  font-weight: 600;
}
.nav-links .hub-link a:hover { background: var(--navy-light); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--saffron); border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #001a55 50%, #0A1F4A 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 5% 60px;
}

.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(19,136,8,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--saffron-light);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: white;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent { color: var(--saffron); }
.hero h1 .green-accent { color: #4ADE80; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin: 20px 0 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,107,0,0.4);
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,0,0.5); }

.btn-secondary {
  background: transparent;
  color: white; border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Baloo 2', cursive; font-weight: 600; font-size: 1rem;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: center; }
.stat .num {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem; font-weight: 800; color: var(--saffron-light);
  display: block;
}
.stat .lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Hero illustration */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeIn 0.8s 0.3s ease both;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 24px; padding: 32px;
  width: 100%; max-width: 380px;
  position: relative;
}
.hero-card .card-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.avatar-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), #FF9040);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.card-name { color: white; font-weight: 600; font-size: 0.95rem; }
.card-role { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

.progress-item { margin-bottom: 16px; }
.progress-label {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-bottom: 6px;
}
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--saffron), #FFB347);
  animation: growBar 1.5s 0.8s ease both;
  transform-origin: left;
}
@keyframes growBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.badge-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
}
.mini-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 4px 10px; border-radius: 100px; font-size: 0.72rem;
}
.mini-badge.green { background: rgba(19,136,8,0.25); color: #4ADE80; }
.mini-badge.orange { background: rgba(255,107,0,0.25); color: #FFB347; }

/* ── TRICOLOR BAR ── */
.tricolor {
  height: 6px;
  background: linear-gradient(90deg, #FF6B00 33%, #FFFFFF 33% 66%, #138808 66%);
}

/* ── SECTIONS GENERAL ── */
section { padding: 80px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px; background: var(--saffron);
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--text);
}
.section-title .accent { color: var(--saffron); }

.section-sub {
  font-size: 1rem; color: var(--text-soft);
  line-height: 1.7; max-width: 560px; margin-top: 12px;
}

/* ── SERVICES ── */
.services { background: white; }

.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 12px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  border: 1px solid rgba(255,107,0,0.15);
}
.service-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

/* ── TEACHERS HUB ── */
.hub {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hub::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.hub-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hub .section-title { color: white; }
.hub .section-sub { color: rgba(255,255,255,0.65); }
.hub .section-label { color: #FFB347; }
.hub .section-label::before { background: #FFB347; }

.hub-features {
  list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px;
}
.hub-features li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: 0.92rem;
}
.hub-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(19,136,8,0.3); color: #4ADE80;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

.hub-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hub-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 22px;
  transition: all 0.3s;
  cursor: pointer;
}
.hub-mini-card:hover {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-3px);
}
.hub-mini-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.hub-mini-card h4 {
  font-family: 'Baloo 2', cursive;
  color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px;
}
.hub-mini-card p { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px; padding: 30px 28px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.stars { color: var(--saffron); font-size: 1rem; margin-bottom: 14px; }

.testimonial-card blockquote {
  font-size: 0.9rem; color: var(--text-soft); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-card blockquote::before {
  content: '"'; color: var(--saffron); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em;
}

.reviewer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--saffron), #FFB347);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.reviewer-loc { font-size: 0.75rem; color: var(--text-soft); }

/* ── CONTACT ── */
.contact { background: white; }

.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 36px;
}
.contact-form h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: var(--text);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text); margin-bottom: 7px; letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px; background: white;
  font-family: 'Hind', sans-serif; font-size: 0.92rem; color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.08);
}
.form-group textarea { height: 110px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-info { padding-top: 12px; }
.contact-info h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem; font-weight: 800; margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px;
}

.info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,107,0,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.info-label { font-size: 0.75rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.info-value { font-weight: 600; font-size: 0.92rem; color: var(--text); margin-top: 2px; }

/* ── ABOUT ── */
.about { background: linear-gradient(180deg, #FFF5EC 0%, var(--cream) 100%); }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-image-block { position: relative; }
.about-main-img {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 320px; text-align: center;
  color: white;
}
.about-main-img .big-emoji { font-size: 5rem; margin-bottom: 16px; }
.about-main-img h4 {
  font-family: 'Baloo 2', cursive; font-size: 1.4rem; font-weight: 800; margin-bottom: 8px;
}
.about-main-img p { font-size: 0.88rem; opacity: 0.85; line-height: 1.6; }

.about-float {
  position: absolute; bottom: -16px; right: -16px;
  background: white; border: 2px solid var(--border);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 10px;
}
.about-float .num {
  font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800; color: var(--saffron);
}
.about-float .txt { font-size: 0.75rem; color: var(--text-soft); line-height: 1.3; }

.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: 14px; background: white;
  border: 1px solid var(--border); transition: all 0.25s;
}
.value-item:hover { border-color: var(--saffron); box-shadow: 0 4px 14px rgba(255,107,0,0.1); }
.value-item .vi-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.value-item h5 {
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.98rem; margin-bottom: 4px;
}
.value-item p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.55; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 30px;
}

.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text span:first-child { color: var(--saffron-light) !important; }
.footer-brand .logo-text span:last-child { color: rgba(255,255,255,0.45) !important; }

.footer-desc {
  font-size: 0.85rem; line-height: 1.7; margin-top: 16px; margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: white; font-size: 0.9rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--saffron); border-color: var(--saffron); }

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700; color: white; font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.6);
  font-size: 0.85rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron-light); }

.newsletter-form {
  display: flex; gap: 8px; margin-top: 8px;
}
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 10px 14px;
  color: white; font-family: 'Hind', sans-serif; font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--saffron); }
.newsletter-form button {
  background: var(--saffron); color: white; border: none;
  padding: 10px 16px; border-radius: 8px; cursor: pointer;
  font-size: 0.9rem; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--saffron-dark); }

.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--saffron-light); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: white;
  border-bottom: 2px solid var(--saffron);
  padding: 16px 5%;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav.open { display: flex; max-height: 400px; }
.mobile-nav a {
  text-decoration: none; color: var(--text);
  padding: 12px 16px; border-radius: 8px; font-size: 0.92rem; font-weight: 500;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--cream); color: var(--saffron); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--saffron); color: white;
  border: none; border-radius: 10px;
  cursor: pointer; font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(255,107,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.3s; z-index: 500;
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .hub-inner, .contact-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hub-cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-float { position: static; margin-top: 16px; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hub-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
}
