/* ============================================================
   Active Learning Center — Main Stylesheet v1.2
   Edit :root variables at the top to retheme the whole site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --red:        #E8201A;
  --amber:      #F5A623;
  --green:      #3A8C0F;
  --dark:       #1E1E1E;
  --offwhite:   #FAF8F4;
  --light-gray: #F2EFE9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--offwhite); color: var(--dark); overflow-x: hidden; }

/* ── NAV ───────────────────────────────────────────────────── */
nav.alc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .06em;
  display: flex; gap: .25rem; text-decoration: none;
}
.nav-logo .logo-active   { color: var(--red); }
.nav-logo .logo-learning { color: var(--amber); }
.nav-logo .logo-center   { color: var(--green); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: #ccc; text-decoration: none; font-weight: 700;
  font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-links .nav-cta {
  background: var(--green); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: 4px; transition: background .2s !important;
}
.nav-links .nav-cta:hover { background: #2d6e0a !important; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 110;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: #ccc; border-radius: 2px;
  transition: transform .25s, opacity .25s, background .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:hover span { background: var(--amber); }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; background: var(--dark);
  display: grid; grid-template-columns: 1fr 1.6fr;
  overflow: hidden; position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3rem 4rem 5rem;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-block; background: var(--amber); color: var(--dark);
  font-weight: 900; font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 2px;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: .96; letter-spacing: .02em; margin-bottom: 1.5rem;
}
.hero-title .line-red   { color: var(--red);   display: block; }
.hero-title .line-amber { color: var(--amber); display: block; }
.hero-title .line-green { color: var(--green); display: block; }
.hero-sub { color: #aaa; font-size: 1.1rem; line-height: 1.7; max-width: 420px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #333; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
.stat-num.red   { color: var(--red); }
.stat-num.amber { color: var(--amber); }
.stat-num.green { color: var(--green); }
.stat-label { color: #888; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }

/* Stoplight: absolutely positioned inside hero-left */
.hero-center {
  position: absolute;
  right: -100px;
  top: 23%;
  z-index: 10;
  display: flex; align-items: flex-start;
}

/* Hero right: slideshow panel */
.hero-right { position: relative; overflow: hidden; }
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.hero-slide:nth-child(1) { background-color: #1a2a1a; }
.hero-slide:nth-child(2) { background-color: #2a1a0a; }
.hero-slide:nth-child(3) { background-color: #0a1a2a; }
.hero-slide:nth-child(4) { background-color: #1a0a2a; }
.hero-slide:nth-child(5) { background-color: #2a2a0a; }
.slideshow-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.slideshow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.slideshow-dot.active { background: var(--amber); transform: scale(1.3); }

/* Traffic light */
.giant-light { display: flex; flex-direction: column; align-items: center; animation: floatLight 4s ease-in-out infinite; }
@keyframes floatLight { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.light-pole  { width: 16px; height: 55px; background: linear-gradient(to right, #555, #888, #555); border-radius: 2px; }
.light-mount { width: 60px; height: 12px; background: #555; border-radius: 2px 2px 0 0; }
.light-box {
  width: 200px; background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid #444; border-radius: 18px; padding: 22px 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
}
.light-box::before, .light-box::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 16px; height: 30px; background: #333; border-radius: 3px;
}
.light-box::before { left: -19px; }
.light-box::after  { right: -19px; }
.bulb { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto; position: relative; }
.bulb::after {
  content: ''; position: absolute; top: 18%; left: 22%; width: 28%; height: 22%;
  background: rgba(255,255,255,.35); border-radius: 50%; filter: blur(4px);
}
.bulb.r { background: radial-gradient(circle at 35% 35%, #ff6b6b, var(--red), #8b0000); box-shadow: 0 0 40px 15px rgba(232,32,26,.6), 0 0 80px 30px rgba(232,32,26,.2); }
.bulb.a { background: radial-gradient(circle at 35% 35%, #ffd080, var(--amber), #7a4e00); box-shadow: 0 0 30px 10px rgba(245,166,35,.4); opacity: .55; }
.bulb.g { background: radial-gradient(circle at 35% 35%, #7ddb45, var(--green), #1a4000); box-shadow: 0 0 30px 10px rgba(58,140,15,.4); opacity: .55; }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-wrap { background: var(--amber); overflow: hidden; padding: .6rem 0; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-inner span { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .1em; color: var(--dark); padding: 0 2rem; }
.marquee-inner span.dot { color: var(--red); padding: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SHARED ──────────────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: 'Bebas Neue', sans-serif; font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: .6rem; display: block; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.05; margin-bottom: 1rem; }
.section-body  { color: #555; font-size: 1.05rem; line-height: 1.75; max-width: 560px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: var(--red); color: #fff; padding: .9rem 2rem; border-radius: 4px;
  text-decoration: none; font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #c01914; transform: translateY(-2px); color: #fff; }
.btn-outline {
  border: 2px solid #555; color: #ccc; padding: .9rem 2rem; border-radius: 4px;
  text-decoration: none; font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase; display: inline-block;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--red); padding: 1rem 2.5rem; border-radius: 4px;
  text-decoration: none; font-weight: 900; font-size: 1rem;
  letter-spacing: .06em; text-transform: uppercase; display: inline-block;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: var(--offwhite); transform: translateY(-3px); color: var(--red); }

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-card-bg { background: var(--dark); border-radius: 16px; padding: 3rem 2.5rem; position: relative; overflow: hidden; }
.about-card-bg::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: var(--red); border-radius: 50%; opacity: .12; }
.about-card-bg::after  { content: ''; position: absolute; bottom: -50px; left: -30px; width: 180px; height: 180px; background: var(--green); border-radius: 50%; opacity: .1; }
.about-quote { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--offwhite); line-height: 1.1; position: relative; z-index: 1; }
.about-quote em { color: var(--amber); font-style: normal; }
.about-badge { display: inline-block; background: var(--green); color: #fff; font-weight: 900; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .9rem; border-radius: 50px; margin-top: 1.5rem; position: relative; z-index: 1; }
.checkmarks { margin: 1.8rem 0; display: flex; flex-direction: column; gap: .75rem; }
.check-item { display: flex; align-items: flex-start; gap: .75rem; }
.check-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; color: #fff; margin-top: 2px; }
.check-icon.r { background: var(--red); }
.check-icon.a { background: var(--amber); }
.check-icon.g { background: var(--green); }
.check-text { font-weight: 700; font-size: .98rem; color: var(--dark); }

/* ── PROGRAMS ────────────────────────────────────────────────── */
#programs { background: var(--dark); }
#programs .section-title { color: var(--offwhite); }
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.prog-card { border-radius: 12px; padding: 2rem 1.75rem; position: relative; overflow: hidden; transition: transform .25s; }
.prog-card:hover { transform: translateY(-6px); }
.prog-card.red-card   { background: linear-gradient(145deg, #3a0a09, #5a1210); border: 1px solid rgba(232,32,26,.3); }
.prog-card.green-card { background: linear-gradient(145deg, #0d2205, #172f07); border: 1px solid rgba(58,140,15,.3); }
.prog-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.prog-age  { font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 50px; display: inline-block; margin-bottom: .9rem; }
.red-card   .prog-age { background: var(--red);   color: #fff; }
.green-card .prog-age { background: var(--green); color: #fff; }
.prog-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #f5f5f5; margin-bottom: .6rem; line-height: 1.1; }
.prog-desc { color: #999; font-size: .9rem; line-height: 1.65; }

/* ── WHY ALC ─────────────────────────────────────────────────── */
#why { background: var(--light-gray); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3rem; }
.why-item { background: #fff; border-radius: 10px; padding: 1.75rem 1.5rem; display: flex; gap: 1.1rem; align-items: flex-start; border-left: 4px solid transparent; transition: box-shadow .2s, transform .2s; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.why-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.why-item:nth-child(1) { border-color: var(--red); }
.why-item:nth-child(2) { border-color: var(--amber); }
.why-item:nth-child(3) { border-color: var(--green); }
.why-item:nth-child(4) { border-color: var(--red); }
.why-item:nth-child(5) { border-color: var(--amber); }
.why-item:nth-child(6) { border-color: var(--green); }
.why-emoji { font-size: 1.9rem; flex-shrink: 0; }
.why-title { font-weight: 800; font-size: 1rem; color: var(--dark); margin-bottom: .3rem; }
.why-body  { font-size: .88rem; color: #777; line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────────────── */
#pricing { background: var(--offwhite); }
.pricing-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.pricing-group { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .25s, box-shadow .25s; }
.pricing-group:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.pricing-group-header { padding: 1.4rem 1.75rem 1.2rem; display: flex; align-items: center; gap: .85rem; }
.pricing-group-header.red-hdr   { background: var(--red); }
.pricing-group-header.amber-hdr { background: var(--amber); }
.pricing-group-header.green-hdr { background: var(--green); }
.pricing-group-icon  { font-size: 1.6rem; }
.pricing-group-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; letter-spacing: .04em; line-height: 1.1; }
.pricing-group-header.amber-hdr .pricing-group-title { color: var(--dark); }
.pricing-rows { padding: .5rem 0 1rem; }
.pricing-row { display: flex; justify-content: space-between; align-items: baseline; padding: .85rem 1.75rem; border-bottom: 1px solid #f0ece4; gap: 1rem; }
.pricing-row:last-child { border-bottom: none; }
.pricing-label  { font-weight: 700; font-size: .95rem; color: var(--dark); flex: 1; }
.pricing-note   { font-size: .78rem; color: #999; font-weight: 600; margin-top: .15rem; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; line-height: 1; white-space: nowrap; }
.pricing-amount.red   { color: var(--red); }
.pricing-amount.amber { color: var(--amber); }
.pricing-amount.green { color: var(--green); }
.pricing-per    { font-size: .72rem; font-weight: 800; color: #aaa; letter-spacing: .06em; text-transform: uppercase; margin-top: .1rem; text-align: right; }
.pricing-footer-note { text-align: center; margin-top: 2rem; color: #888; font-size: .88rem; font-weight: 600; }
.pricing-footer-note strong { color: var(--dark); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials { background: var(--dark); }
#testimonials .section-title { color: var(--offwhite); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: #2a2a2a; border-radius: 12px; padding: 2rem 1.75rem; border-top: 3px solid; }
.testi-card:nth-child(1) { border-color: var(--red); }
.testi-card:nth-child(2) { border-color: var(--amber); }
.testi-card:nth-child(3) { border-color: var(--green); }
.stars { color: var(--amber); font-size: 1rem; margin-bottom: .9rem; letter-spacing: .1em; }
.testi-text { color: #ccc; font-size: .93rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testi-name { font-weight: 800; color: #f0f0f0; font-size: .88rem; }
.testi-role { color: #666; font-size: .8rem; margin-top: .1rem; }

/* ── ENROLL CTA ──────────────────────────────────────────────── */
#enroll { background: var(--green); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
#enroll::before { content: 'ENROLL'; position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 18vw; color: rgba(0,0,0,.1); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: .05em; }
#enroll .section-label { color: rgba(255,255,255,.7); }
#enroll .section-title { color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); }
#enroll .section-body  { color: rgba(255,255,255,.8); margin: 0 auto 2.5rem; }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--offwhite); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.c-icon.r { background: rgba(232,32,26,.1); }
.c-icon.a { background: rgba(245,166,35,.1); }
.c-icon.g { background: rgba(58,140,15,.1); }
.c-label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: .2rem; }
.c-val   { font-weight: 700; font-size: 1rem; color: var(--dark); }
.c-val a { color: var(--dark); text-decoration: none; }
.c-val a:hover { color: var(--red); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 2px solid #e0ddd5; border-radius: 6px;
  font-family: 'Nunito', sans-serif; font-size: .93rem; font-weight: 600;
  color: var(--dark); background: #fff; outline: none; transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--dark); color: #fff; border: none;
  padding: .95rem 2rem; border-radius: 6px;
  font-family: 'Nunito', sans-serif; font-size: .95rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--red); transform: translateY(-2px); }
.form-note { font-size: .78rem; color: #aaa; text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer.alc-footer { background: var(--dark); color: #666; padding: 2.5rem; text-align: center; font-size: .85rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; margin-bottom: .5rem; letter-spacing: .05em; }
.footer-logo .logo-active   { color: var(--red); }
.footer-logo .logo-learning { color: var(--amber); }
.footer-logo .logo-center   { color: var(--green); }
footer.alc-footer p { margin-top: .4rem; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE: TABLET/MOBILE ───────────────────────────────── */
@media (max-width: 900px) {

  /* Nav: show hamburger, hide links */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.2rem 1.5rem 2rem; gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    z-index: 100; border-top: 1px solid #333;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid #2a2a2a; }
  .nav-links li:last-child { border-bottom: none; margin-top: .5rem; }
  .nav-links a { display: block; padding: .9rem .5rem; font-size: 1rem; letter-spacing: .06em; }
  .nav-links .nav-cta { display: inline-block; padding: .6rem 1.4rem; margin-top: .25rem; }

  /* Hero: single column */
  #hero { grid-template-columns: 1fr; min-height: 100vh; }
  .hero-center { display: none !important; }
  .hero-right  { display: none; }
  .hero-left   { padding: 6rem 1.5rem 3.5rem; min-height: 100vh; justify-content: center; }
  .hero-title  { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-sub    { font-size: 1rem; margin-bottom: 2rem; }
  .hero-btns   { flex-direction: column; gap: .75rem; }
  .btn-primary, .btn-outline { text-align: center; padding: .85rem 1.5rem; }
  .hero-stats  { gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; }
  .stat-num    { font-size: 2rem; }

  /* General sections */
  section { padding: 4rem 1.5rem; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .about-card-bg { padding: 2rem 1.5rem; }
  .about-quote   { font-size: 2rem; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; max-width: 100%; }
  .prog-card     { padding: 1.5rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-item { padding: 1.25rem 1rem; }

  /* Pricing */
  .pricing-groups { grid-template-columns: 1fr; gap: 1.25rem; }
  .pricing-group[style] { max-width: 100% !important; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* CTA */
  #enroll { padding: 4rem 1.5rem; }
  #enroll .section-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  #enroll .section-body  { font-size: .95rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row     { grid-template-columns: 1fr; gap: .75rem; }

  /* Footer */
  footer.alc-footer { padding: 2rem 1.5rem; font-size: .8rem; }
}

/* ── RESPONSIVE: SMALL PHONES ────────────────────────────────── */
@media (max-width: 480px) {
  .hero-tag    { font-size: .7rem; }
  .hero-stats  { gap: 1rem; }
  .stat-num    { font-size: 1.7rem; }
  .stat-label  { font-size: .7rem; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .pricing-row { flex-direction: column; gap: .3rem; }
  .pricing-amount { font-size: 1.5rem; }
}
