:root {
  --bg: #faf8f5;
  --bg-alt: #f3efe8;
  --bg-warm: #ebe6de;
  --surface: #ffffff;
  --surface-hover: #fdfcfa;
  --border: #e5dfd6;
  --border-light: #d9d2c8;
  --text: #1a1814;
  --text-muted: #6f6860;
  --primary: #1e3a5f;
  --primary-light: #2d5280;
  --primary-soft: rgba(30, 58, 95, 0.07);
  --accent: #a67c52;
  --accent-light: #c49a6c;
  --accent-soft: rgba(166, 124, 82, 0.1);
  --gold-line: linear-gradient(90deg, #a67c52, #d4b896);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --container: 1120px;
  --header-h: 80px;
  --shadow-sm: 0 2px 12px rgba(26, 24, 20, 0.04);
  --shadow-md: 0 8px 32px rgba(26, 24, 20, 0.07);
  --shadow-lg: 0 24px 64px rgba(26, 24, 20, 0.1);
  --shadow-gold: 0 12px 40px rgba(166, 124, 82, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(166, 124, 82, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 5%, rgba(30, 58, 95, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

address {
  font-style: normal;
  color: var(--text-muted);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo__mark {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
}

.logo span {
  font-style: italic;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 2.25rem;
}

.nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.header__actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: var(--surface);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-light);
}

.btn--lg {
  padding: 0.9rem 1.85rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 5rem) 0 6rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-line);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  font-weight: 400;
}

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

.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Inbox mock */
.inbox-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
}

.inbox-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(166, 124, 82, 0.25), transparent 40%, rgba(30, 58, 95, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.inbox-mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.inbox-mock__dots {
  display: flex;
  gap: 6px;
}

.inbox-mock__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-light);
}

.inbox-mock__dots i:first-child {
  background: #d4a574;
}

.inbox-mock__dots i:nth-child(2) {
  background: #c9b99a;
}

.inbox-mock__dots i:nth-child(3) {
  background: #8fa89a;
}

.inbox-mock__title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.inbox-mock__body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 360px;
}

.inbox-mock__sidebar {
  border-right: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--bg);
}

.inbox-mock__channel {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  transition: background 0.2s;
}

.inbox-mock__channel.active {
  background: var(--primary-soft);
  color: var(--primary);
  border-right: 2px solid var(--accent);
}

.inbox-mock__channel .icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.icon--mail {
  background: #fff;
  color: #c44;
  border: 1px solid var(--border);
}

.icon--wa {
  background: #25d366;
  color: #fff;
}

.icon--tg {
  background: #0088cc;
  color: #fff;
}

.icon--ig {
  background: linear-gradient(45deg, #f09433, #dc2743);
  color: #fff;
}

.inbox-mock__main {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--surface);
}

.msg {
  max-width: 88%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  line-height: 1.55;
}

.msg--in {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  align-self: flex-start;
}

.msg--out {
  background: var(--primary-soft);
  border: 1px solid rgba(30, 58, 95, 0.1);
  align-self: flex-end;
}

.msg--ai {
  background: linear-gradient(135deg, rgba(166, 124, 82, 0.08), rgba(166, 124, 82, 0.04));
  border: 1px solid rgba(166, 124, 82, 0.2);
  align-self: flex-end;
}

.msg--ai::before {
  content: "Suggerimento IA";
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.msg__meta {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.inbox-mock__ai-bar {
  margin-top: auto;
  padding: 0.85rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inbox-mock__ai-bar span {
  flex: 1;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.inbox-mock__ai-bar .btn {
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
}

/* Logos */
.logos {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logos__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}

.logos__inner span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.65;
}

/* Section */
.section {
  padding: 6rem 0;
}

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 540px;
  margin-bottom: 3.5rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-head p,
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(166, 124, 82, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bg-warm);
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  line-height: 1;
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-line);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  position: relative;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
}

/* Link cards */
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.link-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.link-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.link-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.link-card span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split h2 {
  font-family: var(--font-display);
}

.split p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bullet-list {
  list-style: none;
  margin: 1.25rem 0;
}

.bullet-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

.contact-info__item {
  margin-bottom: 2rem;
}

.contact-info__item h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.contact-info__item a,
.contact-info__item p,
.contact-info__item address {
  font-size: 0.95rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* CTA */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 3.5rem;
  background: var(--primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(166, 124, 82, 0.15));
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  max-width: 440px;
  color: #fff;
  position: relative;
}

.cta-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  position: relative;
}

.cta-box .btn--primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  position: relative;
}

.cta-box .btn--primary:hover {
  background: var(--bg);
  color: var(--primary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
  background: var(--surface);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
  margin-top: 0.85rem;
  line-height: 1.65;
}

.footer__col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.footer__col a,
.footer__col address {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__legal a:hover {
  color: var(--text);
}

/* Legal */
.legal {
  padding: calc(var(--header-h) + 2rem) 0 4rem;
}

.legal__content {
  max-width: 700px;
  margin-inline: auto;
}

.legal__content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.legal__updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.75rem 0 0.6rem;
}

.legal__content p,
.legal__content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.legal__content ul {
  padding-left: 1.2rem;
}

.legal__content a {
  color: var(--primary);
}

/* Cookie */
.cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  width: min(100% - 2rem, 580px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.75rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: 0.4s ease;
}

.cookie-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-bar p {
  flex: 1;
  font-size: 0.84rem;
  color: var(--text-muted);
  min-width: 200px;
  line-height: 1.55;
}

.cookie-bar a {
  color: var(--primary);
  font-weight: 500;
}

.cookie-bar__btns {
  display: flex;
  gap: 0.5rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
.nav--mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav--mobile.open {
  display: flex;
}

@media (max-width: 900px) {
  .hero__grid,
  .split,
  .contact-grid,
  .footer__grid,
  .cta-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    align-items: center;
    padding: 2.5rem 2rem;
  }

  .feature-grid,
  .steps,
  .link-cards {
    grid-template-columns: 1fr;
  }

  .inbox-mock__body {
    grid-template-columns: 1fr;
  }

  .inbox-mock__sidebar {
    display: none;
  }

  .nav {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__cta,
  .hero__stats {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .eyebrow {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .cookie-bar__row {
    flex-direction: column;
    text-align: center;
  }
}
