:root {
  --brand-green: #4fbc20;
  --brand-green-strong: #149602;
  --brand-blue: #0173b2;
  --brand-blue-dark: #0b4163;
  --ink-900: #13212b;
  --ink-700: #4a5d6b;
  --ink-500: #738491;
  --surface: #ffffff;
  --surface-muted: #f4f9fc;
  --line: rgba(1, 115, 178, 0.12);
  --shadow-lg: 0 22px 48px rgba(8, 53, 80, 0.12);
  --shadow-md: 0 18px 36px rgba(9, 43, 63, 0.08);
  --shadow-sm: 0 8px 20px rgba(10, 43, 63, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --font-body: "LT Superior", "Manrope", "Segoe UI", sans-serif;
  --font-display: "LT Superior", "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(79, 188, 32, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(1, 115, 178, 0.12), transparent 34%),
    linear-gradient(180deg, #f9fcfd 0%, #ffffff 26%, #f8fbfd 100%);
  line-height: 1.65;
}

.contact-page main {
  position: relative;
}

.contact-page main > * {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(1, 115, 178, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: clamp(220px, 24vw, 340px);
}

.brand-mark {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--ink-700);
  font-weight: 600;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--brand-blue-dark);
  background: rgba(1, 115, 178, 0.08);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(1, 115, 178, 0.08);
  border: 1px solid rgba(1, 115, 178, 0.1);
  transition: transform 160ms ease, background-color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(79, 188, 32, 0.14);
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(1, 115, 178, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-blue-dark);
}

.hero-section,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero-section {
  padding: 2.6rem 0 0.45rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-panel h2,
.about-copy h2,
.service-card h2,
.contact-card h2,
.form-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  max-width: 10ch;
}

.hero-brand-image {
  width: min(100%, 520px);
  margin-left: -0.85rem;
}

.hero-copy-brand {
  align-self: start;
  padding-top: 1.2rem;
}

.home-hero-copy {
  display: grid;
  gap: 2rem;
  align-self: start;
  padding-top: 1.2rem;
}

.home-hero-section .hero-grid {
  align-items: start;
}

.home-hero-section {
  overflow: visible;
  z-index: 2;
}

.home-about-block .section-heading {
  margin-bottom: 1.25rem;
}

.home-about-panel {
  display: block;
}

.home-about-panel p {
  margin: 0;
  color: var(--ink-700);
  text-align: left;
}

.home-hero-media {
  min-height: 400px;
  margin-top: 0.25rem;
}

.hero-tagline {
  margin: 1rem 0 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.hero-text,
.page-hero p {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: var(--ink-700);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-green), rgba(79, 188, 32, 0));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue), #0f8ccc);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(1, 115, 178, 0.12);
}

.button-green {
  color: #ffffff;
  background: var(--brand-green-strong);
  box-shadow: 0 14px 30px rgba(20, 150, 2, 0.2);
}

.button-green:hover,
.button-green:focus-visible {
  background: #107a02;
}

.hero-media,
.about-media,
.service-media,
.partner-logo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(1, 115, 178, 0.18), rgba(79, 188, 32, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 248, 251, 0.95));
  border: 1px solid rgba(1, 115, 178, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-media {
  min-height: 560px;
  border-radius: var(--radius-xl);
  isolation: isolate;
}

.hero-media img,
.about-media img,
.service-media img,
.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 2rem 0 5rem;
}

.section-soft {
  position: relative;
  isolation: isolate;
  padding-top: 4.4rem;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 18%, rgba(247, 252, 247, 0.95) 52%, rgba(79, 188, 32, 0.08) 100%);
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-panel,
.content-card,
.reason-card,
.service-card,
.cta-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(1, 115, 178, 0.08);
  box-shadow: var(--shadow-md);
}

.content-panel,
.content-card,
.reason-card {
  border-radius: var(--radius-lg);
}

.content-panel {
  padding: 2rem;
}

.split-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.split-panel p {
  max-width: 58ch;
  margin: 0;
  color: var(--ink-700);
}

.text-link {
  color: var(--brand-blue);
  font-weight: 700;
}

.grid-two,
.grid-three,
.why-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.content-card {
  padding: 2rem;
}

.statement-card h3,
.reason-card h3,
.content-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.statement-card p,
.content-card p,
.reason-card p,
.service-body p,
.contact-note {
  margin: 0;
  color: var(--ink-700);
}

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

.reason-card {
  padding: 1.6rem;
}

.cta-section {
  padding-top: 0;
}

.legal-strip-section {
  padding: 0 0 3rem;
}

.legal-strip {
  padding-top: 0.9rem;
}

.legal-strip-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 115, 178, 0), rgba(1, 115, 178, 0.22), rgba(1, 115, 178, 0));
}

.legal-strip-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-strip-links a {
  transition: color 160ms ease;
}

.legal-strip-links a:hover,
.legal-strip-links a:focus-visible {
  color: var(--brand-blue-dark);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(79, 188, 32, 0.18), rgba(79, 188, 32, 0)),
    linear-gradient(120deg, rgba(1, 115, 178, 0.08), rgba(255, 255, 255, 0.95));
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero-compact {
  padding-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  max-width: 14ch;
}

.page-hero-match-home h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.about-media {
  min-height: 520px;
  border-radius: var(--radius-xl);
  position: sticky;
  top: 118px;
  isolation: isolate;
}

.hero-media > img,
.about-media > img {
  position: absolute;
  inset: 0;
}

.about-portrait {
  object-position: center 10%;
}

.about-copy p + p {
  margin-top: 1.2rem;
}

.about-copy p {
  text-align: left;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  margin-bottom: 1.35rem;
}

.about-intro-section {
  padding-bottom: 2rem;
}

.about-work-style-section {
  padding-top: 0;
}

.services-grid {
  display: grid;
  gap: 1.75rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.service-media {
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.service-body {
  padding: 2rem;
}

.service-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.feature-list,
.footer-links {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.footer-links li {
  position: relative;
  padding-left: 1.15rem;
}

.feature-list li + li,
.footer-links li + li {
  margin-top: 0.7rem;
}

.feature-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  transform: translateY(-50%);
}

.training-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.partner-logo {
  width: min(100%, 260px);
  flex: 0 0 auto;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.partner-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-card,
.form-card {
  padding: 2rem;
}

.contact-detail + .contact-detail {
  margin-top: 1.3rem;
}

.detail-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-500);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-detail a {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.contact-detail > span:not(.detail-label) {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-900);
}

.contact-location {
  color: var(--brand-blue-dark) !important;
}

.contact-social {
  display: grid;
  gap: 0.6rem;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(1, 115, 178, 0.08);
  border: 1px solid rgba(1, 115, 178, 0.1);
  transition: transform 160ms ease, background-color 160ms ease;
}

.contact-linkedin:hover,
.contact-linkedin:focus-visible {
  transform: translateY(-2px);
  background: rgba(79, 188, 32, 0.14);
}

.contact-linkedin img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.contact-note {
  margin-top: 0.95rem;
  margin-bottom: 1.8rem;
  text-align: justify;
  text-justify: inter-word;
}

.contact-form {
  position: relative;
  margin-top: 1.5rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 1rem 0 0;
  color: var(--brand-blue-dark);
  font-weight: 700;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label span {
  font-weight: 700;
  color: var(--ink-900);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(1, 115, 178, 0.16);
  border-radius: 18px;
  background: #fbfeff;
  padding: 0.95rem 1rem;
  color: var(--ink-900);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contact-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(1, 115, 178, 0.45);
  box-shadow: 0 0 0 4px rgba(1, 115, 178, 0.08);
  background: #ffffff;
}

.phone-field {
  grid-column: span 2;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  gap: 0.85rem;
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-blue-dark) 50%),
    linear-gradient(135deg, var(--brand-blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-message {
  margin-top: 1rem;
}

.checkbox-field {
  display: flex !important;
  align-items: start;
  gap: 0.8rem;
  margin: 1.2rem 0 1.5rem;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
}

.checkbox-field span {
  font-size: 0.8rem;
  line-height: 1.3;
}

.services-page .page-hero p,
.services-page .service-body p {
  text-align: left;
  text-justify: auto;
}

.legal-page .page-hero p {
  margin-top: 0.8rem;
}

.legal-card {
  padding: 2rem;
}

.legal-card > :first-child {
  margin-top: 0;
}

.legal-card h2 {
  margin: 1.8rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.legal-card p {
  margin: 0;
  color: var(--ink-700);
}

.legal-card p + p {
  margin-top: 1rem;
}

.legal-list {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
  color: var(--ink-700);
}

.legal-list li + li {
  margin-top: 0.55rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.5fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(1, 115, 178, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer-grid p,
.footer-links a {
  color: var(--ink-700);
}

.brand-footer .brand-mark {
  width: 58px;
  height: 58px;
}

.footer-social {
  width: 52px;
  height: 52px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  gap: 0.6rem;
  padding: 1.25rem;
  text-align: center;
  color: var(--brand-blue-dark);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(1, 115, 178, 0.1), rgba(79, 188, 32, 0.13));
}

.image-placeholder::before {
  content: "Image Placeholder";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 38px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(1, 115, 178, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-placeholder code {
  display: inline-block;
  max-width: min(100%, 30ch);
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-900);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
  word-break: break-word;
}

.image-placeholder.fill {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
}

.hero-media > .image-placeholder.fill,
.about-media > .image-placeholder.fill {
  position: absolute;
  inset: 0;
}

.image-placeholder.compact {
  width: 100%;
  height: 100%;
  padding: 0.35rem;
  border-radius: inherit;
}

.image-placeholder.compact::before {
  content: attr(data-label);
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.image-placeholder.compact code {
  display: none;
}

@media (max-width: 1080px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(1, 115, 178, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-inner {
    position: relative;
    min-height: 82px;
  }

  .hero-grid,
  .about-layout,
  .service-card,
  .contact-grid,
  .grid-two,
  .grid-three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
  }

  .home-hero-media {
    min-height: 360px;
  }

  .about-media {
    position: relative;
    top: auto;
    min-height: 380px;
  }

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

  .cta-panel,
  .split-panel {
    flex-direction: column;
    align-items: start;
  }

  .legal-strip-links {
    flex-wrap: wrap;
  }

  .header-inner > .social-link {
    display: none;
  }

}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 2.4rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .content-panel,
  .content-card,
  .service-body,
  .contact-card,
  .form-card,
  .footer-grid {
    padding: 1.35rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }

  .hero-tagline {
    font-size: 1.18rem;
  }

  .hero-brand-image {
    margin-left: -0.35rem;
  }

  .brand {
    max-width: min(68vw, 250px);
  }

  .brand-mark {
    max-height: 52px;
  }

  .hero-media {
    min-height: 320px;
  }

  .home-hero-media {
    min-height: 280px;
  }

  .page-hero {
    padding-top: 2.8rem;
  }

  .form-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-column: auto;
  }

  .phone-input-group {
    grid-template-columns: 1fr;
  }

  .training-partner {
    flex-direction: column;
    align-items: flex-start;
  }

}
