/* ============ ROOT / VARIABLES ============ */
:root {
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --bg-card: #18181c;
  --bg-card-hover: #1f1f25;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-muted: #a1a1aa;
  --text-dim: #6b6b74;

  --red: #e63946;
  --red-dark: #a8192a;
  --red-light: #ff5a68;

  --chrome-1: #fcfcfd;
  --chrome-2: #cfcfd6;
  --chrome-3: #84848e;
  --chrome-4: #efeff3;

  --gradient-red: linear-gradient(135deg, var(--red-light) 0%, var(--red) 45%, var(--red-dark) 100%);
  --gradient-chrome: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-3) 58%, var(--chrome-4) 100%);

  --font-display: 'Anton', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1200px;
  --header-h: 80px;

  --transition: 0.25s ease;
}

/* ============ RESET ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ UTILITIES ============ */
.text-red {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-chrome {
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gradient-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head .section-sub {
  max-width: 100%;
  margin: 0 auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(230, 57, 70, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.45);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-light);
  backdrop-filter: blur(6px);
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: rgba(230, 57, 70, 0.08);
}

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 0.9rem;
}

/* ============ LOGO ============ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.logo__rtf {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.logo__divider {
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo__resurgence {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.logo__tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-light);
  white-space: nowrap;
}

.logo__tagline i {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--red-light);
  opacity: 0.6;
}

/* ============ TOPBAR ============ */
.topbar {
  background: #050506;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 1.5rem;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--red-light);
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color var(--transition);
}

.topbar__phone svg {
  width: 14px;
  height: 14px;
  color: var(--red-light);
}

.topbar__phone:hover {
  color: var(--red-light);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(11, 11, 13, 0.92);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, #1a1a1f 0%, var(--bg) 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 620px;
  height: 620px;
  background: var(--red);
  opacity: 0.22;
  top: -260px;
  right: -180px;
}

.hero__glow--2 {
  width: 520px;
  height: 520px;
  background: #3f3f4d;
  opacity: 0.35;
  bottom: -220px;
  left: -160px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__stars {
  color: var(--red-light);
  letter-spacing: 0.1em;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero__title-line--accent {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(230, 57, 70, 0.35));
}

.hero__subtitle {
  max-width: 620px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2.5rem 3.5rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-muted);
  animation: bounce 2.4s infinite;
}

.hero__scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============ ABOUT ============ */
.about {
  padding: 7rem 0;
  background: var(--bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.about__points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.about__points svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  color: var(--red-light);
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card__num small {
  font-size: 1.2rem;
  margin-left: 0.15em;
}

.stat-card__label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ============ PROGRAMS ============ */
.programs {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.program-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.18), rgba(230, 57, 70, 0.04));
  color: var(--red-light);
}

.program-card__icon svg {
  width: 26px;
  height: 26px;
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.program-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ FEATURES ============ */
.features {
  padding: 7rem 0;
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: transparent;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 7rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.testimonial__stars {
  color: var(--red-light);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial__quote {
  color: var(--text-muted);
  font-size: 0.97rem;
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-red);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial__author div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.testimonial__author div span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.testimonial--cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.14), rgba(230, 57, 70, 0.02));
  border-color: rgba(230, 57, 70, 0.25);
}

.testimonial--cta__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.testimonial--cta__score {
  font-family: var(--font-display);
  font-size: 3rem;
  background: var(--gradient-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.testimonial--cta__stars {
  color: var(--red-light);
  letter-spacing: 0.15em;
}

.testimonial--cta__count {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.testimonial--cta p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ============ LOCATION ============ */
.location {
  padding: 7rem 0;
  background: var(--bg);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location__content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.location__details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.location__row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.location__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red-light);
  flex-shrink: 0;
}

.location__icon svg {
  width: 20px;
  height: 20px;
}

.location__row div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location__row strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.location__row span,
.location__row a {
  color: var(--text);
  font-size: 1rem;
}

.location__row a:hover {
  color: var(--red-light);
}

.location__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location__map {
  height: 460px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.4) contrast(1.1);
}

.location__map iframe {
  width: 100%;
  height: 100%;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(230, 57, 70, 0.35), transparent 60%),
    linear-gradient(135deg, #16161a, #0b0b0d);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============ FOOTER ============ */
.footer {
  background: #050506;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer__brand p {
  margin: 1.25rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__social:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col a,
.footer__hours {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--red-light);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__rating .hero__stars {
  font-size: 0.85rem;
}

/* ============ FLOATING CALL BUTTON ============ */
.floating-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45);
  animation: pulse 2.6s infinite;
}

.floating-call svg {
  width: 24px;
  height: 24px;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(230, 57, 70, 0.75), 0 0 0 10px rgba(230, 57, 70, 0.08); }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about__inner,
  .location__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__stats {
    order: -1;
  }

  .programs__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .topbar__group {
    gap: 1.25rem;
  }

  .topbar__item--addr {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 80vw);
    background: #0d0d10;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero__stats {
    grid-template-columns: repeat(2, auto);
    gap: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .programs__grid,
  .testimonials__grid,
  .features__grid,
  .about__stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 4rem;
    min-height: auto;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .location__map {
    height: 320px;
  }

  .location__actions {
    flex-direction: column;
  }

  .location__actions .btn {
    width: 100%;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo__tagline {
    display: none;
  }

  .logo__divider {
    height: 26px;
  }

  .logo__rtf {
    font-size: 1.6rem;
  }

  .logo__resurgence {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero__badge {
    font-size: 0.65rem;
    text-align: center;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .program-card,
  .testimonial {
    padding: 2rem 1.5rem;
  }
}
