/* ═══════════════════════════════════════
   RELIABLE REPAIRS — Main Stylesheet
   ═══════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  --primary:        #1d4ed8;
  --primary-dark:   #1e40af;
  --primary-light:  #dbeafe;
  --accent:         #f97316;
  --accent-dark:    #ea580c;
  --accent-light:   #fff7ed;
  --whatsapp:       #25d366;
  --whatsapp-dark:  #128c7e;
  --messenger:      #0099ff;
  --messenger-dark: #0077cc;
  --dark:           #0f172a;
  --dark-2:         #1e293b;
  --text:           #1e293b;
  --text-muted:     #64748b;
  --bg:             #ffffff;
  --bg-soft:        #f8fafc;
  --border:         #e2e8f0;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:         0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg:      0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl:      0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      20px;
  --transition:     all .2s ease;
  --font-heading:   'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.12);
}
input::placeholder, textarea::placeholder { color: #94a3b8; }
textarea { resize: vertical; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); }

/* ─── Section Headers ─── */
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: .9rem;
}
.section__eyebrow--light { color: #93c5fd; background: rgba(147,197,253,.15); }
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .9rem;
}
.section__title--light { color: #fff; }
.section__sub { color: var(--text-muted); font-size: 1.05rem; }
.section__sub--light { color: #94a3b8; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--sm  { padding: .5rem 1.25rem; font-size: .85rem; }
.btn--md  { padding: .75rem 1.75rem; font-size: .95rem; }
.btn--lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,.35); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.3); }

.btn--white { background: #fff; color: var(--dark); }
.btn--white:hover { background: #f1f5f9; transform: translateY(-1px); }

.btn--nav {
  background: var(--accent);
  color: #fff;
  padding: .45rem 1.2rem;
  font-size: .85rem;
}
.btn--nav:hover { background: var(--accent-dark); }

/* ─── Logo ─── */
.nav__logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: box-shadow .3s;
}
.nav.scrolled .nav__logo-img {
  box-shadow: 0 0 0 2px rgba(255,255,255,.15), 0 2px 8px rgba(0,0,0,.25);
}
.hero__logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.about__visual-logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto 1rem;
}
.footer__logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: .6rem;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  transition: color .3s;
}
.nav.scrolled .nav__logo { color: var(--text); }
.nav__logo-icon { font-size: 1.4rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links li a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
.nav__links li a:hover { color: #fff; }
.nav.scrolled .nav__links li a { color: var(--text-muted); }
.nav.scrolled .nav__links li a:hover { color: var(--primary); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: .3rem;
}
.nav__toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: all .3s;
}
.nav.scrolled .nav__toggle span { background: var(--text); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(29,78,216,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(249,115,22,.12) 0%, transparent 50%),
    linear-gradient(135deg, #0a1628 0%, #0f2040 40%, #0d1a35 100%);
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__heading span { color: var(--accent); }
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
}
.hero__trust span::before { content: ''; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scroll-bob 1.6s ease infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(8px); opacity: 0; }
}

/* ─── Emergency Callout Banner ─── */
.callout-banner {
  background: linear-gradient(90deg, #991b1b 0%, #b91c1c 100%);
  color: #fff;
  padding: 1.1rem 0;
}
.callout-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.callout-banner__icon { font-size: 1.4rem; flex-shrink: 0; }
.callout-banner__text {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  align-items: center;
}
.callout-banner__text strong { font-size: 1rem; }
.callout-banner__text span { font-size: .9rem; opacity: .9; }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.service-card__desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.skeleton-card {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
  height: 160px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {}
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── About ─── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.about__visual-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.about__visual-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem 3rem;
  text-align: center;
  z-index: 1;
}
.about__visual-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.about__visual-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fef3c7;
  color: #92400e;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
}
.about__content .section__title { text-align: left; }
.about__content .section__eyebrow { display: inline-block; }
.about__text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.about__points {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.about__points li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Testimonials ─── */
.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: .05em; }

.testimonials-wrapper { max-width: 860px; margin: 0 auto; }
.testimonials-track { overflow: hidden; }
.testimonials-slide {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s ease;
}
.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 100%;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--text); }
.testimonial-location { font-size: .8rem; color: var(--text-muted); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--bg);
}
.testi-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.testimonials-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all .3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ─── Contact ─── */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,.1);
  transition: var(--transition);
  gap: .5rem;
  color: #fff;
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.contact-card--phone   { background: rgba(29,78,216,.2); border-color: rgba(147,197,253,.25); }
.contact-card--phone:hover { background: rgba(29,78,216,.35); }
.contact-card--whatsapp  { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.3); }
.contact-card--whatsapp:hover { background: rgba(37,211,102,.25); }
.contact-card--messenger { background: rgba(0,153,255,.15); border-color: rgba(0,153,255,.3); }
.contact-card--messenger:hover { background: rgba(0,153,255,.25); }

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .65;
}
.contact-card__value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}
.contact-card__hint { font-size: .8rem; opacity: .6; }

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.contact-form__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: .4rem;
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(29,78,216,.25);
}
.form-group select option { background: var(--dark-2); color: #fff; }

.form-feedback {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  margin-top: .75rem;
}
.form-feedback--success { background: rgba(34,197,94,.15); color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.form-feedback--error   { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.25); }

.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: #07101e;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 3rem 1.25rem;
}
.footer__brand {}
.footer__logo {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .5rem;
}
.footer__brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  padding-top: .2rem;
}
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: right;
}
.footer__contact a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}
.footer__contact span { font-size: .85rem; color: rgba(255,255,255,.4); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__admin-link {
  color: rgba(255,255,255,.2);
  font-size: .75rem;
  transition: color .2s;
}
.footer__admin-link:hover { color: rgba(255,255,255,.5); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav__links.open li a {
    font-size: 1.25rem;
    color: #fff;
  }
  .nav__links.open .btn--nav {
    font-size: 1.1rem;
    padding: .7rem 2rem;
  }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { min-height: 220px; order: -1; }
  .about__visual-ring { width: 200px; height: 200px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .contact-channels { grid-template-columns: 1fr; }
  .footer__contact { text-align: left; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 5.5rem 0 3rem; min-height: auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; max-width: 300px; }
  .callout-banner__inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__contact { text-align: left; }
}
