/* Alisson Alencar Advogados — main.css
   Paleta: bordô + ouro | Tipografia: Cormorant Garamond + Outfit */

:root {
  --bordo: #5c2426;
  --bordo-deep: #3a1517;
  --bordo-mid: #7a3235;
  --ouro: #c9a45c;
  --ouro-light: #e0c07a;
  --ouro-dark: #a8843f;
  --creme: #f7f0e6;
  --creme-soft: #ebe3d6;
  --ink: #1a1212;
  --ink-soft: #4a3c3c;
  --white: #ffffff;
  --line: rgba(201, 164, 92, 0.35);
  --shadow: 0 24px 60px rgba(26, 18, 18, 0.28);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;

  --container: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--bordo);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--bordo-deep);
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ouro);
  color: var(--bordo-deep);
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(58, 21, 23, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--creme);
  flex-shrink: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creme);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list a {
  color: rgba(247, 240, 230, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 450;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--ouro-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--creme);
  position: relative;
  transition: transform 0.3s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-sm {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}

.btn-gold {
  background: var(--ouro);
  color: var(--bordo-deep);
  border-color: var(--ouro);
}

.btn-gold:hover {
  background: var(--ouro-light);
  border-color: var(--ouro-light);
  color: var(--bordo-deep);
}

.btn-outline-light {
  background: transparent;
  color: var(--creme);
  border-color: rgba(247, 240, 230, 0.45);
}

.btn-outline-light:hover {
  border-color: var(--ouro);
  color: var(--ouro-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--bordo);
  border-color: rgba(92, 36, 38, 0.35);
}

.btn-outline-dark:hover {
  border-color: var(--bordo);
  background: var(--bordo);
  color: var(--creme);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--creme);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(58, 21, 23, 0.94) 0%, rgba(58, 21, 23, 0.78) 42%, rgba(58, 21, 23, 0.45) 68%, rgba(58, 21, 23, 0.55) 100%),
    linear-gradient(to top, rgba(26, 10, 11, 0.75) 0%, transparent 45%);
}

.hero-ornament {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  pointer-events: none;
}

.hero-ornament--tl {
  top: calc(var(--header-h) + 1.5rem);
  left: 1.5rem;
  border-right: 0;
  border-bottom: 0;
}

.hero-ornament--br {
  right: 1.5rem;
  bottom: 1.5rem;
  border-left: 0;
  border-top: 0;
}

.hero-content {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 5.5rem;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}

.hero-brand-mark img {
  width: 72px;
  height: 72px;
}

.hero-brand-mark .brand-name {
  font-size: 1.05rem;
}

.hero-brand-mark .brand-sub {
  letter-spacing: 0.38em;
}

.hero h1 {
  color: var(--creme);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  max-width: 14ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--ouro-light);
  font-weight: 500;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 38ch;
  color: rgba(247, 240, 230, 0.88);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ouro-dark);
  margin: 0 0 0.85rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.section-head .lead,
.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.section--bordo {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 164, 92, 0.12), transparent 45%),
    linear-gradient(160deg, var(--bordo-deep), var(--bordo) 55%, #4a1c1e);
  color: var(--creme);
}

.section--bordo h2,
.section--bordo h3 {
  color: var(--creme);
}

.section--bordo .eyebrow {
  color: var(--ouro-light);
}

.section--bordo .lead {
  color: rgba(247, 240, 230, 0.78);
}

.section--soft {
  background:
    linear-gradient(180deg, var(--creme) 0%, var(--creme-soft) 100%);
}

/* ---------- Áreas de atuação ---------- */
.section-atuacao {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section-atuacao > .container {
  position: relative;
  z-index: 1;
}

/* Wash de marca — estilo Medina (canto suave + fade), forma do monograma AA */
.brand-wash {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: min(62vw, 560px);
  height: min(50vw, 460px);
  color: var(--bordo);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to top right, #000 18%, transparent 72%);
  mask-image: linear-gradient(to top right, #000 18%, transparent 72%);
}

.brand-wash svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 820px) {
  .brand-wash {
    width: min(85vw, 360px);
    height: min(70vw, 300px);
    opacity: 0.07;
  }
}

.practice-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(92, 36, 38, 0.15);
}

.practice-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(92, 36, 38, 0.15);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.practice-item:hover {
  color: inherit;
  background: rgba(92, 36, 38, 0.03);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.practice-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ouro-dark);
  line-height: 1;
  padding-top: 0.35rem;
}

.practice-body h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  margin-bottom: 0.4rem;
}

.practice-body p {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-weight: 300;
}

.practice-arrow {
  align-self: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(92, 36, 38, 0.2);
  display: grid;
  place-items: center;
  color: var(--bordo);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.practice-item:hover .practice-arrow {
  background: var(--bordo);
  border-color: var(--bordo);
  color: var(--creme);
}

/* ---------- Sobre / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 420px;
  /* reserva espaço para o filete dourado sem clipping */
  padding: 0 1rem 1rem 0;
}

.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

/* Filete atrás da foto (z-index positivo evita sumir no stacking context do reveal) */
.split-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 45%;
  border: 1px solid var(--ouro);
  z-index: 0;
  pointer-events: none;
}

.split-copy .eyebrow {
  color: var(--ouro);
}

.split-copy h2 {
  color: var(--creme);
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.split-copy p {
  color: rgba(247, 240, 230, 0.82);
  font-weight: 300;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 164, 92, 0.28);
}

.split-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ouro-light);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.split-stats span {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(247, 240, 230, 0.7);
}

/* ---------- Diferenciais ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pillar {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(92, 36, 38, 0.18);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--ouro-dark);
}

.pillar h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- Processo ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 0 0.5rem 0 0;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ouro-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.35rem;
  color: var(--creme);
  margin-bottom: 0.45rem;
}

.process-step p {
  margin: 0;
  color: rgba(247, 240, 230, 0.75);
  font-weight: 300;
  font-size: 0.98rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(92, 36, 38, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(92, 36, 38, 0.15);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--bordo-deep);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--ouro-dark);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 60ch;
}

/* ---------- CTA split final ---------- */
.cta-split {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.cta-split .section-head {
  margin-bottom: 0;
  align-self: center;
}

.cta-split .btn-group {
  margin-top: 1.5rem;
}

.cta-split .split-media {
  min-height: 360px;
}

@media (max-width: 980px) {
  .cta-split {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bordo-deep);
  color: rgba(247, 240, 230, 0.82);
}

.footer-cta {
  border-bottom: 1px solid rgba(201, 164, 92, 0.22);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 164, 92, 0.12), transparent 50%),
    var(--bordo);
}

.footer-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.footer-cta h2 {
  color: var(--creme);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  max-width: 16ch;
}

.footer-cta .lead {
  color: rgba(247, 240, 230, 0.78);
  max-width: 42ch;
  margin-bottom: 0;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.footer-main {
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
}

.brand-footer .brand-name,
.brand-footer .brand-sub {
  /* already set */
}

.footer-brand p {
  margin-top: 1.25rem;
  max-width: 34ch;
  font-weight: 300;
  font-size: 0.95rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.1rem;
}

.footer-col a {
  text-decoration: none;
  color: rgba(247, 240, 230, 0.78);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--ouro-light);
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(247, 240, 230, 0.55);
}

.footer-bottom p {
  margin: 0;
}

/* WhatsApp float — pílula */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.whatsapp-float-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
  display: grid;
  place-items: center;
}

.whatsapp-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  padding-right: 0.35rem;
}

.whatsapp-float-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.whatsapp-float-brand {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.45rem 0.95rem 0.45rem 0.45rem;
    gap: 0.55rem;
    min-height: 50px;
  }

  .whatsapp-float-icon {
    width: 38px;
    height: 38px;
  }

  .whatsapp-float-brand {
    font-size: 0.95rem;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-media::after {
    display: none;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-item {
    grid-template-columns: 3rem 1fr;
  }

  .practice-arrow {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.75rem;
    background: rgba(58, 21, 23, 0.98);
    border-bottom: 1px solid rgba(201, 164, 92, 0.25);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4rem;
  }

  .hero-ornament {
    display: none;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .split-stats {
    grid-template-columns: 1fr;
  }

  .brand-text {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.75rem, var(--container));
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
