/* ============================================================
   ALPHASEC — site.css v2.0
   Design Moderno | UI/UX Profissional
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --navy:        #0a1628;
  --navy-2:      #060f1c;
  --blue:        #1565c0;
  --yellow:      #f5c518;
  --yellow-2:    #e6b804;
  --text:        #0f172a;
  --muted:       #64748b;
  --border:      rgba(15,23,42,.10);
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-soft2:    #f1f5f9;
  --green:       #25d366;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 20px 60px rgba(2,6,23,.18);
  --shadow-soft: 0 8px 30px rgba(2,6,23,.10);
  --transition:  .25s ease;

  /* legado (compatibilidade) */
  --pf-navy:#0a1628; --pf-navy-2:#060f1c; --pf-blue:#1565c0;
  --pf-yellow:#f5c518; --pf-text:#0f172a; --pf-muted:#64748b;
  --pf-border:rgba(15,23,42,.10); --pf-bg:#fff; --pf-bg-soft:#f8fafc;
  --pf-bg-soft-2:#f1f5f9; --pf-radius:16px;
  --pf-shadow:0 20px 60px rgba(2,6,23,.18);
  --pf-shadow-soft:0 8px 30px rgba(2,6,23,.10);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
h1,h2,h3,h4,h5,h6 { letter-spacing: -.025em; }
img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .text-muted { color: rgba(255,255,255,.80) !important; }
.link-muted { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--transition); }
.link-muted:hover { color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { transition: box-shadow var(--transition); }
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.navbar-brand .navbar-logo {
  height: 62px !important;
  width: auto !important;
}
.navbar-brand .navbar-anniversary {
  height: 62px;
  width: auto;
}
.navbar.bg-white { box-shadow: 0 4px 24px rgba(2,6,23,.08); }
.navbar-light .navbar-nav .nav-link {
  color: rgba(15,23,42,.78);
  font-weight: 500;
  transition: color var(--transition);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--text);
  font-weight: 700;
}

/* ============================================================
   HERO PRINCIPAL (index) — SLIDER AUTOMÁTICO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6,16,30,.88) 0%, rgba(6,16,30,.65) 55%, rgba(6,16,30,.38) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  font-weight: 600;
  font-size: .88rem;
  color: #fff;
}
.hero h1 { letter-spacing: -.04em; line-height: 1.1; }
.hero .lead { color: rgba(255,255,255,.85) !important; font-size: 1.1rem; }

/* Indicadores do slider */
.hero-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.40);
  cursor: pointer;
  border: none; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--yellow); transform: scale(1.4); }

/* ============================================================
   PAGE HERO (páginas internas) — SLIDER
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.page-hero .container { position: relative; z-index: 2; padding: 5rem 0; }
.page-hero h1 { color: #fff; }
.page-hero .text-muted { color: rgba(255,255,255,.78) !important; }

/* Badge páginas internas */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(245,197,24,.16);
  border: 1px solid rgba(245,197,24,.30);
  color: var(--yellow);
  font-weight: 700;
  font-size: .88rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-soft {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  cursor: default;
}
.card-soft:hover {
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 24px 56px rgba(2,6,23,.22);
  border-color: var(--yellow);
}

/* Service card com imagem */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(2,6,23,.20);
}
.service-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
  position: absolute;
  bottom: 16px; left: 18px;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--yellow);
  display: grid; place-items: center;
  font-size: 26px;
  border: 3px solid rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(2,6,23,.38);
  z-index: 2;
}
.service-card-body {
  padding: 1.5rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h5 { font-weight: 700; margin-bottom: .5rem; }
.service-card-body p { color: var(--muted); flex: 1; font-size: .93rem; margin-bottom: 1rem; }
.service-card-body .btn { margin-top: auto; align-self: flex-start; }
.service-certifications {
  display: flex;
  justify-content: center;
  margin-top: -.5rem;
  margin-bottom: 1.25rem;
}
.service-certifications-inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  padding: 1.15rem 1.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
}
.service-certifications-inner img {
  display: block;
  max-height: 120px;
  width: auto;
}

.brands-showcase {
  margin-top: 2.5rem;
}
.service-certification-block {
  margin-top: 3rem;
}
.service-certification-title {
  color: var(--text);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}
.brands-marquee {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: .5rem 0;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  min-width: max-content;
  animation: brands-scroll 52s linear infinite;
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
.brand-chip {
  width: 180px;
  height: 94px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 8px 26px rgba(2,6,23,.08);
}
.brand-chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(1.02);
}
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 1rem)); }
}

/* Icon bubble (mini cards) */
.icon-bubble {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(245,197,24,.16);
  border: 1px solid rgba(245,197,24,.25);
  font-size: 22px;
  flex-shrink: 0;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section-soft  { background: var(--bg-soft); }
.section-soft-2, .section-soft2 { background: var(--bg-soft2); }
.section-alt   { background: var(--bg-soft); }
.section-dark  {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #fff;
}
.section-dark .text-muted { color: rgba(255,255,255,.72) !important; }

/* ============================================================
   STATS
   ============================================================ */
.stat {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
  cursor: default;
}
.stat:hover {
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 24px 56px rgba(2,6,23,.22);
  border-color: var(--yellow);
}
.stat .num {
  font-size: 2.1rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--navy); line-height: 1;
}
.stat .lbl { color: var(--muted); font-size: .9rem; margin-top: .4rem; }

/* ============================================================
   SPLIT MEDIA
   ============================================================ */
.split-media {
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   PROCESSO / STEPS
   ============================================================ */
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}

/* ============================================================
   MVV (Missão Visão Valores)
   ============================================================ */
.mvv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mvv-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center;
  font-size: 28px;
  margin: 0 auto 1.1rem;
}
.mvv-card h5 { font-weight: 700; margin-bottom: .5rem; }
.mvv-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
}
.testimonial .stars { color: #f59e0b; font-size: .9rem; margin-bottom: .75rem; }
.testimonial blockquote { font-size: .95rem; color: var(--text); margin: 0 0 1rem; font-style: italic; }
.testimonial .author { font-weight: 700; font-size: .88rem; }
.testimonial .role { font-size: .82rem; color: var(--muted); }

/* ============================================================
   FORMULÁRIOS MODERNOS
   ============================================================ */
.form-control, .form-select {
  border: 1.5px solid rgba(15,23,42,.14);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .95rem;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-select { min-height: calc(1.5em + 1.4rem + 3px); }
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
  outline: none;
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: .3rem; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .bi {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); font-size: 1rem; pointer-events: none;
}
.input-icon-wrap textarea ~ .bi { top: 14px; transform: none; }
.input-icon-wrap .form-control,
.input-icon-wrap .form-select { padding-left: 2.65rem; }
.hero-certification {
  margin-top: .8rem;
  padding: .65rem .9rem;
  border-radius: 14px;
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(15,23,42,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-certification img {
  display: block;
  max-height: 180px;
  width: auto;
}
.hero-certification-block {
  margin-top: 1rem;
}
.hero-certification-block {
  margin-top: 1rem;
}

/* ============================================================
   CANAIS DE CONTATO
   ============================================================ */
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-channel:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-soft); color: var(--text);
}
.contact-channel .ch-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-channel .ch-icon.green { background: rgba(37,211,102,.14); color: #16a34a; }
.contact-channel .ch-icon.blue  { background: rgba(21,101,192,.12); color: var(--blue); }
.contact-channel .ch-icon.amber { background: rgba(245,197,24,.16); color: #b45309; }
.contact-channel .ch-icon.dark  { background: rgba(15,23,42,.08);   color: var(--navy); }
.contact-channel .ch-label { font-size: .78rem; color: var(--muted); }
.contact-channel .ch-value { font-weight: 600; font-size: .94rem; }

/* ============================================================
   PLANOS (Locação)
   ============================================================ */
.plan-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(145deg, #fffbe8, #fff);
}
.plan-card .plan-icon { font-size: 2.6rem; margin-bottom: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 0;
}
.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
}
.footer-brand .footer-logo { height: 48px; width: auto; }
.footer-brand > .footer-cert-badge {
  min-height: 0;
  padding: 0;
}
.footer-brand > .footer-cert-badge img {
  height: 48px;
  max-height: none;
  width: auto;
}
.footer-brand p {
  color: rgba(255,255,255,.60);
  font-size: .88rem;
  margin-top: .1rem;
  margin-bottom: 0;
  max-width: 260px;
  line-height: 1.6;
  flex-basis: 100%;
}
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: 1.25rem;
  flex-basis: 100%;
}
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.footer-cert-badge img {
  display: block;
  max-height: 100px;
  width: auto;
}
.footer-heading {
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.40); margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.68); text-decoration: none;
  font-size: .9rem; transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact a {
  color: rgba(255,255,255,.68); text-decoration: none;
  font-size: .88rem; display: flex; align-items: center;
  gap: .5rem; margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0; margin-top: 3rem;
}
.footer-bottom .text-muted { color: rgba(255,255,255,.42) !important; }
.footer-bottom a { color: rgba(255,255,255,.52); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--yellow); }

/* Legado — footer simples */
footer:not(.site-footer) { background: var(--navy); color: #fff; }

/* ============================================================
   BOTÕES FLUTUANTES
   ============================================================ */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0    rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,.00); }
  100% { box-shadow: 0 0 0 0    rgba(37,211,102,.00); }
}
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; text-decoration: none;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: wa-pulse 2s ease-out infinite;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.whatsapp-float svg { display: block; }

.to-top {
  position: fixed; right: 18px; bottom: 92px; z-index: 998;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(15,23,42,.12); color: var(--text);
  text-decoration: none; display: grid; place-items: center;
  border: 1px solid rgba(15,23,42,.14);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.to-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; padding: 14px; z-index: 1000; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 980px; margin: 0 auto;
  background: rgba(255,255,255,.98);
  border-radius: 16px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 18px 60px rgba(2,6,23,.22);
  border: 1px solid rgba(15,23,42,.10);
}
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { transition: all var(--transition); }
.btn-warning { background: var(--yellow); border-color: var(--yellow); color: #0a1628; font-weight: 600; }
.btn-warning:hover { background: var(--yellow-2); border-color: var(--yellow-2); color: #0a1628; }
.btn-primary { background: var(--navy); border-color: var(--navy); font-weight: 600; }
.btn-primary:hover { background: var(--navy-2); border-color: var(--navy-2); }

/* ============================================================
   REVEAL / ANIMAÇÕES
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ============================================================
   TIPOGRAFIA / HELPERS
   ============================================================ */
.text-muted { color: var(--muted) !important; }
.divider { height: 1px; background: rgba(15,23,42,.08); }

/* ============================================================
   FAQ
   ============================================================ */
.accordion-button { font-weight: 700; }
.accordion-button:not(.collapsed) { background: rgba(245,197,24,.12); color: var(--navy); }

/* ============================================================
   BLOG HOME
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.letter-spacing-1 { letter-spacing: .08em; }
.blog-home { background: #f8f9fa; }
.blog-home h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.blog-home-cta { border-radius: 6px; color: #111; }

.blog-skeleton {
  border-radius: 12px;
  overflow: hidden;
}
.blog-skeleton-img {
  height: 180px;
  background: #eee;
  animation: pulse 1.5s infinite;
}
.blog-skeleton-line {
  height: 14px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 8px;
  animation: pulse 1.5s infinite;
}
.blog-skeleton-line.short { width: 70%; }

.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  color: inherit;
}
.blog-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.blog-card .corpo {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.blog-card .cat-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #d4a800;
  background: rgba(245,200,0,.12);
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #111;
  flex: 1;
}
.blog-card .leia {
  font-size: .82rem;
  font-weight: 700;
  color: #f5c800;
  margin-top: 12px;
}
.blog-card .leia i { transition: transform .2s; }
.blog-card:hover .leia i { transform: translateX(4px); }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .page-hero { min-height: 42vh; }
  .page-hero .container { padding: 3.5rem 0; }
  .hero-indicators { bottom: 18px; }
  .service-card-img { height: 175px; }
  .split-media { border-radius: 14px; }
  .brand-chip {
    width: 145px;
    height: 84px;
    padding: 10px;
  }
  .brands-track {
    animation-duration: 46s;
  }
  .navbar-brand .navbar-logo,
  .navbar-brand .navbar-anniversary {
    height: 48px !important;
  }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 1.85rem; }
  .foot-col { margin-bottom: 1.5rem; }
}
