/* ============================================================
   FW Recycling — Landing Page
   Clean, minimal, B2B. Logo-blue accent.
   ============================================================ */

:root {
  /* Palette derived from logo */
  --navy: #0b2244;
  --navy-700: #11305f;
  --navy-600: #1a3f7a;
  --blue: #3b6fb6;
  --blue-soft: #e7eff9;
  --ink: #0e1a2b;
  --ink-2: #475569;
  --muted: #6b7a90;
  --line: #e6ecf3;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;

  /* Typography scale */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 1.8vw, 2.75rem);
  --text-hero: clamp(2.5rem, 1.9rem + 3vw, 4rem);

  /* Spacing */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 34, 68, 0.04),
    0 2px 6px rgba(11, 34, 68, 0.04);
  --shadow: 0 8px 28px -12px rgba(11, 34, 68, 0.18),
    0 2px 6px rgba(11, 34, 68, 0.05);
  --shadow-lg: 0 30px 60px -25px rgba(11, 34, 68, 0.28),
    0 8px 20px -10px rgba(11, 34, 68, 0.12);

  --container: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 2rem);
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
.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;
}
::selection {
  background: var(--navy);
  color: #fff;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.section__header {
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.section__title {
  font-size: var(--text-2xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
}
.section__title--light {
  color: #fff;
}
.section__lead {
  margin-top: 0.9rem;
  font-size: var(--text-lg);
  color: var(--ink-2);
  line-height: 1.6;
}
.section__lead--center {
  margin-inline: auto;
  text-align: center;
  max-width: 56ch;
}
.section__lead--light {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.eyebrow--muted {
  color: var(--muted);
}
.eyebrow--light {
  color: #9ec1f0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: var(--text-base);
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--navy-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: #d3dde9;
}
.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(11, 34, 68, 0.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  height: 52px;
  overflow: hidden;
}
.brand__logo {
  width: auto;
  height: 110px;
  object-fit: contain;
}
.brand__name {
  font-size: var(--text-base);
}
.brand__name-strong {
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(
      1100px 500px at 90% -10%,
      rgba(59, 111, 182, 0.10),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at -10% 20%,
      rgba(11, 34, 68, 0.06),
      transparent 60%
    ),
    #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 34, 68, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 34, 68, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 30%,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__content {
  min-width: 0;
}
.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 14ch;
}
.hero__title .accent {
  color: var(--blue);
}
.hero__sub {
  margin-top: 1.1rem;
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 52ch;
}
.hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__usp {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  max-width: min(100%, 38rem);
  min-width: 0;
  padding-block: 0.2rem;
  overflow: hidden;
  color: var(--ink-2);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.hero__usp-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  padding-block: 0.05rem;
  white-space: nowrap;
  will-change: transform;
  animation: hero-usp-loop 24s linear infinite;
}
.hero__usp-copy {
  flex: 0 0 auto;
  padding-right: 2.5rem;
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero__logo {
  width: min(300px, 76%);
  height: auto;
  object-fit: contain;
  transform: translateX(0);
}
.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px 200px at 80% 0%,
    rgba(59, 111, 182, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
@keyframes hero-usp-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Grid blocks */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 {
  grid-template-columns: 1fr 1fr;
}
.grid--gap {
  gap: clamp(1.25rem, 3vw, 2rem);
}

.card {
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.card--plain {
  background: #fff;
  border: 1px solid var(--line);
}
.card--accent {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  border: 1px solid var(--navy-700);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.card--accent::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(59, 111, 182, 0.55),
    transparent 70%
  );
  top: -120px;
  right: -120px;
  filter: blur(2px);
  pointer-events: none;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.benefit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #d3dde9;
}
.benefit__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--navy);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.benefit h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.benefit p {
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* Process loop */
.process-loop {
  position: relative;
  width: min(100%, 920px);
  min-height: 760px;
  margin: 3rem auto 0;
  padding-block: 0.5rem;
}
.process-loop__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 560px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.process-loop__orbit::before,
.process-loop__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.process-loop__orbit::before {
  inset: 0;
  border: 1.5px solid rgba(59, 111, 182, 0.22);
  box-shadow: inset 0 0 0 10px rgba(231, 239, 249, 0.56);
}
.process-loop__orbit::after {
  inset: 20px;
  border: 1px dashed rgba(59, 111, 182, 0.18);
}
.process-loop__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(220px, 100%);
  padding: 1rem 1rem 1.05rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(59, 111, 182, 0.14);
  border-radius: 20px;
  box-shadow: 0 18px 34px -28px rgba(11, 34, 68, 0.26);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.process-loop__center-eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.process-loop__center-text {
  margin-top: 0.45rem;
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.process-loop__steps {
  --process-radius: 282px;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.process-step {
  --index: 1;
  --angle: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  min-height: 140px;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px -18px rgba(11, 34, 68, 0.22);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--process-radius)))
    rotate(calc(-1 * var(--angle)));
  transform-origin: center;
  animation: process-step-orbit 36s linear infinite;
}
.process-step:hover {
  box-shadow: 0 14px 26px -22px rgba(11, 34, 68, 0.28);
  border-color: #d3dde9;
}
.process-step--1 {
  --index: 1;
  --angle: 0deg;
}
.process-step--2 {
  --index: 2;
  --angle: 60deg;
}
.process-step--3 {
  --index: 3;
  --angle: 120deg;
}
.process-step--4 {
  --index: 4;
  --angle: 180deg;
}
.process-step--5 {
  --index: 5;
  --angle: 240deg;
}
.process-step--6 {
  --index: 6;
  --angle: 300deg;
  background: var(--navy);
  border-color: rgba(11, 34, 68, 0.18);
  box-shadow: 0 18px 34px -24px rgba(11, 34, 68, 0.38);
}
.process-step__num {
  font-family: var(--font);
  font-feature-settings: "tnum";
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.process-step__title {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.28rem;
}
.process-step__text {
  color: var(--ink-2);
  font-size: 0.84rem;
  line-height: 1.45;
}
.process-step--6 .process-step__num {
  color: #c8dbf7;
}
.process-step--6 .process-step__title {
  color: #fff;
}
.process-step--6 .process-step__text {
  color: rgba(255, 255, 255, 0.88);
}
.steps__note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}
@keyframes process-step-orbit {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(calc(-1 * var(--process-radius)))
      rotate(calc(-1 * var(--angle)));
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--angle) + 360deg))
      translateY(calc(-1 * var(--process-radius)))
      rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}

/* About */
.about {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about .section__title {
  margin-bottom: 1.25rem;
}
.about__text {
  color: var(--ink-2);
  font-size: var(--text-lg);
  line-height: 1.65;
}
.about__points {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  justify-content: center;
}
.about__points li {
  color: var(--navy);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}
.about__points li:not(:last-child)::after {
  content: "\2022";
  display: inline-block;
  margin-inline: 0.7rem;
  color: var(--navy);
}

/* Contact */
.section--contact {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1c39 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 500px at 100% 0%,
      rgba(59, 111, 182, 0.25),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(59, 111, 182, 0.15),
      transparent 60%
    );
  pointer-events: none;
}
.contact {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.contact__intro {
  max-width: 36rem;
}
.contact .section__title {
  max-width: 12ch;
}
.contact .section__lead {
  max-width: 56ch;
}
.contact__direct {
  margin-top: 2rem;
}
.contact__direct-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}
.contact__direct-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__direct-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-align: left;
}
.contact__direct-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
.contact__label {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ec1f0;
  font-weight: 600;
}
.contact__value {
  font-size: var(--text-base);
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}
.contact-form {
  padding: clamp(1.25rem, 2.8vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px -24px rgba(4, 14, 30, 0.55);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-form__field--full {
  grid-column: 1 / -1;
}
.contact-form__field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}
.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(158, 193, 240, 0.75);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(158, 193, 240, 0.16);
}
.contact-form__check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.9rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.45;
}
.contact-form__check input {
  margin-top: 0.15rem;
  accent-color: #9ec1f0;
}
.contact-form__check span {
  min-width: 0;
}
.contact-form__status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.contact-form__status--pending {
  color: rgba(214, 228, 248, 0.88);
}
.contact-form__status--success {
  color: #d9f3dc;
}
.contact-form__status--error {
  color: #ffd5d5;
}
.contact-form__submit {
  margin-top: 1.35rem;
  min-width: 12rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}
.footer__name {
  font-weight: 700;
  color: var(--navy);
}
.footer__meta {
  font-size: var(--text-sm);
  color: var(--muted);
}
.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  justify-self: center;
}
.footer__contact a:hover {
  color: var(--navy);
}
.footer__contact .dot {
  color: var(--muted);
}
.footer__copy {
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
  justify-self: end;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__usp {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero__usp-track {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    animation: none !important;
    transform: none !important;
  }
  .hero__usp-copy {
    display: block;
    padding-right: 0;
  }
  .hero__usp-copy:last-child {
    display: none;
  }
  .process-step,
  .process-step__num,
  .process-step__title,
  .process-step__text {
    animation: none !important;
  }
  .process-step--6 {
    background: var(--navy);
    border-color: rgba(11, 34, 68, 0.18);
    box-shadow: 0 18px 34px -24px rgba(11, 34, 68, 0.38);
  }
  .process-step--6 .process-step__num {
    color: #c8dbf7;
  }
  .process-step--6 .process-step__title {
    color: #fff;
  }
  .process-step--6 .process-step__text {
    color: rgba(255, 255, 255, 0.88);
  }
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
    margin-bottom: 0.5rem;
  }
  .hero__card {
    width: min(320px, 100%);
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-loop {
    width: min(100%, 860px);
    min-height: 700px;
  }
  .process-loop__orbit {
    width: min(100%, 500px);
  }
  .process-loop__center {
    width: 210px;
    padding: 0.95rem;
  }
  .process-loop__steps {
    --process-radius: 248px;
  }
  .process-step {
    width: 156px;
    min-height: 126px;
    padding: 0.88rem 0.88rem;
  }
  .process-step__title {
    font-size: 0.96rem;
  }
  .process-step__text {
    font-size: 0.79rem;
  }
  .contact__layout {
    grid-template-columns: 1fr;
  }
  .contact__intro {
    max-width: 100%;
  }
}
@media (max-width: 620px) {
  .header__cta {
    padding: 0.6rem 0.95rem;
  }
  .brand__name {
    display: none;
  }
  .hero__usp {
    margin-top: 1.15rem;
    max-width: 32ch;
    font-size: 0.875rem;
    line-height: 1.5;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero__usp-track {
    display: block;
    width: 100%;
    min-width: 0;
    white-space: normal;
    animation: none;
  }
  .hero__usp-copy {
    display: block;
    padding-right: 0;
  }
  .hero__usp-copy:last-child {
    display: none;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .process-loop {
    width: min(100%, 420px);
    min-height: 680px;
    margin-top: 2rem;
  }
  .process-loop__orbit {
    width: min(100%, 320px);
  }
  .process-loop__center {
    width: min(190px, 52vw);
    padding: 0.9rem 0.85rem;
  }
  .process-loop__center-eyebrow {
    font-size: 0.82rem;
  }
  .process-loop__center-text {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .process-loop__steps {
    --process-radius: 168px;
  }
  .process-step {
    width: min(30vw, 116px);
    min-height: 118px;
    padding: 0.72rem 0.68rem;
    border-radius: 15px;
  }
  .process-step__num {
    margin-bottom: 0.38rem;
    font-size: 0.74rem;
  }
  .process-step__title {
    font-size: 0.86rem;
    margin-bottom: 0.18rem;
  }
  .process-step__text {
    font-size: 0.71rem;
    line-height: 1.34;
  }
  .steps__note {
    margin-top: 1rem;
  }
  .contact__direct-list,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__submit {
    width: 100%;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__brand {
    justify-content: center;
  }
  .footer__copy {
    justify-self: center;
  }
}
