/* Autoescola Mundial Pérola — layout 2026 (paleta institucional preservada) */

:root {
  --brand: rgb(11, 83, 148);
  --brand-mid: rgb(18, 95, 165);
  --brand-soft: rgba(11, 83, 148, 0.08);
  --brand-deep: rgb(7, 52, 95);
  --accent: #f37a1f;
  --accent-hover: #e56d14;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --ink: #1a2332;
  --muted: #5a6578;
  --line: rgba(11, 83, 148, 0.12);
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --footer: #3f3e43;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(11, 83, 148, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 40, 80, 0.12);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", var(--font);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--surface);
  border-radius: 8px;
  z-index: 1000;
}

.wrap {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--brand);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 35, 80, 0.18);
}

.header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  min-height: 72px;
}

.header-logo img {
  display: block;
  height: auto;
  max-height: 56px;
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.header-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  flex: 1;
  justify-content: flex-end;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.header-nav a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn__ico {
  display: inline-flex;
  line-height: 0;
}

.btn__ico svg {
  display: block;
}

.ico-wa {
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(180deg, #2dd36f 0%, var(--whatsapp) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #3be07a 0%, var(--whatsapp-hover) 100%);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn--accent {
  background: linear-gradient(180deg, #ff9a4a 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(243, 122, 31, 0.4);
}

.btn--accent:hover {
  background: linear-gradient(180deg, #ffa85c 0%, var(--accent-hover) 100%);
  color: #fff;
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn--white {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow);
}

.btn--white:hover {
  background: var(--surface-2);
}

.btn--lg {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.btn--form {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.btn--form:hover {
  background: var(--brand-deep);
  color: #fff;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand);
  background-image:
    linear-gradient(105deg, rgba(11, 83, 148, 0.94) 0%, rgba(11, 83, 148, 0.75) 42%, rgba(11, 83, 148, 0.45) 100%),
    url("https://images.unsplash.com/photo-1489827904760-d7594e4b7837?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
}

.hero__lead {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
}

.hero__lead strong {
  color: #fff;
}

.hero__bullets {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 122, 31, 0.35);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero__stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Trust strip */
.strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
}

.strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid var(--accent);
}

.strip__item strong {
  font-size: 0.88rem;
  color: var(--brand);
}

.strip__item span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--soft {
  background: var(--surface);
}

.section--tint {
  background: linear-gradient(180deg, #eef3f9 0%, var(--surface-2) 100%);
}

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

.section-head--left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.card-benefit {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.card-benefit:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-benefit__num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(11, 83, 148, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.card-benefit h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--brand);
}

.card-benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Services — grade compacta (3 colunas), foto fixa em altura */
.section--servicos {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 45%, var(--surface-2) 100%);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section--servicos .section-head {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.grid-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.35rem);
  align-items: stretch;
}

.card-service {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 83, 148, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 24px rgba(11, 83, 148, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 44px rgba(11, 83, 148, 0.11);
}

/* Faixa fixa 168px de altura (≈377×168 em 3 colunas); contain = imagem inteira visível */
.card-service__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 168px;
  min-height: 168px;
  max-height: 168px;
  overflow: hidden;
  background: linear-gradient(160deg, #edf1f8 0%, #e2eaf5 100%);
  box-sizing: border-box;
  border-radius: 14px 14px 0 0;
}

.card-service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(11, 83, 148, 0.06);
  border-radius: inherit;
  z-index: 1;
}

.card-service__media img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  border-radius: 12px;
}

.card-service__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.2rem 1.15rem 1.3rem;
  gap: 0.45rem;
  min-width: 0;
}

.card-service__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(11, 83, 148, 0.12);
}

.card-service__tag--muted {
  color: var(--muted);
  background: rgba(90, 101, 120, 0.07);
  border-color: rgba(90, 101, 120, 0.1);
}

.card-service__body h3 {
  margin: 0.1rem 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.card-service__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1 1 auto;
  max-width: none;
}

.text-link--block {
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.card-service__body .text-link--block {
  flex-shrink: 0;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .grid-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-services {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--brand);
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--accent);
}

.text-link .btn__ico svg {
  transition: transform 0.2s ease;
}

.text-link:hover .btn__ico svg {
  transform: translateX(3px);
}

/* Estrutura / acolhimento (sem imagem — bloco editorial centralizado) */
.section--acolhimento {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

.acolhimento {
  max-width: 40rem;
  margin: 0 auto;
}

.acolhimento__head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.acolhimento__head .eyebrow {
  margin: 0 0 0.5rem;
}

.acolhimento__head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.acolhimento__lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.checklist {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  line-height: 1.5;
}

.checklist li:last-child {
  margin-bottom: 0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.checklist--acolhimento {
  padding: 1rem 1.1rem 1.05rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(11, 83, 148, 0.1);
  border-radius: var(--radius-sm);
}

.acolhimento__cta {
  text-align: center;
}

/* Steps — timeline */
.section--steps {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps--timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 1.25rem;
}

/* Linha conectora entre os passos */
.steps--timeline::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 10%;
  right: 10%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0.35;
  z-index: 0;
}

.steps--timeline .steps__item {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.35rem 1.15rem 1.4rem;
  margin: 0 0.35rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.steps--timeline .steps__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.steps--timeline .steps__n {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-mid) 0%, var(--brand) 100%);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(11, 83, 148, 0.35);
  border: 3px solid var(--surface);
}

.steps--timeline .steps__item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand);
}

.steps--timeline .steps__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.steps--timeline .steps__item strong {
  color: var(--ink);
  font-weight: 600;
}

/* Quotes */
.grid-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--ink);
  font-style: italic;
}

.quote footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
}

/* CTA final */
.cta-final {
  position: relative;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 55%, var(--brand-mid) 100%);
  opacity: 1;
}

.cta-final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=60");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__inner h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 0.75rem;
}

.cta-final__inner > p {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Contact */
.contact {
  background: var(--surface);
  padding-bottom: 4rem;
}

.contact__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.contact .section-head {
  margin-bottom: 2rem;
}

.contact__cards {
  display: grid;
  gap: 1.25rem;
}

.loc-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.loc-card--featured {
  background: linear-gradient(135deg, rgba(11, 83, 148, 0.06) 0%, var(--surface) 100%);
  border-color: rgba(11, 83, 148, 0.2);
  text-align: center;
  padding: 1.75rem 1.5rem;
}

.loc-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.loc-card__icon .ico-wa {
  width: 40px;
  height: 40px;
  color: var(--whatsapp);
}

.loc-card--featured h3 {
  font-size: 1.15rem;
}

.loc-card--featured > p {
  margin: 0 0 1.1rem;
  max-width: 420px;
  margin-inline: auto;
}

.loc-card__btn {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

.loc-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--brand);
}

.loc-card__addr {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.loc-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.loc-card__actions .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

.loc-card__actions .text-link:hover {
  color: var(--accent);
}

.loc-card__actions .ico-wa {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--whatsapp);
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 1.2fr;
}

.footer__brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.footer__brand p {
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer__heading {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 0.2rem 0;
}

.footer__links a:hover {
  color: #fff;
}

.footer__text {
  margin: 0;
  line-height: 1.5;
}

.footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Mobile */
@media (max-width: 1024px) {
  .strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps--timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .steps--timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: flex;
  }

  .header-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
  }

  .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .btn {
    justify-content: center;
  }

  #nav-toggle:checked ~ .header-menu {
    display: flex;
  }

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

  .hero__card {
    max-width: 420px;
  }

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

  .steps--timeline {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps--timeline .steps__item {
    margin: 0;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    margin-inline: auto;
  }

  .footer__brand img {
    margin-inline: auto;
  }

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

@media (max-width: 560px) {
  .strip__inner {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .cta-final__actions {
    flex-direction: column;
  }

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