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

:root {
  --bg-light: #F5F5F5;
  --bg-dark: #1C1C1E;
  --bg-navy: #F5F5F5;
  --orange: #FF6A00;
  --white: #FFFFFF;
  --black: #000000;
  --text-dark: #1C1C1E;
  --text-light: #F5F5F5;

  --font: 'Inter', sans-serif;
  --max-width: 1440px;
  --side-padding: 65px;
}

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

body {
  font-family: var(--font);
  background: var(--bg-navy);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.header {
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 40px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  width: 40px;
  height: 52px;
  object-fit: contain;
}

.header__separator {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.header__logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.header__nav {
  display: flex;
  justify-self: center;
  align-items: center;
  width: min(440px, 100%);
  justify-content: space-between;
  gap: 24px;
}

.header__link {
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  transition: color 0.3s;
}

.header__link:hover {
  color: var(--orange);
}

.header__cta {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  background: var(--text-dark);
  padding: 12px 28px;
  border-radius: 0;
  transition: background 0.3s;
}

.header__cta:hover {
  background: var(--orange);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-light);
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  margin-bottom: 58px;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  min-height: 608px;
  display: flex;
  align-items: center;
}

.hero__content {
  flex: 1;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 96px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -2px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.hero__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  color: #5B5B5D;
  opacity: 0.71;
  max-width: 614px;
  margin-bottom: 60px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__line {
  display: block;
  width: 134px;
  height: 2px;
  background: var(--orange);
}

.hero__link {
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  transition: opacity 0.3s;
}

.hero__link:hover {
  opacity: 0.7;
}

.hero__shape {
  position: absolute;
  right: -250px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  z-index: 1;
}

.hero__shape svg {
  width: 100%;
  height: 100%;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  margin-bottom: 40px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-light);
}

.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px 250px;
}

.services .section-label {
  margin-bottom: 170px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: var(--orange);
  overflow: hidden;
}

.services__cell {
  min-height: 180px;
  padding: 48px 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
}

.services__cell h3 {
  font-weight: 700;
  color: var(--black);
}

.services__cell--wide-top {
  grid-column: span 8;
}

.services__cell--wide-top h3 {
  font-size: 44px;
  line-height: 1.1;
}

.services__cell--narrow-top {
  grid-column: span 4;
}

.services__cell--narrow-top h3 {
  font-size: 24px;
}

.services__cell--narrow-bottom {
  grid-column: span 3;
}

.services__cell--narrow-bottom h3 {
  font-size: 24px;
}

.services__cell--wide-bottom {
  grid-column: span 9;
}

.services__cell--wide-bottom h3 {
  font-size: 44px;
  line-height: 1.1;
}

/* ===== MISSION ===== */
.mission {
  background: var(--bg-dark);
  overflow: hidden;
}

.mission__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px var(--side-padding);
  min-height: 820px;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.mission__left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.mission__title--white {
  font-size: 72px;
  font-weight: 900;
  line-height: 86px;
  letter-spacing: -1.476px;
  color: var(--text-light);
  display: block;
}

.mission__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
}

.mission__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 32.5px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 470px;
}

.mission__divider {
  width: 100%;
  max-width: 470px;
  height: 2px;
  background: var(--text-light);
  margin-bottom: 40px;
}

.mission__title--orange {
  font-size: 72px;
  font-weight: 900;
  line-height: 86px;
  letter-spacing: -1.476px;
  color: var(--orange);
  margin-left: -80px;
  margin-top: 100px;
  margin-right: 80px;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg-light);
  overflow-x: visible;
  position: relative;
  margin-bottom: 25px;
}

/* Orange circle — lives in process so about can keep overflow:hidden for the rect */
.process::after {
  content: '';
  position: absolute;
  right: calc(50% - var(--max-width) / 2 + var(--side-padding) - 300px);
  bottom: -270px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--orange);
  z-index: 0;
  pointer-events: none;
}

.process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px var(--side-padding) 128px;
  position: relative;
}

.process .section-label {
  margin-bottom: 150px;
}

.process__steps {
  --process-track-top: 106px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: calc(100vw - (var(--side-padding) * 2));
  margin-left: calc(50% - 50vw + var(--side-padding));
  padding-top: 40px;
  padding-bottom: 200px;
  position: relative;
}

.process__step {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 0 30px;
  text-align: center;
}

.process__step-title {
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 54px;
  transition: color 0.28s ease, text-shadow 0.28s ease, opacity 0.28s ease;
}

.process__step--active .process__step-title {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.14);
}

.process__line-container {
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: var(--process-track-top);
  height: 1px;
  background: rgba(28, 28, 30, 0.2);
  pointer-events: none;
}

.process__line-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.process__step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  top: 50%;
  left: 0;
  box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.12);
  transform: translate(0, -50%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  animation: process-dot-pulse 1.4s ease-in-out infinite;
}

.process__step-dot--moving {
  animation: none;
  box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.08);
}

.process__step-text {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
  color: var(--black);
}

@keyframes process-dot-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.12);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 106, 0, 0.18);
  }
}


/* ===== ABOUT ===== */
.about {
  background: var(--bg-light);
  overflow: hidden;
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--side-padding) 120px;
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 810px;
}

.about__content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.about__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--black);
  margin-bottom: 48px;
}

.about__stats {
  list-style: none;
}

.about__stats li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 20px;
  font-weight: 300;
  color: var(--black);
  padding: 0;
  position: relative;
  padding-left: 36px;
  margin-bottom: 20px;
}

.about__stats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.about__stat-number {
  font-weight: 700;
  font-size: 40px;
}

.about__shape {
  position: absolute;
  right: 24px;
  top: -100px;
  width: 480px;
  z-index: 1;
}

.about__shape svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.about__shape-stem {
  transform: translateX(-50px);
}

.about__shape-diagonal {
  transform-box: view-box;
  transform-origin: 152px 495px;
  transform: rotate(-9deg);
}

/* Orange circle is now on .process::after above */

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-dark);
}

.contact__inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 90svh;
  box-sizing: border-box;
  padding: 88px var(--side-padding) 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 460px);
  column-gap: 92px;
  align-items: flex-start;
  align-content: center;
}

.contact__left {
  max-width: 560px;
  margin-left: -50px;
}

.contact__title {
  font-size: 88px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 42px;
}

.contact__subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 360px;
}

.contact__form {
  width: 100%;
  max-width: 500px;
  padding-top: 64px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__field {
  display: block;
  width: 100%;
  margin-bottom: 60px;
}

.contact__field:last-of-type {
  margin-bottom: 14px;
}

.contact__label {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 0;
  letter-spacing: 1px;
}

.contact__input {
  width: 100%;
  padding: 0 0 16px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact__input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact__input:focus {
  outline: none;
  border-bottom-color: var(--orange);
  box-shadow: 0 1px 0 0 var(--orange);
}

.contact__field--error .contact__input {
  border-bottom-color: var(--orange);
  box-shadow: 0 1px 0 0 var(--orange);
}

.contact__disclaimer {
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 320px;
  font-size: 12px;
  font-weight: 100;
  color: #FFFFFF;
  line-height: 1.25;
}

.contact__disclaimer-accent {
  color: var(--orange);
  text-decoration: none;
}

.contact__disclaimer-accent:hover {
  opacity: 0.82;
}

.contact__message {
  display: none;
  min-height: 0;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}

.contact__message:not(:empty) {
  display: block;
}

.contact__message--error {
  color: var(--orange);
}

.contact__message--success {
  color: rgba(255, 255, 255, 0.92);
}

.contact__submit {
  display: inline-block;
  min-width: 320px;
  height: 68px;
  padding: 0 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact__submit:hover {
  opacity: 0.85;
}

.contact__submit:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px var(--side-padding) 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__logo {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 30px;
}

.footer__left p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 30px;
}

.footer__heading {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  line-height: 30px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
}

.footer__right a {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-light);
  transition: color 0.3s;
  line-height: 30px;
}

.footer__right a:hover {
  color: var(--orange);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--side-padding) 40px;
  text-align: center;
}

.footer__bottom p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 30px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 120;
  width: min(652px, calc(100vw - 48px));
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  background: rgba(28, 28, 30, 0.98);
  box-shadow: 0 14px 34px rgba(28, 28, 30, 0.2);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cookie-banner--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.cookie-banner__close:hover {
  color: var(--white);
}

.cookie-banner__close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.cookie-banner__title {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  color: var(--orange);
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-banner__link {
  color: var(--orange);
  text-decoration: none;
}

.cookie-banner__link:hover {
  opacity: 0.82;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 34px;
  padding: 0 18px;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.cookie-banner__button:hover {
  opacity: 0.88;
}

.cookie-banner__button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --side-padding: 32px;
  }

  .section-label {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero {
    padding-top: 116px;
    margin-bottom: 0;
  }

  .hero__inner {
    min-height: 540px;
  }

  .hero__content {
    padding: 48px 0 72px;
  }

  .hero__title {
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 28px;
    max-width: 620px;
  }

  .hero__subtitle {
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero__shape {
    width: 280px;
    right: -40px;
  }

  .hero__shape {
    width: 400px;
    height: 400px;
    right: -80px;
  }

  .services__inner {
    padding: 0 var(--side-padding) 120px;
  }

  .services .section-label {
    margin-bottom: 56px;
  }

  .services__cell {
    padding: 36px 28px;
  }

  .mission__inner {
    flex-direction: column;
    min-height: auto;
    padding: 60px var(--side-padding);
    gap: 24px;
  }

  .mission__title--white,
  .mission__title--orange {
    font-size: 52px;
    line-height: 62px;
  }

  .mission__left,
  .mission__right {
    padding-top: 0;
  }

  .mission__text {
    max-width: 100%;
  }

  .mission__divider {
    max-width: 100%;
  }

  .mission__title--orange {
    margin: 40px 0 0;
  }

  .process::after {
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -90px;
  }

  .process__inner {
    padding: 72px var(--side-padding) 88px;
  }

  .process .section-label {
    margin-bottom: 56px;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    width: auto;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 48px;
  }

  .process__step {
    padding-right: 0;
  }

  .process__line-container {
    display: none;
  }

  .process__step-title {
    margin-bottom: 24px;
  }

  .services__cell--wide-top h3,
  .services__cell--wide-bottom h3 {
    font-size: 32px;
  }

  .services__cell--narrow-top h3,
  .services__cell--narrow-bottom h3 {
    font-size: 22px;
  }

  .contact__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form {
    max-width: 100%;
    padding-top: 0;
    justify-self: start;
  }

  .contact__title {
    font-size: 52px;
    line-height: 62px;
  }

  .about__inner {
    padding: 64px var(--side-padding) 88px;
    min-height: 680px;
  }

  .about__shape {
    width: 340px;
    right: -60px;
  }

  .about__inner::before {
    width: 300px;
    height: 300px;
  }

  .footer__logo {
    font-size: 48px;
  }

  .cookie-banner {
    right: 20px;
    bottom: 20px;
    width: min(560px, calc(100vw - 40px));
  }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 20px;
  }

  .section-label {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* Header mobile */
  .header__inner {
    height: 72px;
    grid-template-columns: auto auto;
    column-gap: 16px;
    justify-content: space-between;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .header__nav.active {
    display: flex;
  }

  .header__nav .header__link {
    font-size: 24px;
  }

  .header__cta {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero mobile */
  .hero {
    padding-top: 88px;
  }

  .hero__inner {
    min-height: auto;
    padding: 0 var(--side-padding) 56px;
  }

  .hero__content {
    padding: 24px 0 0;
  }

  .hero__title {
    font-size: 38px;
    line-height: 0.94;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero__cta {
    gap: 14px;
  }

  .hero__line {
    width: 72px;
  }

  .hero__link {
    font-size: 16px;
  }

  .hero__shape {
    display: none;
  }

  .hero__inner::before {
    display: none;
  }

  /* Services mobile */
  .services__inner {
    padding: 0 12px 72px;
  }

  .services .section-label {
    margin-bottom: 28px;
  }

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

  .services__cell {
    min-height: 110px;
    padding: 16px 10px;
  }

  .services__cell--wide-top {
    grid-column: span 8;
  }

  .services__cell--narrow-top {
    grid-column: span 4;
  }

  .services__cell--narrow-bottom {
    grid-column: span 3;
  }

  .services__cell--wide-bottom {
    grid-column: span 9;
  }

  .services__cell--wide-top h3,
  .services__cell--wide-bottom h3 {
    font-size: 17px;
    line-height: 1.08;
  }

  .services__cell--narrow-top h3,
  .services__cell--narrow-bottom h3 {
    font-size: 11px;
    line-height: 1.08;
    letter-spacing: -0.2px;
    overflow-wrap: normal;
    word-break: normal;
  }

  /* Mission mobile */
  .mission__inner {
    padding: 48px var(--side-padding) 56px;
    gap: 20px;
  }

  .mission__left {
    padding-top: 0;
  }

  .mission__title--white,
  .mission__title--orange {
    font-size: 40px;
    line-height: 0.96;
    letter-spacing: -0.8px;
  }

  .mission__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .mission__divider {
    margin-bottom: 24px;
  }

  .mission__title--orange {
    margin: 0;
  }

  /* Process mobile */
  .process::after {
    display: none;
  }

  .process__inner {
    padding: 56px var(--side-padding) 64px;
  }

  .process .section-label {
    margin-bottom: 32px;
  }

  .process__steps {
    counter-reset: process-step;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
    padding-bottom: 8px;
    padding-left: 0;
  }

  .process__steps::before {
    display: none;
  }

  .process__step-title {
    display: block;
    min-height: 36px;
    padding-left: 52px;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.02;
    letter-spacing: -0.4px;
  }

  .process__step-text {
    max-width: none;
    padding-left: 52px;
    line-height: 23px;
    font-size: 15px;
  }

  .process__step-text br {
    display: none;
  }

  .process__step {
    counter-increment: process-step;
    position: relative;
    padding: 18px;
    margin-right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 248, 245, 1) 100%);
    border: 1px solid rgba(255, 106, 0, 0.16);
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(28, 28, 30, 0.05);
  }

  .process__step::before {
    content: counter(process-step, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(255, 106, 0, 0.18);
  }

  .process__step--active {
    border-color: rgba(255, 106, 0, 0.28);
    box-shadow: 0 18px 34px rgba(255, 106, 0, 0.1);
  }

  .process__step--active::before {
    box-shadow: 0 12px 26px rgba(255, 106, 0, 0.22);
  }

  /* About mobile */
  .about__shape {
    display: none;
  }

  .about__inner::before {
    display: none;
  }

  .about__inner {
    padding: 56px var(--side-padding) 72px;
    min-height: auto;
  }

  .about__text {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 32px;
  }

  .about__stats li {
    gap: 12px;
    font-size: 18px;
    padding-left: 26px;
    margin-bottom: 16px;
  }

  .about__stats li::before {
    width: 12px;
    height: 12px;
    top: 12px;
  }

  .about__stat-number {
    font-size: 32px;
  }

  /* Contact mobile */
  .contact__inner {
    min-height: auto;
    gap: 32px;
    padding: 56px var(--side-padding) 56px;
  }

  .contact__title {
    font-size: 56px;
    line-height: 0.94;
    margin-bottom: 24px;
  }

  .contact__subtitle {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .contact__form {
    width: 100%;
    justify-self: stretch;
  }

  .contact__field {
    margin-bottom: 18px;
  }

  .contact__label {
    font-size: 14px;
    padding: 8px 0;
  }

  .contact__input {
    padding-bottom: 12px;
    font-size: 18px;
  }

  .contact__disclaimer {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .contact__message {
    margin-bottom: 16px;
  }

  .contact__submit {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    gap: 32px;
    padding: 40px var(--side-padding) 28px;
  }

  .footer__right {
    text-align: left;
  }

  .footer__logo {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .footer__left p,
  .footer__right a,
  .footer__heading {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__heading {
    margin-bottom: 16px;
  }

  .footer__bottom {
    padding: 20px var(--side-padding) 28px;
  }

  .footer__bottom p {
    font-size: 14px;
    line-height: 22px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px 14px 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cookie-banner__title {
    font-size: 22px;
  }

  .cookie-banner__text {
    font-size: 13px;
    line-height: 1.35;
  }

  .cookie-banner__button {
    width: 100%;
    height: 42px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  :root {
    --side-padding: 16px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 0.95;
    letter-spacing: -0.6px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .hero__cta {
    gap: 12px;
  }

  .hero__line {
    width: 64px;
  }

  .hero__link {
    font-size: 15px;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for list items */
.services__cell.animate:nth-child(1) {
  transition-delay: 0s;
}

.services__cell.animate:nth-child(2) {
  transition-delay: 0.1s;
}

.services__cell.animate:nth-child(3) {
  transition-delay: 0.2s;
}

.services__cell.animate:nth-child(4) {
  transition-delay: 0.3s;
}

.process__step.animate:nth-child(1) {
  transition-delay: 0s;
}

.process__step.animate:nth-child(2) {
  transition-delay: 0.15s;
}

.process__step.animate:nth-child(3) {
  transition-delay: 0.3s;
}

.process__step.animate:nth-child(4) {
  transition-delay: 0.45s;
}

.about__stats li.animate:nth-child(1) {
  transition-delay: 0s;
}

.about__stats li.animate:nth-child(2) {
  transition-delay: 0.1s;
}

.about__stats li.animate:nth-child(3) {
  transition-delay: 0.2s;
}

.about__stats li.animate:nth-child(4) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .process__step-dot {
    animation: none;
    transition: none;
  }

  .process__step-title {
    transition: none;
    transform: none;
  }
}
