:root {
  color-scheme: dark;
  --color-bg: #0f172a;
  --color-surface: rgba(31, 41, 55, 0.6);
  --color-border: rgba(55, 65, 81, 0.7);
  --color-heading: #ffffff;
  --color-text: #d1d5db;
  --color-muted: #9ca3af;
  --color-accent-start: #22d3ee;
  --color-accent-end: #a855f7;
  --color-shadow: rgba(15, 118, 110, 0.25);
  --transition-speed: 200ms;
  --container-padding: 1.5rem;
  --font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  color: #bae6fd;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-heading);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(94, 234, 212, 0.7);
  box-shadow: 0 8px 20px rgba(14, 116, 144, 0.45);
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.45), rgba(15, 23, 42, 0.9));
  flex-shrink: 0;
}

.brand__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-accent {
  color: #22d3ee;
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(14, 116, 144, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.85);
}

.brand__logo-stack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: 0 24px 55px rgba(8, 47, 73, 0.45);
  margin-bottom: 0.75rem;
}

.brand__logo-img {
  width: 220px;
  height: auto;
  display: block;
}

.brand__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
}

.brand--footer {
  flex-direction: column;
  align-items: flex-start;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition-speed) ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-heading);
}

.nav-link--partner {
  color: #f0abfc;
  font-weight: 600;
}

.nav-link--partner:hover,
.nav-link--partner:focus {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  position: relative;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 41, 55, 0.7);
  color: var(--color-heading);
  border: 1px solid rgba(55, 65, 81, 0.7);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.language-button:hover,
.language-button:focus {
  background: rgba(55, 65, 81, 0.85);
  outline: none;
}

.language-button__icon svg,
.language-button__chevron {
  width: 1rem;
  height: 1rem;
  color: var(--color-muted);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.7);
  border-radius: 0.75rem;
  padding: 0.35rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: none;
  min-width: 11rem;
}

.language-switcher[data-open="true"] .language-menu {
  display: block;
}

.language-option {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
}

.language-option:hover,
.language-option:focus {
  background: rgba(55, 65, 81, 0.7);
  color: var(--color-heading);
  outline: none;
}

.language-option[aria-pressed="true"] {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #0f172a;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  color: #0b101f;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 45px rgba(14, 165, 233, 0.35);
  outline: none;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #67e8f9;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: var(--color-heading);
  margin: 0.25rem 0;
  transition: transform var(--transition-speed) ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem var(--container-padding) 1.75rem;
  background: rgba(17, 24, 39, 0.92);
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.site-header[data-menu-open="true"] .mobile-nav {
  display: flex;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav__cta {
  align-self: flex-start;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  text-align: center;
  background-image: url("https://picsum.photos/seed/hero-bg/1920/1080");
  background-size: cover;
  background-position: center;
  padding: 6rem 0 5rem;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(120%) contrast(1.05);
  opacity: 0.82;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-heading);
  text-transform: capitalize;
  animation: fade-in-down 0.8s ease both;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 45rem;
  margin: 0 auto 2rem;
  color: var(--color-muted);
  font-size: 1.1rem;
  animation: fade-in-up 0.9s ease 0.2s both;
}


.hero__cta {
  animation: fade-in-up 0.9s ease 0.4s both;
}

.services {
  padding: 5rem 0 6rem;
}

.highlights {
  padding: 5rem 0 3rem;
  background: rgba(15, 23, 42, 0.4);
}

.contact {
  padding: 5rem 0 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-sidebar {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(55, 65, 81, 0.7);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
}

.contact-copy__text {
  color: var(--color-muted);
  margin: 1rem 0 1.5rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: #67e8f9;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-point {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.4);
}

.contact-point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-point__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--color-heading);
}

.contact-point__description {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-method {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(55, 65, 81, 0.6);
  background: rgba(8, 11, 24, 0.65);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.contact-method__label {
  margin: 0;
  font-weight: 600;
  color: var(--color-heading);
}

.contact-method__hint {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-method__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.15);
  color: #67e8f9;
  font-weight: 600;
}

.contact-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
  background: rgba(15, 23, 42, 0.7);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-highlight__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  color: inherit;
}

.contact-highlight__media {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: auto;
  height: auto;
}

.contact-highlight__media img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 8px 18px rgba(8, 47, 73, 0.35);
}

.contact-highlight__media span {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-highlight__content {
  flex: 1;
}

.contact-highlight__title {
  margin: 0 0 0.35rem;
  color: var(--color-heading);
  font-weight: 600;
  font-size: 1rem;
}

.contact-highlight__description {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(8, 47, 73, 0.35);
}

.contact-form {
  background: rgba(17, 24, 39, 0.8);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.7);
  box-shadow: 0 25px 50px -12px rgba(8, 47, 73, 0.45);
  display: grid;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

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

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

.form-section {
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin: 0;
}

.form-section legend {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.75);
  padding: 0 0.25rem;
}

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

.form-section {
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: 1.25rem;
  padding: 1.25rem;
  margin: 0;
}

.form-section legend {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.75);
  padding: 0 0.25rem;
}

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

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

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-heading);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.8);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: var(--color-heading);
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-muted) 50%),
    linear-gradient(135deg, var(--color-muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(1.1rem), calc(100% - 16px) calc(1.1rem);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-field--checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-form__submit {
  justify-self: center;
  min-width: 220px;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.form-status[data-status="success"] {
  color: #4ade80;
}

.form-status[data-status="error"] {
  color: #f87171;
}

.form-hint {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-heading);
  margin: 0 0 1rem;
  background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
  -webkit-background-clip: text;
  color: transparent;
}

.section-heading__subtitle {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--color-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.6);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.45);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 234, 212, 0.6);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.35);
}

.service-card__image {
  height: 12rem;
  object-fit: cover;
  filter: saturate(1.15);
}

.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.service-card__title {
  margin: 0;
  color: var(--color-heading);
  font-size: 1.3rem;
}

.service-card__description {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  flex: 1;
}

.service-card__link {
  font-weight: 600;
  color: #67e8f9;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.service-card__link:hover {
  color: #bae6fd;
  transform: translateX(4px);
}

.partner-invite {
  padding: 4rem 0;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 55%);
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.partner-invite__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.partner-invite__text {
  max-width: 640px;
}

.partner-invite__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.partner-invite__link {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.partner-invite__hint {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-link--partner {
  font-weight: 600;
}

.partner-page main {
  padding-top: 2rem;
}

.partner-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(14, 165, 233, 0.05));
}

.partner-hero__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.partner-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.partner-hero__content p {
  margin-top: 0;
  color: var(--color-text);
}

.partner-hero__highlights {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.partner-hero__highlights li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.5);
}

.partner-hero__card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.55);
}

.partner-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #f472b6;
  margin: 0 0 0.5rem;
}

.partner-hero__card h2 {
  margin-top: 0;
  color: var(--color-heading);
}

.partner-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.partner-hero__stats span {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #67e8f9;
}

.partner-hero__stats p {
  margin: 0;
  color: var(--color-muted);
}

.partner-benefits {
  padding: 4rem 0 2rem;
}

.partner-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.partner-benefit-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.45);
}

.partner-benefit-card h3 {
  margin-top: 0;
  color: var(--color-heading);
}

.partner-form {
  padding: 4rem 0 5rem;
}

.partner-form__note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.partner-contact-form {
  margin: 0 auto;
  max-width: 860px;
}

.site-footer {
  background: rgba(12, 18, 34, 0.95);
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-heading {
  color: var(--color-heading);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.footer-text {
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a,
.footer-link {
  color: var(--color-muted);
  transition: color var(--transition-speed) ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: #67e8f9;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.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;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  #header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .partner-invite__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .partner-invite__actions {
    align-items: flex-start;
  }

  .partner-hero__grid {
    grid-template-columns: 1fr;
  }

  .partner-hero__card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .language-button {
    padding: 0.35rem 0.75rem;
  }

  .brand__icon {
    width: 36px;
    height: 36px;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem;
  }

  .services {
    padding: 4rem 0 5rem;
  }

  .contact {
    padding: 4rem 0 5rem;
  }

  .cta-button {
    width: 100%;
    max-width: 16rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .contact-method {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-hero__highlights {
    grid-template-columns: 1fr;
  }

  .partner-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field--checkbox {
    align-items: center;
  }

  .contact-form__submit {
    justify-self: center;
  }
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field--checkbox {
    align-items: center;
  }

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

  .form-field--checkbox label {
    margin: 0;
  }
}
