/* ════════════════════════════════════════════════════════════
   ViagemConnect — Landing Page Design System
   ════════════════════════════════════════════════════════════ */

/* ───── Reset & Base ───── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --c-primary: #2563EB;
  --c-primary-d: #1E3A8A;
  --c-green: #22C55E;
  --c-green-d: #16A34A;
  --c-bg: #F8FAFC;
  --c-white: #FFFFFF;
  --c-text: #0F172A;
  --c-text-sec: #475569;
  --c-border: #E2E8F0;
  --c-bg-alt: #F1F5F9;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --lh: 1.4;

  /* Layout */
  --max-w: 1200px;
  --pad-x: 24px;
  --gap-s: 100px;
  --radius: 18px;
  --radius-btn: 14px;
  --radius-card: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, .07);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, .10);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: var(--lh);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ───── Container ───── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

.container--narrow {
  max-width: 780px;
}

/* ───── Badge / Chip ───── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(37, 99, 235, .08);
  color: var(--c-primary);
  margin-bottom: 16px;
}

.badge--green {
  background: rgba(34, 197, 94, .1);
  color: var(--c-green-d);
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
}

.btn--primary:hover {
  background: var(--c-green-d);
  border-color: var(--c-green-d);
  box-shadow: 0 4px 16px rgba(34, 197, 94, .3);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn--secondary:hover {
  background: rgba(37, 99, 235, .04);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .12);
  transform: translateY(-2px);
}

.btn--sm {
  height: 42px;
  padding: 0 22px;
  font-size: 14px;
}

.btn--lg {
  height: 56px;
  padding: 0 40px;
  font-size: 17px;
}

.btn svg {
  flex-shrink: 0;
}

/* ═══════════════════════════  NAVBAR  ═══════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary-d);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-sec);
  transition: color .2s;
}

.navbar__links a:not(.btn):hover {
  color: var(--c-primary);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.navbar__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════  HERO  ═══════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(170deg, #EEF4FF 0%, var(--c-bg) 60%, var(--c-white) 100%);
  overflow: hidden;
}

/* Decorative shapes */
.hero__shapes {
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, .18);
  top: -100px;
  right: -100px;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, .12);
  bottom: -60px;
  left: 10%;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, .08);
  top: 40%;
  left: -60px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero__text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-primary-d);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 19px;
  color: var(--c-text-sec);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.55;
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--c-text-sec);
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__illustration {
  position: relative;
}

.hero__svg {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .06));
}

/* ═══════════════════════════  SECTIONS  ═══════════════════════════ */
.section {
  padding: var(--gap-s) 0;
}

.section--gray {
  background: var(--c-bg-alt);
}

.section--cta {
  background: linear-gradient(170deg, #1E3A8A 0%, #2563EB 100%);
  color: #fff;
  text-align: center;
}

.section--cta h2 {
  color: #fff;
}

.section--cta p {
  color: rgba(255, 255, 255, .8);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--c-text-sec);
  font-size: 18px;
}

/* Transition text between sections */
.section__transition {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 12px;
  letter-spacing: .01em;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-primary-d);
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-text);
  margin-bottom: 8px;
}



.empathy-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.empathy-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.empathy-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.empathy-card__emoji {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}

.empathy-card p {
  font-size: 16px;
  color: var(--c-text-sec);
  line-height: 1.55;
}

.empathy-conclusion {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.empathy-conclusion p {
  font-size: 20px;
  color: var(--c-text-sec);
  margin-bottom: 12px;
  line-height: 1.5;
}

.empathy-conclusion p:first-child {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-primary-d);
}

.empathy-conclusion p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════  ICON GRID (Solução)  ═══════════════════════════ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.icon-grid__item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.icon-grid__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.icon-grid__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, .06);
  margin-bottom: 16px;
}

.icon-grid__item p {
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.55;
}

/* ═══════════════════════════  MODELS GRID  ═══════════════════════════ */
.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.model-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.model-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.model-card--accent {
  border-color: var(--c-primary);
  border-width: 2px;
}

.model-card__badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(37, 99, 235, .06);
  color: var(--c-primary);
  margin-bottom: 20px;
}

.model-card__icon {
  margin-bottom: 16px;
}

.model-card__desc {
  font-size: 16px;
  color: var(--c-text-sec);
  margin-bottom: 20px;
  line-height: 1.5;
}

.model-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.model-card__list li {
  font-size: 15px;
  color: var(--c-text-sec);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.model-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .2);
  border: 2px solid var(--c-green);
}

/* ═══════════════════════════  VÍNCULO GRID  ═══════════════════════════ */
.vinculo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.vinculo-text p {
  font-size: 18px;
  color: var(--c-text-sec);
  margin-bottom: 16px;
  line-height: 1.55;
}

.vinculo-text__note {
  font-size: 16px;
  font-style: italic;
  color: var(--c-text-sec);
  margin-bottom: 28px !important;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--c-text);
}

.vinculo-mockup {
  display: flex;
  justify-content: center;
}

.vinculo-mockup svg {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .08));
}

/* ═══════════════════════════  ROADMAP  ═══════════════════════════ */
.roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.roadmap__now,
.roadmap__future {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.roadmap__now h3 {
  color: var(--c-primary);
}

.roadmap__now p {
  font-size: 16px;
  color: var(--c-text-sec);
  margin-top: 8px;
}

.roadmap__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(37, 99, 235, .06);
  color: var(--c-primary);
  border: 1px solid rgba(37, 99, 235, .12);
}

/* ═══════════════════════════  TRUST GRID  ═══════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.trust-item {
  padding: 32px 28px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.trust-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.trust-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: rgba(37, 99, 235, .06);
}

.trust-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.5;
}

/* ═══════════════════════════  FOUNDER / SOCIAL PROOF  ═══════════════════════════ */
.founder-block {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.founder-avatar {
  flex-shrink: 0;
}

.founder-avatar__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .1);
}

.founder-avatar__circle svg {
  width: 80px;
  height: 80px;
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.founder-quote {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text-sec);
  border-left: 3px solid var(--c-primary);
  padding-left: 20px;
  margin-bottom: 20px;
  font-style: italic;
}

.founder-promise {
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.5;
}

/* ═══════════════════════════  CTA FINAL  ═══════════════════════════ */
.section--cta {
  padding: 90px 0;
}

.section--cta h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section--cta p {
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.section--cta .btn--primary {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #fff;
}

.section--cta .btn--primary:hover {
  background: var(--c-green-d);
  border-color: var(--c-green-d);
  box-shadow: 0 4px 20px rgba(34, 197, 94, .35);
}

.section--cta .btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.section--cta .btn--secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff;
}

.cta-note {
  font-size: 14px !important;
  color: rgba(255, 255, 255, .5) !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════════════  FOOTER  ═══════════════════════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--c-border);
  background: var(--c-white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-text-sec);
}

.footer__copy {
  font-size: 13px;
  color: var(--c-text-sec);
}

/* ═══════════════════════════  MODAL  ═══════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, .5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
  width: 100%;
  max-width: 480px;
  padding: 40px 36px;
  position: relative;
  animation: modalSlideIn .35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-sec);
  padding: 4px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.modal__close:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

.modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.modal__icon {
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
}

.modal__header h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--c-primary-d);
}

.modal__header p {
  font-size: 15px;
  color: var(--c-text-sec);
  line-height: 1.5;
}

/* Form */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}

.form-group input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.form-group input::placeholder {
  color: #94A3B8;
}

.form-group input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
  background: var(--c-white);
}

.form-group input.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.modal__submit {
  margin-top: 8px;
  width: 100%;
  position: relative;
}

.modal__submit.loading {
  pointer-events: none;
  opacity: .7;
}

.modal__submit.loading::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.modal__privacy {
  text-align: center;
  font-size: 12px;
  color: #94A3B8;
  margin-top: 4px;
}

/* Success state */
.modal__success-state {
  text-align: center;
  padding: 16px 0;
}

.modal__success-icon {
  margin-bottom: 20px;
  animation: successPop .5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal__success-state h3 {
  font-size: 22px;
  color: var(--c-green-d);
  margin-bottom: 12px;
}

.modal__success-state p {
  font-size: 16px;
  color: var(--c-text-sec);
  line-height: 1.55;
  margin-bottom: 28px;
}

.modal__success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════  ANIMATIONS  ═══════════════════════════ */
.animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════  RESPONSIVE  ═══════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__checks {
    align-items: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__svg {
    max-width: 380px;
  }

  .empathy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vinculo-grid {
    grid-template-columns: 1fr;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .founder-block {
    flex-direction: column;
    text-align: center;
  }

  .founder-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--c-primary);
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1,
  .hero__text h1 {
    font-size: 34px !important;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding: 64px 0;
  }

  /* Navbar mobile */
  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--c-white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--c-border);
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links .btn {
    width: 100%;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .empathy-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .models-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .vinculo-grid {
    gap: 40px;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .empathy-conclusion p:first-child {
    font-size: 20px;
  }

  .founder-text h2 {
    font-size: 26px;
  }

  .section--cta h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 16px;
  }

  h1,
  .hero__text h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 110px 0 48px;
  }
}