/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0e2d4c;
  --navy-2:     #163d63;
  --teal:       #1a8c82;
  --teal-light: #2ab5aa;
  --dark:       #111827;
  --mid:        #374151;
  --muted:      #6b7280;
  --light:      #f9fafb;
  --light-2:    #f0f4f8;
  --white:      #ffffff;
  --border:     #e5e7eb;

  --font: 'Inter', system-ui, sans-serif;
  --font-head: 'Syne', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);

  --trans: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1180px, 100% - 2 * clamp(1.25rem, 5vw, 4rem));
  margin-inline: auto;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--teal-light); }

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }

.section__desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.8;
}
.section__desc--light { color: rgba(255,255,255,.65); }

.body-text {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,140,130,.3);
}
.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  padding-block: 1rem;
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: filter var(--trans);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.4));
}
.header.scrolled .nav__logo-img { filter: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--trans);
  position: relative;
}
.nav__link--en {
  font-size: .75rem;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.35);
  padding: .2rem .6rem;
  border-radius: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: var(--teal-light);
  transition: right var(--trans);
}
.nav__link--en::after { display: none; }
.nav__link:hover::after { right: 0; }
.nav__link:hover { color: var(--white); }

.header.scrolled .nav__link { color: var(--mid); }
.header.scrolled .nav__link:hover { color: var(--navy); }
.header.scrolled .nav__link--en { border-color: var(--border); color: var(--mid); }

.nav__cta { margin-left: .5rem; font-size: .875rem; padding: .65rem 1.4rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.header.scrolled .nav__burger span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,45,76,.88) 0%,
    rgba(14,45,76,.7) 50%,
    rgba(14,45,76,.45) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 10rem 5rem;
  max-width: 680px;
}
.hero__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal-light);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--teal-light);
}
.hero__subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(.4); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--navy);
  padding: 1.5rem 0;
}
.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .75rem 3rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
.stat strong {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* ===== SECTIONS ===== */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--dark { background: var(--navy); }
.section--tint { background: var(--light-2); }

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}
.badge {
  background: var(--light-2);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.about__visual { position: relative; }
.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__since {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__since strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}
.about__since span {
  font-size: .75rem;
  opacity: .85;
  display: block;
  margin-top: .25rem;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service {
  background: rgba(255,255,255,.04);
  padding: 2.5rem;
  transition: background var(--trans);
  position: relative;
}
.service:hover { background: rgba(255,255,255,.08); }
.service__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
}
.service__icon {
  width: 44px;
  height: 44px;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.service__icon svg { width: 100%; height: 100%; }
.service__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.service__text {
  color: rgba(255,255,255,.6);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service__list li {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  padding-left: 1.1rem;
  position: relative;
}
.service__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: .75rem;
  top: .15em;
}

/* ===== PROCESS ===== */
.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: .5rem;
  align-items: start;
}
.process__step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.process__step-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--teal);
}
.process__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  margin: .5rem auto .85rem;
}
.process__step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.process__step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}
.process__connector {
  font-size: 1.25rem;
  color: var(--border);
  padding-top: 3.5rem;
  text-align: center;
  flex-shrink: 0;
}
.process__connector::before { content: '→'; }

/* ===== CERTS ===== */
.certs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cert {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.cert:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal);
}
.cert__icon {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: .75rem;
}
.cert h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}
.cert p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ===== USPs ===== */
.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usp {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: border-color var(--trans), background var(--trans);
}
.usp:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}
.usp__icon {
  font-size: 1.4rem;
  color: var(--teal-light);
  margin-bottom: 1rem;
}
.usp h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.usp p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 2rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.contact__ico {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .2rem;
}
.contact__detail div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.contact__detail strong {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__detail a, .contact__detail span { font-size: .9375rem; color: var(--dark); }
.contact__detail a:hover { color: var(--teal); }
.contact__note {
  background: var(--light-2);
  border-left: 3px solid var(--teal);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .875rem;
  color: var(--mid);
  line-height: 1.6;
}
.contact__note strong { color: var(--dark); }

/* ===== FORM ===== */
.contact__form {
  background: var(--light-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact__form h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: .02em;
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,140,130,.12);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__note {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  margin-top: .75rem;
}
.form__success {
  display: none;
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin-top: 1rem;
  padding: .875rem;
  background: rgba(26,140,130,.08);
  border: 1px solid rgba(26,140,130,.2);
  border-radius: var(--radius-sm);
}
.form__error {
  display: none;
  text-align: center;
  color: #b91c1c;
  font-size: .875rem;
  margin-top: 1rem;
  padding: .875rem;
  background: rgba(185,28,28,.06);
  border: 1px solid rgba(185,28,28,.2);
  border-radius: var(--radius-sm);
}
.form__error a { color: #b91c1c; text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
}
.footer__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: .75rem;
}
.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 260px;
  margin-top: .5rem;
}
.footer__col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer__col a:hover { color: var(--teal-light); }
.footer__col p {
  font-size: .875rem;
  margin-bottom: .4rem;
  color: rgba(255,255,255,.5);
}
.footer__col p a { font-size: inherit; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__bottom-inner p { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  transition: color var(--trans);
}
.footer__legal a:hover { color: var(--teal-light); }

/* ===== IMPRESSUM PAGE ===== */
.impressum-page {
  padding-block: 7rem 5rem;
  min-height: 80vh;
}
.impressum-container {
  max-width: 720px;
}
.impressum-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 2.5rem;
  transition: gap var(--trans);
}
.impressum-back:hover { gap: .75rem; }
.impressum-page h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
}
.impressum-block {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border);
}
.impressum-block:last-child {
  border-bottom: none;
}
.impressum-block h2 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}
.impressum-block p {
  font-size: .9375rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: .5rem;
}
.impressum-block p:last-child { margin-bottom: 0; }
.impressum-block a { color: var(--teal); }
.impressum-block a:hover { text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 2rem));
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(1rem);
  pointer-events: none;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 200px; }
.cookie-banner__text strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: .3rem;
}
.cookie-banner__text p {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--teal-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn--cookie-accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--trans);
}
.btn--cookie-accept:hover { background: var(--teal-light); }
.btn--cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: .6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--trans);
}
.btn--cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .certs__grid { grid-template-columns: 1fr 1fr; }
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__list, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__list.open .nav__link { color: var(--white); font-size: 1.35rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; margin-inline: auto; }
  .about__since { right: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process__connector { display: none; }
  .usp__grid { grid-template-columns: 1fr; }
  .certs__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .stats__grid { flex-direction: column; gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; padding: .85rem 1.5rem; }
  .stat:last-child { border-bottom: none; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .process__steps { grid-template-columns: 1fr; }
}
