/* ============================================================
   CEATE — Design System
   ============================================================ */

:root {
  --navy:       #0f2051;
  --navy-light: #1a3070;
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --teal:       #0891b2;
  --green:      #22c55e;
  --orange:     #f97316;
  --pink:       #f43f5e;
  --amber:      #f59e0b;
  --text:       #1e293b;
  --text-muted: #64748b;
  --border:     #e2e8f0;
  --bg:         #f5f7fa;
  --white:      #ffffff;
  --grad-hero:  linear-gradient(135deg, #dbeafe 0%, #f5f7fa 45%, #dcfce7 100%);
  --grad-about: linear-gradient(160deg, #f0f4f8 0%, #f8fafc 50%, #f0f4ed 100%);
  --grad-aba:   linear-gradient(135deg, #2563eb 0%, #0891b2 55%, #0d9488 100%);
  --grad-footer:#0a1628;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 2px 16px rgba(15, 32, 81, 0.07);
  --shadow-md:  0 6px 32px rgba(15, 32, 81, 0.11);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 50px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(15, 32, 81, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(15, 32, 81, 0.04);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  white-space: nowrap;
}
.btn-white svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

@keyframes cta-pulse-navy {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 32, 81, 0.35); }
  60%       { box-shadow: 0 0 0 10px rgba(15, 32, 81, 0); }
}

@keyframes cta-pulse-white {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  60%       { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.btn-primary.cta-contact {
  animation: cta-pulse-navy 2.6s ease-out infinite;
}
.btn-primary.cta-contact:hover {
  animation-play-state: paused;
}

.btn-white.cta-contact {
  animation: cta-pulse-white 2.6s ease-out infinite;
}
.btn-white.cta-contact:hover {
  animation-play-state: paused;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(15, 32, 81, 0.08);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { width: 128px; height: 128px; object-fit: contain; }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  list-style: none;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue); }

.main-nav .btn-primary { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(15,32,81,0.06); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 580px;
}
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--grad-hero);
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 108px 28px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.highlight { color: var(--blue); }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: table; /* shrinks to buttons' natural width */
  margin-bottom: 0;
}
.hero-cta-group .no-convenio {
  display: block;
  text-align: center;
  margin-top: 14px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.no-convenio {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.no-convenio.light { color: rgba(255,255,255,0.55); margin-top: 14px; font-size: 9.5px; }

.hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
}
.hero-photo-clip {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #dcfce7);
  box-shadow: var(--shadow-md);
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  animation: float-badge 4s ease-in-out infinite;
}
.hero-badge-top  { top: 18px; right: -18px; animation-delay: 0s; }
.hero-badge-bottom { bottom: 18px; left: -18px; animation-delay: 2s; }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-badge-float strong { display: block; font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-badge-float span { color: var(--text-muted); font-size: 11px; }

.badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { width: 18px; height: 18px; }
.badge-icon-pink { background: #fff1f2; }
.badge-icon-pink svg { stroke: var(--pink); }
.badge-icon-green { background: #f0fdf4; }
.badge-icon-green svg { stroke: var(--green); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--grad-about);
  padding: 80px 0;
}
.about .section-head { margin-bottom: 40px; }
.about-body {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-body p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.about-body strong { color: var(--text); font-weight: 700; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-blue   { color: var(--blue); }
.stat-green  { color: var(--green); }
.stat-orange { color: var(--orange); }
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: #f0f4fb;
  padding: 80px 0;
}
.services .section-head { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--card-bg);
  border-radius: 50%;
  pointer-events: none;
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--card-color);
}

.service-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.service-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   ABA
   ============================================================ */
.aba {
  background: var(--grad-aba);
  padding: 80px 0;
  overflow: hidden;
}
.aba-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.aba-left { flex: 1; min-width: 0; }

.aba-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
}
.aba-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.aba-title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.aba-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.aba-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.aba-feat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.aba-feat:hover { background: rgba(255,255,255,0.18); }
.aba-feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aba-feat-icon svg { width: 18px; height: 18px; stroke: var(--white); }
.aba-feat h3 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.aba-feat p  { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; }

.aba-right { flex: 1; min-width: 0; display: flex; justify-content: center; }
.aba-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.15);
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.aba-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.aba-float-card {
  position: relative;
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.aba-float-card svg { width: 22px; height: 22px; flex-shrink: 0; }
.aba-float-card strong { color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
  padding: 80px 0;
}
.faq .section-head { margin-bottom: 48px; }
.faq-list {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: #f8faff; }
.faq-question[aria-expanded="true"] { color: var(--blue); }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  padding: 0 24px 20px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta { text-align: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg);
  padding: 80px 0;
}
.contact .section-head { margin-bottom: 56px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card-blue  { border-top-color: var(--blue); }
.contact-card-green { border-top-color: var(--green); }
.contact-card-red   { border-top-color: var(--pink); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card-blue  .contact-card-icon { background: #eff6ff; }
.contact-card-blue  .contact-card-icon svg { stroke: var(--blue); }
.contact-card-green .contact-card-icon { background: #f0fdf4; }
.contact-card-green .contact-card-icon svg { stroke: var(--green); }
.contact-card-red   .contact-card-icon { background: #fff1f2; }
.contact-card-red   .contact-card-icon svg { stroke: var(--pink); }
.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.cta-block {
  background: var(--grad-aba);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}
.cta-block h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-block p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.cta-block .no-convenio {
  font-size: 9.5px;
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grad-footer);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left,
.footer-right {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-privacy-link {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-privacy-link:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-item:nth-child(5) { transition-delay: 0.1s; }
.reveal-item:nth-child(6) { transition-delay: 0.18s; }
.reveal-item:nth-child(7) { transition-delay: 0.12s; }
.reveal-item:nth-child(8) { transition-delay: 0.2s; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .aba-inner { flex-direction: column; gap: 36px; }
  .aba-right { width: 100%; }
  .aba-left { max-width: 640px; }
  .aba-photo-wrap { max-width: 100%; aspect-ratio: 16/9; }
  .aba-features { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 720px) {
  /* Header — logo centrado, sem menu */
  .header-inner { padding: 0 16px; justify-content: center; gap: 0; }
  .main-nav { display: none !important; }
  .header-inner > .btn-primary { display: none; }
  .hamburger { display: none; }

  /* Hero */
  .hero-inner {
    flex-direction: column;
    padding: 88px 20px 56px;
    gap: 36px;
    min-height: auto;
  }
  .hero-left { width: 100%; }
  .hero-right { width: 100%; }
  .hero-photo-wrap { max-width: 100%; aspect-ratio: 4/3; }
  .hero-badge { font-size: 12px; padding: 5px 12px; }
  .hero-badge-float { font-size: 12px; padding: 10px 12px; }
  .hero-badge-top  { top: 10px; right: 10px; }
  .hero-badge-bottom { bottom: 10px; left: 10px; }
  .hero-badge-float strong { font-size: 17px; }

  /* About */
  .about { padding: 56px 0; }
  .about-body { padding: 0 4px; }
  .stats-row { gap: 36px; flex-wrap: wrap; justify-content: center; }

  /* Services */
  .services { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ABA */
  .aba { padding: 56px 0; }
  .aba-inner { padding: 0 20px; }
  .aba-features { grid-template-columns: 1fr; gap: 12px; }
  .aba-photo-wrap { aspect-ratio: 4/3; }

  /* FAQ */
  .faq { padding: 56px 0; }
  .faq-question { padding: 16px 20px; font-size: 14px; }
  .faq-answer { padding: 0 20px 16px; }

  /* Contact */
  .contact { padding: 56px 0; }
  .contact-cards { grid-template-columns: 1fr; gap: 12px; }
  .cta-block { padding: 36px 20px; border-radius: var(--radius); }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .footer-left, .footer-right { font-size: 10px; }
  .footer-right { flex-direction: column; align-items: center; gap: 4px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(30px, 9vw, 44px); }
  .stats-row { flex-direction: column; align-items: center; gap: 24px; }
  .hero-cta-group { display: block; width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .aba-features { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(24px, 7vw, 34px); }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-item { opacity: 1; transform: none; }
}

::selection { background: rgba(37, 99, 235, 0.15); color: var(--navy); }
