/* =========================================================
   Vision Viagens - Landing Page San Andres
   Variáveis principais para edição rápida de marca/layout.
   ========================================================= */
:root {
  --color-bg: #ffffff;
  --color-warm: #fbf6ed;
  --color-ink: #071b3b;
  --color-muted: #536070;
  --color-teal: #13b6c8;
  --color-teal-dark: #096e89;
  --color-coral: #ff5646;
  --color-coral-soft: #ff806f;
  --color-border: #d9dee7;
  --color-footer: #041f42;
  --color-footer-deep: #031833;
  --shadow-soft: 0 16px 38px rgba(7, 27, 59, 0.16);
  --shadow-card: 0 10px 26px rgba(7, 27, 59, 0.12);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 10px;
  --container: 1460px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(19, 182, 200, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 222, 231, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-toggle {
  position: relative;
  z-index: 120;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: #fff;
  color: var(--color-ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: -16px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 6px;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

body.nav-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.main-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(19, 182, 200, 0.08);
  color: var(--color-teal-dark);
}

.main-nav .nav-cta {
  justify-content: center;
  min-height: 56px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-soft));
  color: #fff;
}

.main-nav .nav-cta:hover {
  background: var(--color-coral);
  color: #fff;
}

/* Elementos compartilhados */
.section {
  padding: 72px 0;
}

.section-warm {
  background:
    radial-gradient(circle at 9% 20%, rgba(19, 182, 200, 0.08), transparent 22%),
    var(--color-warm);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.section-copy h2,
.conversion-content h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--color-teal);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker.coral {
  color: var(--color-coral);
}

.title-rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 22px 0 24px;
  background: var(--color-coral);
}

.title-rule.center {
  margin-right: auto;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  padding: 16px 24px;
  color: inherit;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.text-link svg {
  width: 22px;
  height: 22px;
}

.button path,
.text-link path,
.mini-icon path,
.faq-item path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-soft));
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 86, 70, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(255, 86, 70, 0.34);
}

.button-full {
  width: 100%;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/san-andres-sea.svg");
  background-position: 43% 48%;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.62) 40%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.2));
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: 720px;
  padding: 64px 0;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 5.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 680px;
  margin: 26px 0 0;
  color: #10233e;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
}

.hero-actions .button {
  min-height: 64px;
  padding-inline: 26px;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-bottom: 2px solid currentColor;
  color: var(--color-ink);
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease;
}

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

.form-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(7, 27, 59, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-form h2,
.conversion-form h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.16;
}

.form-card label {
  display: grid;
  gap: 8px;
}

.form-card label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-card input,
.form-card select {
  width: 100%;
  min-height: 58px;
  border: 1px solid #cfd5df;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  padding: 0 18px;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-card input::placeholder {
  color: #767d8b;
}

.form-card input:focus,
.form-card select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(19, 182, 200, 0.16);
  outline: none;
}

.privacy-note,
.form-message {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.form-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(19, 182, 200, 0.1);
  color: var(--color-teal-dark);
  font-weight: 800;
}

/* Trust strip */
.trust-strip {
  padding: 30px 0;
  background: linear-gradient(180deg, #fff, #fffaf2);
  border-bottom: 1px solid rgba(217, 222, 231, 0.75);
}

.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 10px;
}

.trust-grid article:not(:last-child) {
  border-bottom: 1px solid #d6cec0;
}

.line-icon,
.benefit-icon,
.support-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.line-icon {
  width: 70px;
  height: 70px;
  color: var(--color-teal-dark);
}

.line-icon svg,
.benefit-icon svg,
.support-icon svg {
  width: 100%;
  height: 100%;
}

.line-icon path,
.benefit-icon path,
.benefit-icon circle,
.support-icon path,
.support-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid strong {
  color: var(--color-ink);
  font-size: 1.06rem;
  line-height: 1.25;
}

/* Destino */
.destination {
  background: #fff;
}

.destination-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.section-copy p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.mosaic {
  display: grid;
  gap: 14px;
}

.mosaic img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.mosaic img:nth-child(2),
.mosaic img:nth-child(3) {
  min-height: 210px;
}

.mosaic-main {
  object-position: 45% 50%;
}

/* Benefícios */
.benefit-row {
  display: grid;
  gap: 30px;
}

.benefit-row article {
  text-align: center;
}

.benefit-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  color: var(--color-ink);
}

.benefit-row h3 {
  max-width: 190px;
  margin: 0 auto;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.08;
}

.benefit-row p {
  max-width: 220px;
  margin: 12px auto 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

/* Jornada */
.journey {
  background: #fff;
}

.journey-line {
  position: relative;
  display: grid;
  gap: 26px;
}

.journey-line::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 19px;
  width: 2px;
  border-left: 3px dotted var(--color-teal);
}

.journey-line article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 90px 1fr;
  gap: 14px;
  align-items: center;
}

.step-number {
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-weight: 900;
}

.journey-line img {
  width: 90px;
  height: 90px;
  border: 5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.journey-line h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.journey-line p {
  margin: 6px 0 0;
  color: var(--color-muted);
}

/* Conversão */
.conversion {
  padding-top: 26px;
}

.conversion-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 59, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.conversion-media {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  color: #fff;
  background-image: url("assets/san-andres-island-clean.svg");
  background-position: center;
  background-size: cover;
}

.conversion-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 31, 66, 0.98), rgba(4, 31, 66, 0.74) 52%, rgba(4, 31, 66, 0.18));
}

.conversion-content {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 34px;
}

.conversion-content h2 {
  color: #fff;
}

.conversion-content h2 span {
  display: block;
  color: var(--color-teal);
}

.conversion-content p {
  max-width: 520px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 1.1rem;
}

.conversion-content ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conversion-content li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.mini-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  color: #fff;
}

.mini-icon svg {
  width: 26px;
  height: 26px;
}

.conversion-content strong,
.conversion-content small {
  display: block;
}

.conversion-content strong {
  color: #fff;
  font-size: 1.02rem;
}

.conversion-content small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.conversion-form {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.conversion-form h2 {
  text-align: center;
}

/* Segurança */
.support {
  background: #fff;
  padding-top: 68px;
}

.support-grid {
  display: grid;
  gap: 16px;
}

.support-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.support-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(19, 182, 200, 0.12);
  color: var(--color-teal-dark);
}

.support-icon svg {
  width: 42px;
  height: 42px;
}

.support-grid h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.1;
}

.support-grid p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* Depoimentos */
.testimonials {
  padding: 34px 0 38px;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  gap: 18px;
}

.testimonial-grid article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.avatar {
  display: block;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-image: url("assets/san-andres-island-clean.svg");
  background-size: cover;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.8);
}

.avatar-one {
  background-position: 52% 42%;
}

.avatar-two {
  background-image: url("assets/san-andres-sea.svg");
  background-position: 42% 38%;
}

.avatar-three {
  background-position: 70% 44%;
}

.testimonial-grid p {
  margin: 0;
  color: #192942;
  font-size: 0.98rem;
  font-style: italic;
}

.testimonial-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--color-ink);
}

.testimonial-grid small {
  display: block;
  color: var(--color-muted);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfd3d8;
}

.dots span:first-child {
  background: var(--color-teal);
}

/* FAQ */
.faq {
  padding: 34px 0 54px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(7, 27, 59, 0.08);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  padding: 14px 18px;
  font-weight: 750;
  text-align: left;
}

.faq-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-ink);
  transition: transform 180ms ease;
}

.faq-item.is-open svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--color-muted);
  padding: 0 18px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 16px;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 54px 0 28px;
  background:
    radial-gradient(circle at 20% 5%, rgba(19, 182, 200, 0.18), transparent 25%),
    linear-gradient(135deg, var(--color-footer), var(--color-footer-deep));
  color: #fff;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 60px;
  opacity: 0.12;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 20px, rgba(255, 255, 255, 0.35) 21px 22px);
  transform: scaleX(1.2);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.footer-logo {
  display: inline-flex;
  padding: 0;
}

.footer-logo img {
  width: 260px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover {
  color: var(--color-teal);
}

.footer-social > div {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-weight: 900;
}

.copyright {
  position: relative;
  z-index: 1;
  margin: 36px 0 0;
  text-align: center;
  font-size: 0.94rem;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 54px, var(--container));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .trust-grid,
  .support-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic {
    grid-template-columns: 1.6fr 1fr;
  }

  .mosaic-main {
    grid-row: span 2;
  }

  .mosaic-main,
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3) {
    min-height: 260px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  :root {
    --header-height: 116px;
  }

  .nav-toggle {
    display: none;
  }

  .brand img {
    width: 280px;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }

  .main-nav a {
    padding: 8px 0;
    min-height: auto;
    background: transparent;
    font-size: 1.04rem;
  }

  .main-nav .nav-cta {
    min-height: 62px;
    margin: 0;
    padding: 0 34px;
    border-radius: 5px;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    min-height: 675px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.64fr);
    min-height: 675px;
    padding: 80px 0;
  }

  .hero-form {
    padding: 40px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid article {
    min-height: 124px;
    padding: 18px 32px;
  }

  .trust-grid article:not(:last-child) {
    border-right: 2px solid #d6cec0;
    border-bottom: 0;
  }

  .destination-grid {
    grid-template-columns: minmax(360px, 0.6fr) minmax(0, 1.1fr);
    gap: 60px;
  }

  .mosaic-main {
    min-height: 510px;
  }

  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3) {
    min-height: 248px;
  }

  .benefit-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .journey-line {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .journey-line::before {
    top: 25px;
    right: 13%;
    bottom: auto;
    left: 13%;
    width: auto;
    height: 2px;
    border-left: 0;
    border-top: 3px dotted var(--color-teal);
  }

  .journey-line article {
    display: grid;
    grid-template-columns: 128px 1fr;
    grid-template-rows: 54px auto;
    gap: 10px 18px;
  }

  .journey-line article:nth-child(odd) {
    grid-template-columns: 128px 1fr;
  }

  .step-number {
    grid-column: 1 / -1;
    margin: 0 auto 4px;
  }

  .journey-line img {
    width: 128px;
    height: 128px;
  }

  .conversion-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.9fr);
  }

  .conversion-form {
    padding: 44px;
  }

  .support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.75fr 0.95fr 1.1fr 0.8fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 76px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 40px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .hero-form {
    margin-top: 6px;
  }

  .form-card {
    padding: 22px;
  }

  .trust-grid article {
    padding-left: 0;
    padding-right: 0;
  }

  .line-icon {
    width: 58px;
    height: 58px;
  }

  .journey-line article {
    grid-template-columns: 42px 76px 1fr;
  }

  .journey-line img {
    width: 76px;
    height: 76px;
  }

  .support-grid article,
  .testimonial-grid article {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
