/* DEBUG CSS REFRESH 2026-04-10 17:10 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --color-primary: #0f172a;
  --color-accent: #2563eb;
  --color-accent-dark: #1d4ed8;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-border: #e2e8f0;
  --color-border-soft: #f1f5f9;
  --color-text: #475569;
  --color-text-dark: #0f172a;
  --color-text-muted: #94a3b8;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 54px rgba(37, 99, 235, 0.16);
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --container: 80rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.privacy-policy-page,
.privacy-policy-page * {
  font-family: inherit;
}

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

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

button,
input,
textarea {
  font: inherit;
}

[v-cloak] {
  display: none;
}

.hidden {
  display: none !important;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 5rem;
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link,
.nav-dropdown__toggle,
.mobile-menu__link,
.contact-link {
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-dropdown__toggle:hover,
.mobile-menu__link:hover,
.contact-link:hover {
  color: var(--color-accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.nav-dropdown__icon,
.mobile-toggle__icon {
  width: 1rem;
  height: 1rem;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 0;
  display: block;
  min-width: 12rem;
  padding: 0.5rem 0;
  border: 1px solid var(--color-border-soft);
  border-radius: 1rem;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  transform: translateY(0.35rem);
}

.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 0.7rem 1rem;
  color: #334155;
}

.nav-dropdown__link:hover {
  background: var(--color-surface-soft);
}

.header__cta {
  display: none;
  margin-left: auto;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: max-content;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.9rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
  transition: background-color 180ms ease, transform 180ms ease;
}

.phone-pill__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.phone-pill:hover,
.button--primary:hover,
.form-submit:hover {
  background: var(--color-accent-dark);
}

.nav-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--color-text-dark);
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-toggle__icon {
  width: 2rem;
  height: 2rem;
}

.mobile-menu {
  position: absolute;
  inset: 100% 0 auto 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.mobile-menu__link {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-text-dark);
}

.mobile-menu__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-soft);
}

.mobile-menu__label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.mobile-menu__cta {
  border: 0;
  border-radius: 1.5rem;
  padding: 1rem;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.16);
}

.mobile-menu-enter-active,
.mobile-menu-leave-active {
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu-enter-from,
.mobile-menu-leave-to {
  opacity: 0;
  transform: translateY(-1rem);
}

.hero {
  position: relative;
  display: flex;
  min-height: 44dvh;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(0.3);
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem 0;
  display: flex;
  justify-content: center;
}

.hero__copy {
  width: min(100%, 42rem);
  margin-right: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  animation: heroPulse 1.8s infinite;
}

.hero__title {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero__text {
  max-width: 36rem;
  margin: 0;
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero__text-emphasis {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.01em;
  color: #eff6ff;
  font-weight: 800;
}

.hero__text-letter {
  display: inline-block;
  transform-origin: center 72%;
  animation: heroLetterCascade 7s ease-in-out infinite;
  animation-delay: 2s;
}

.hero__text-letter:nth-child(1) { animation-delay: 2s; }
.hero__text-letter:nth-child(2) { animation-delay: 2.08s; }
.hero__text-letter:nth-child(3) { animation-delay: 2.16s; }
.hero__text-letter:nth-child(4) { animation-delay: 2.24s; }
.hero__text-letter:nth-child(5) { animation-delay: 2.32s; }
.hero__text-letter:nth-child(7) { animation-delay: 2.4s; }
.hero__text-letter:nth-child(8) { animation-delay: 2.48s; }
.hero__text-letter:nth-child(10) { animation-delay: 2.56s; }
.hero__text-letter:nth-child(11) { animation-delay: 2.64s; }
.hero__text-letter:nth-child(12) { animation-delay: 2.72s; }
.hero__text-letter:nth-child(13) { animation-delay: 2.8s; }
.hero__text-letter:nth-child(14) { animation-delay: 2.88s; }

.hero__text-space {
  display: inline-block;
  width: 0.34em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.25rem;
}

@keyframes heroPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }
  70% {
    box-shadow: 0 0 0 0.45rem rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes heroLetterCascade {
  0%,
  7%,
  100% {
    transform: translateY(0) scale(1);
    color: #eff6ff;
    text-shadow: none;
  }
  2.8% {
    transform: translateY(-0.08em) scale(1.26);
    color: #ffffff;
    text-shadow: 0 0.2rem 0.8rem rgba(147, 197, 253, 0.45);
  }
  4.6% {
    transform: translateY(0) scale(1);
    color: #dbeafe;
    text-shadow: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75rem;
  padding: 1rem 2rem;
  border-radius: 1.25rem;
  font-size: 1.125rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:active,
.offer-card:active,
.form-submit:active {
  transform: scale(0.98);
}

.button--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 24px 40px rgba(37, 99, 235, 0.2);
}

.button--secondary {
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.partners {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border-soft);
  background: var(--color-surface);
}

.partners__eyebrow,
.section__eyebrow {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.partners__rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.partners__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners__row--last {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border: 1px solid #dbeafe;
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #93c5fd;
  background: #f8fbff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16);
}

.partner-logo__image {
  width: auto;
  max-width: 100%;
  height: 4rem;
  object-fit: contain;
  filter: grayscale(0.75);
  opacity: 0.8;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.partners__row--last .partner-logo__image {
  width: 100%;
  max-width: 9rem;
  margin: 0 auto;
}

.partner-logo:hover .partner-logo__image {
  transform: scale(1.08);
  filter: grayscale(0);
  opacity: 1;
}

.section {
  padding: 8rem 0;
}

.section--muted {
  background: var(--color-bg);
}

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

.about__layout {
  display: grid;
  gap: 4rem;
}

.section-title {
  margin: 0 0 2.5rem;
  color: var(--color-text-dark);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-title__accent {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: #e2e8f0;
  text-underline-offset: 0.5rem;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.about__text p {
  margin: 0;
}

.about__card {
  padding: 3rem;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-3xl);
  background: var(--color-surface);
  box-shadow: 0 24px 50px rgba(148, 163, 184, 0.22);
}

.about__card-title {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 1.875rem;
  font-weight: 900;
}

.contact-panel {
  padding: 2rem 2.125rem;
  border: 1px solid #93c5fd;
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  box-shadow:
    0 0 0 8px rgba(219, 234, 254, 0.9),
    0 22px 40px rgba(37, 99, 235, 0.14);
}

.contact-panel .about__card-title {
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #334155;
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-list__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.offer__header,
.contact__header,
.footer {
  text-align: center;
}

.offer__header {
  margin-bottom: 5rem;
}

.section-subtitle {
  margin: 1rem 0 0;
  color: #64748b;
  font-size: 1.25rem;
  font-weight: 500;
}

.section-divider {
  width: 4rem;
  height: 0.5rem;
  margin: 1.5rem auto 0;
  border-radius: 999px;
  background: var(--color-accent);
}

.offer-grid {
  display: grid;
  gap: 2.5rem;
}

.offer-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: 2.5rem;
  background: var(--color-surface-soft);
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.offer-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 24px 44px rgba(37, 99, 235, 0.14);
}

.offer-card__media {
  height: 18rem;
  overflow: hidden;
}

.offer-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.offer-card:hover .offer-card__image {
  transform: scale(1.08);
}

.offer-card__body {
  padding: 2.5rem;
}

.offer-card__title {
  display: flex;
  min-height: 4rem;
  align-items: flex-start;
  margin: 0 0 1rem;
  color: var(--color-text-dark);
  font-size: 1.5rem;
  font-weight: 900;
  transition: transform 220ms ease, filter 220ms ease;
}

.offer-card__text {
  margin: 0;
  color: #64748b;
  text-align: left;
  font-weight: 500;
  line-height: 1.75;
}

.offer-card:hover .offer-card__title,
.offer-card:hover .offer-card__text {
  transform: scale(1.02);
}

.contact {
  position: relative;
  overflow: hidden;
  background: #020617;
}

.contact__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  filter: blur(120px);
}

.contact__container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 64rem);
  margin: 0 auto;
}

.contact__header {
  margin-bottom: 4rem;
}

.contact__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 900;
}

.contact__text {
  margin: 0;
  color: #94a3b8;
  font-size: 1.25rem;
  line-height: 1.7;
}

.contact-card {
  perspective: 1600px;
  overflow-anchor: none;
}

.contact-card__inner {
  position: relative;
  min-height: 47rem;
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-card--success .contact-card__inner {
  transform: rotateX(180deg);
}

.contact-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.contact-card__face--back {
  transform: rotateX(180deg);
}

.contact-form,
.contact-success {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  background: #0f172a;
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.35);
}

.contact-form {
  padding: 2rem;
  overflow-anchor: none;
  justify-content: flex-start;
}

.contact-success {
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-success__title,
.contact-success__text {
  color: #fff;
}

.contact-success__content {
  width: min(100%, 32rem);
  margin: auto;
}

.contact-success__title {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}

.contact-success__text {
  margin: 0;
  font-size: 1.25rem;
}

.form-grid {
  display: grid;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  margin-left: 0.5rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-error {
  margin: 0;
  color: #f87171;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-error--consent {
  margin-top: 0.875rem;
}

.form-error--submit {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 1rem;
  background: rgba(127, 29, 29, 0.18);
}

.form-input,
.form-textarea {
  box-sizing: border-box;
  width: 100%;
  border: 2px solid #1e293b;
  border-radius: 1.5rem;
  background: rgba(2, 6, 23, 0.45);
  color: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-input {
  padding: 1rem 1.5rem;
}

.form-textarea {
  min-height: 10rem;
  padding: 1rem 1.5rem;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.form-input--invalid {
  border-color: rgba(248, 113, 113, 0.8);
  background: rgba(127, 29, 29, 0.14);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-consent__copy {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.75;
}

.form-checkbox {
  flex: 0 0 auto;
  box-sizing: border-box;
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  min-width: 1.35rem;
  min-height: 1.35rem;
  margin: 0.15rem 0 0;
  border: 2px solid rgba(148, 163, 184, 0.7);
  border-radius: 0.4rem;
  background: rgba(2, 6, 23, 0.55);
  vertical-align: top;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-checkbox:hover {
  transform: scale(1.06);
}

.form-checkbox:checked {
  border-color: #60a5fa;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 1) 0%, rgba(29, 78, 216, 1) 100%);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

.form-checkbox:checked::after {
  content: "";
  display: block;
  width: 0.32rem;
  height: 0.62rem;
  margin: 0.09rem auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-consent__text {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

.form-consent__link {
  color: #cbd5e1;
  font-size: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(147, 197, 253, 0.75);
  text-underline-offset: 0.22rem;
}

.form-consent__link:hover {
  color: #dbeafe;
}

.form-submit {
  width: 100%;
  margin-top: 3rem;
  border: 0;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 24px 44px rgba(37, 99, 235, 0.2);
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer {
  padding: 4rem 0;
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-surface);
}

.footer__brand {
  margin: 0 0 1.5rem;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__strong {
  margin: 0;
  color: var(--color-text-dark);
  font-weight: 700;
}

.footer__muted {
  margin: 0;
  color: #64748b;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .button {
    min-width: 15rem;
  }

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

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero__content {
    justify-content: flex-start;
  }

  .hero__copy {
    margin-left: 4rem;
    margin-right: 0;
  }

  .nav-desktop,
  .header__cta {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none;
  }

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

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

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

  .contact-form {
    padding: 4rem;
  }

  .contact-success {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero__copy {
    margin-left: 6rem;
  }

  .about__layout {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
    align-items: center;
    gap: 6rem;
  }

  .about__card-wrap {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 6rem 0;
  }

  .contact-card__inner {
    min-height: 47rem;
  }

  .about__card {
    padding: 2rem;
  }

  .offer-card__body {
    padding: 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
