/* =============================================================
   AURO TIM — shared stylesheet
   Mobile-first. Every value comes from a token in :root.
   Never hardcode a colour, radius, shadow or spacing on a page.

   Table of contents
   01  Tokens
   02  Reset
   03  Base typography & helpers
   04  Buttons, links, icons
   05  Section primitives (eyebrow, titles, container)
   06  Utility bar
   07  Header, nav, mega menu, mobile nav
   08  Hero
   09  Trust strip
   10  About
   11  Product cards
   12  Steps
   13  Business band
   14  Testimonial slider
   15  Partners
   16  Team
   17  FAQ accordion
   18  Contact + form
   19  Footer
   20  Cookie bar + modal
   21  Motion & reduced motion
   ============================================================= */

/* ---------- 01 TOKENS ---------- */
:root {
  /* brand */
  --brand-900: #0B3B36;
  --brand-700: #14625C;
  --brand-500: #1E8B80;
  --accent-400: #38BFAE;

  /* gold — taken from the AURO TIM wordmark. Used sparingly:
     hairlines, the chevron motif, one button variant on dark. */
  --gold-600: #A9752A;
  --gold-500: #C6A053;
  --gold-300: #E7CE8E;

  /* ink & surfaces */
  --ink-900: #0F1A19;
  --ink-600: #4A5A58;
  --surface-0: #FFFFFF;
  --surface-50: #F3F8F7;
  --line: #E2ECEA;

  /* on dark */
  --on-dark: #FFFFFF;
  --on-dark-muted: #C6DCD8;

  /* feedback */
  --danger-600: #B3261E;
  --danger-50: #FDECEA;
  --success-600: #17715A;
  --success-50: #E8F5F0;

  /* radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* shadows */
  --shadow-card: 0 8px 30px rgba(11, 59, 54, .07);
  --shadow-lift: 0 16px 40px rgba(11, 59, 54, .12);
  --shadow-header: 0 4px 24px rgba(11, 59, 54, .08);

  /* spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --section-y: clamp(64px, 8vw, 112px);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  /* typography */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-h1: clamp(2.2rem, 5vw, 3.6rem);
  --fs-h2: clamp(1.75rem, 3.4vw, 2.6rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.3rem);
  --fs-lead: clamp(1rem, 1.3vw, 1.125rem);
  --fs-body: 1.0625rem;
  --fs-sm: .9375rem;
  --fs-xs: .8125rem;
  --lh-tight: 1.12;
  --lh-body: 1.65;
  --track-tight: -.02em;

  /* motion */
  --ease: cubic-bezier(.2, .7, .3, 1);
  --dur-fast: .18s;
  --dur: .3s;
  --dur-slow: .6s;

  /* layout */
  --header-h: 72px;
}

/* ---------- 02 RESET (custom, minimal) ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd {
  margin: 0;
}

ul[class], ol[class] { padding: 0; list-style: none; }

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-600);
  background-color: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

a { color: var(--brand-500); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-700); }

[hidden] { display: none; }

:focus-visible {
  outline: 3px solid var(--accent-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background-color: var(--accent-400); color: var(--brand-900); }

/* ---------- 03 BASE TYPOGRAPHY & HELPERS ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 200;
  padding: var(--space-3) var(--space-5);
  background-color: var(--brand-900);
  color: var(--on-dark);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-4); color: var(--on-dark); }

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 04 BUTTONS & LINKS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background-color: var(--brand-500); color: var(--on-dark); }
.btn--primary:hover { background-color: var(--brand-700); color: var(--on-dark); box-shadow: var(--shadow-lift); }

.btn--outline { background-color: transparent; border-color: var(--brand-500); color: var(--brand-700); }
.btn--outline:hover { background-color: var(--brand-500); color: var(--on-dark); }

.btn--ghost {
  background-color: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--on-dark);
}
.btn--ghost:hover { background-color: rgba(255, 255, 255, .12); color: var(--on-dark); }

.btn--gold { background-color: var(--gold-500); color: var(--brand-900); }
.btn--gold:hover { background-color: var(--gold-300); color: var(--brand-900); }

.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: var(--fs-xs); }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-500);
  text-decoration: none;
}
.link-arrow span { transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow:hover { color: var(--brand-700); }

/* ---------- 05 SECTION PRIMITIVES ---------- */
.section { padding-block: var(--section-y); }
.section--alt { background-color: var(--surface-50); }

.section__head { margin-bottom: clamp(32px, 5vw, 56px); }
.section__head--center { text-align: center; max-width: 44rem; margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background-color: rgba(56, 191, 174, .12);
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* the chevron from the logotype, reused as the eyebrow's leading mark */
.eyebrow::before {
  content: "";
  width: 14px;
  height: 7px;
  background-color: currentColor;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 50% 42%);
}
.eyebrow--onDark {
  background-color: rgba(255, 255, 255, .14);
  color: var(--gold-300);
}

.section__title { font-size: var(--fs-h2); }
.section__title-alt {
  display: block;
  font-weight: 500;
  color: var(--brand-700);
}

.section__lead {
  margin-top: var(--space-4);
  font-size: var(--fs-lead);
  color: var(--ink-600);
}

.section__foot { margin-top: clamp(32px, 4vw, 48px); text-align: center; }

.checklist { display: grid; gap: var(--space-3); margin-block: var(--space-6); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-weight: 500;
  color: var(--ink-900);
}
.checklist__icon {
  width: 24px;
  height: 24px;
  flex: none;
  padding: 4px;
  border-radius: var(--radius-pill);
  background-color: rgba(56, 191, 174, .16);
  fill: none;
  stroke: var(--brand-700);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 06 UTILITY BAR ---------- */
.utilitybar { display: none; background-color: var(--brand-900); color: var(--on-dark-muted); }

.utilitybar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 44px;
  font-size: var(--fs-xs);
}
.utilitybar__list { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); }
.utilitybar__list li { display: flex; align-items: center; gap: var(--space-2); }
.utilitybar__list .icon { width: 16px; height: 16px; color: var(--accent-400); }
.utilitybar a { color: var(--on-dark-muted); text-decoration: none; }
.utilitybar a:hover { color: var(--on-dark); }

.utilitybar__social { display: flex; gap: var(--space-3); }
.utilitybar__social .icon { width: 17px; height: 17px; }

@media (min-width: 768px) { .utilitybar { display: block; } }

/* ---------- 07 HEADER / NAV ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface-0);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-header); border-bottom-color: transparent; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}

/* the mobile nav panel is a positioned child of the header, so the logo and
   the burger need their own stacking order to stay clickable above it */
.logo { position: relative; z-index: 95; display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.logo__mark { width: 170px; height: auto; }
.logo__tag {
  padding-left: 2px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.logo--footer .logo__tag { color: var(--on-dark-muted); }

/* burger */
.burger {
  position: relative;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-900);
}
.burger__box { position: relative; width: 18px; height: 12px; }
.burger__bar, .burger__box::before, .burger__box::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--brand-700);
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.burger__bar { top: 5px; }
.burger__box::before { content: ""; top: 0; }
.burger__box::after { content: ""; bottom: 0; }
.burger[aria-expanded="true"] .burger__box::before { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box::after { transform: translateY(-5px) rotate(-45deg); }
.burger[aria-expanded="true"] .burger__bar { opacity: 0; }

.header__cta { display: none; }

/* mobile: full-screen slide-in panel */
.nav {
  position: fixed;
  inset: 0;
  /* below the header (z-index 100) so the burger stays visible and can close the panel */
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: calc(var(--header-h) + var(--space-6)) var(--gutter) var(--space-8);
  background-color: var(--surface-0);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.nav.is-open { transform: translateX(0); visibility: visible; }

.nav__list { display: flex; flex-direction: column; }
.nav__item { border-bottom: 1px solid var(--line); }
.nav__item--home { order: -1; }

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link:hover { color: var(--brand-500); }
.nav__link.is-active { color: var(--brand-500); }

.nav__chev { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.nav__link--toggle[aria-expanded="true"] .nav__chev { transform: rotate(180deg); }

.mega__grid, .dropdown__list { padding-bottom: var(--space-5); }
.mega__title {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-700);
}
.mega__col + .mega__col { margin-top: var(--space-5); }
.mega__list li a, .dropdown__list li a {
  display: block;
  padding: 7px 0;
  font-size: var(--fs-sm);
  color: var(--ink-600);
  text-decoration: none;
}
.mega__list li a:hover, .dropdown__list li a:hover { color: var(--brand-500); }
.mega__foot {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
}

.nav__cta { display: grid; gap: var(--space-3); justify-items: start; }
.nav__phone { font-size: var(--fs-sm); }

body.nav-open { overflow: hidden; }

@media (min-width: 1024px) {
  .burger { display: none; }
  .header__cta { display: inline-flex; }

  .nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
    padding: 0;
    overflow: visible;
    transform: none;
    visibility: visible;
    background-color: transparent;
  }
  .nav__list { flex-direction: row; align-items: center; gap: var(--space-1); }
  .nav__item { border-bottom: 0; }
  .nav__item--drop { position: relative; }
  .nav__item--mega { position: static; }
  .nav__item--home { order: -1; }

  .nav__link {
    width: auto;
    padding: var(--space-3) var(--space-3);
    font-size: var(--fs-sm);
    white-space: nowrap;
  }
  .nav__link.is-active { position: relative; }
  .nav__link.is-active::after {
    content: "";
    position: absolute;
    left: var(--space-3);
    right: var(--space-3);
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--gold-500);
  }

  .nav__cta { display: none; }

  .mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding-block: var(--space-7);
    background-color: var(--surface-0);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-header);
  }
  .mega__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    padding-bottom: 0;
  }
  .mega__col + .mega__col { margin-top: 0; }
  .mega__foot { grid-column: 1 / -1; margin-top: var(--space-4); }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: var(--space-3);
    background-color: var(--surface-0);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-header);
  }
  .dropdown__list { padding-bottom: 0; }
  .dropdown__list li a { padding: 9px var(--space-3); border-radius: var(--radius-sm); }
  .dropdown__list li a:hover { background-color: var(--surface-50); }
}

/* ---------- 08 HERO ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding-block: var(--space-8);
  background-color: var(--brand-900);
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(180deg, rgba(11, 59, 54, .92) 0%, rgba(11, 59, 54, .78) 55%, rgba(11, 59, 54, .86) 100%);
}
/* the container keeps its own centred max-width; the copy is capped
   separately so it stays flush left inside the grid, not centred */
.hero__inner { color: var(--on-dark); }

.hero__title {
  max-width: 26ch;
  font-size: var(--fs-h1);
  color: var(--on-dark);
  text-wrap: balance;
}
.hero__title-alt { display: block; font-weight: 500; color: var(--gold-300); }

.hero__lead {
  max-width: 34rem;
  margin-top: var(--space-5);
  font-size: var(--fs-lead);
  color: var(--on-dark-muted);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); max-width: 34rem; margin-top: var(--space-7); }

.hero__note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  max-width: 34rem;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(231, 206, 142, .35);
  font-size: var(--fs-sm);
  color: var(--on-dark-muted);
}
.hero__note .icon { width: 17px; height: 17px; color: var(--gold-300); }

@media (min-width: 768px) {
  .hero__overlay {
    background-image: linear-gradient(95deg, rgba(11, 59, 54, .95) 0%, rgba(11, 59, 54, .88) 42%, rgba(11, 59, 54, .35) 78%, rgba(11, 59, 54, .12) 100%);
  }
}
@media (min-width: 1024px) {
  .hero { min-height: 78vh; }
}

/* ---------- 09 TRUST STRIP ---------- */
.trust { padding-block: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.trust__inner { display: grid; gap: var(--space-6); }

.trust__statement {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: var(--track-tight);
  color: var(--ink-900);
}
.trust__statement span { font-weight: 500; color: var(--brand-700); }

.trust__list { display: grid; gap: var(--space-4); }
.trust__item { padding-left: var(--space-4); border-left: 2px solid var(--accent-400); }
.trust__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-900);
}
.trust__desc { display: block; font-size: var(--fs-sm); }

@media (min-width: 768px) {
  .trust__list { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}
@media (min-width: 1024px) {
  .trust__inner { grid-template-columns: 0.9fr 1.6fr; align-items: center; gap: var(--space-8); }
  .trust__list { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .trust__item { padding-inline: var(--space-5); border-left: 1px solid var(--line); }
  .trust__item:first-child { padding-left: 0; border-left: 0; }
}

/* ---------- 10 ABOUT ---------- */
.about__grid { display: grid; gap: clamp(40px, 6vw, 72px); }

.about__media { position: relative; padding-bottom: 88px; }
.about__photo { overflow: hidden; border-radius: var(--radius-lg); }
.about__photo--main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__photo--overlap {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 168px;
  width: 46%;
  border: 6px solid var(--surface-0);
  box-shadow: var(--shadow-card);
}
.about__photo--overlap img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.about__badge {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(300px, 82%);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background-color: var(--brand-900);
  color: var(--on-dark-muted);
  box-shadow: var(--shadow-lift);
}
.about__badge-num {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-300);
}
.about__badge-text { margin-top: var(--space-2); font-size: var(--fs-sm); }

@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .about__media { padding-bottom: 100px; padding-right: 40px; }
}

/* ---------- 11 PRODUCT CARDS ---------- */
.cards { display: grid; gap: var(--space-5); }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-card); }

.card__media { position: relative; }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.card__badge {
  position: absolute;
  right: var(--space-4);
  bottom: calc(var(--space-4) * -1);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--surface-0);
  color: var(--brand-700);
  box-shadow: var(--shadow-card);
}
.card__badge .icon { width: 26px; height: 26px; }

.card__body { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2); padding: var(--space-6) var(--space-5) var(--space-5); }
.card__title { font-size: var(--fs-h3); }
.card__desc { font-size: var(--fs-sm); }
.card__body .link-arrow { margin-top: var(--space-3); }

@media (min-width: 768px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); } }

/* ---------- 12 STEPS ---------- */
.steps__list { display: grid; gap: var(--space-6); counter-reset: step; }

.step { position: relative; padding-left: 76px; }
.step__num {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background-color: var(--brand-900);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 64px;
  bottom: calc(var(--space-6) * -1);
  width: 2px;
  background-image: linear-gradient(180deg, var(--accent-400), var(--line));
}
.step__title { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
.step__desc { font-size: var(--fs-sm); }

@media (min-width: 900px) {
  .steps__list { grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
  .step { padding-left: 0; padding-top: 84px; text-align: left; }
  .step__num { left: 0; }
  .step:not(:last-child)::before {
    left: 72px;
    top: 27px;
    right: calc(var(--space-7) * -1);
    bottom: auto;
    width: auto;
    height: 2px;
    background-image: linear-gradient(90deg, var(--accent-400), var(--line));
  }
}

/* ---------- 13 BUSINESS BAND ---------- */
.business {
  padding-block: var(--section-y);
  background-color: var(--brand-900);
  background-image: radial-gradient(120% 100% at 100% 0%, rgba(56, 191, 174, .22) 0%, rgba(11, 59, 54, 0) 60%);
  color: var(--on-dark-muted);
}
.business__inner { display: grid; gap: var(--space-6); }
.business__title { font-size: var(--fs-h2); color: var(--on-dark); }
.business__title-alt { display: block; font-weight: 500; color: var(--gold-300); }
.business__lead { max-width: 44rem; margin-top: var(--space-4); font-size: var(--fs-lead); }
.business__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

@media (min-width: 1024px) {
  .business__inner { grid-template-columns: 1.5fr auto; align-items: center; gap: var(--space-8); }
  .business__actions { justify-content: flex-end; }
}

/* ---------- 14 SLIDER ---------- */
.slider { max-width: 52rem; margin-inline: auto; }
.slider__viewport { overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease);
}
.slide { flex: 0 0 100%; padding-inline: 2px; }

.quote {
  height: 100%;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-900);
}
.quote__text::before { content: "„"; color: var(--gold-500); }
.quote__meta { display: grid; gap: 2px; margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--line); }
.quote__name { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); }
.quote__role { font-size: var(--fs-sm); }

.slider__controls { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-6); }
.slider__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background-color: var(--surface-0);
  color: var(--brand-700);
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.slider__btn:hover { background-color: var(--brand-500); color: var(--on-dark); }

.slider__dots { display: flex; gap: var(--space-2); }
.slider__dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-pill);
  background-color: var(--line);
  transition: width var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.slider__dot[aria-selected="true"] { width: 26px; background-color: var(--brand-500); }

/* ---------- 15 PARTNERS ---------- */
.partners__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.partners__item {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background-color: var(--surface-0);
}
.partners__item img {
  filter: grayscale(1);
  opacity: .62;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.partners__item:hover img { filter: grayscale(0); opacity: 1; }

@media (min-width: 768px) { .partners__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .partners__list { grid-template-columns: repeat(6, 1fr); } }

/* ---------- 16 TEAM ---------- */
.team__list { display: grid; gap: var(--space-6); }

.person {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
  transition: box-shadow var(--dur) var(--ease);
}
.person:hover { box-shadow: var(--shadow-card); }
.person__media { overflow: hidden; border-radius: var(--radius-md); }
.person__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.person__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--surface-50);
  font-size: 4.5rem;
  line-height: 1;
}
.person__name { font-size: var(--fs-h3); }
.person__role { margin-top: 2px; font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; color: var(--brand-500); }
.person__desc { margin-top: var(--space-3); font-size: var(--fs-sm); }
.person__contact { display: grid; gap: var(--space-2); margin-top: var(--space-4); font-size: var(--fs-sm); }
.person__contact li { display: flex; align-items: center; gap: var(--space-2); }
.person__contact .icon { width: 17px; height: 17px; color: var(--brand-500); }
.person__contact a { text-decoration: none; }
.person__contact a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .team__list { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); max-width: 760px; margin-inline: auto; }
  .person { grid-template-columns: 200px 1fr; align-items: center; }
}

/* ---------- 17 FAQ ---------- */
.faq__grid { display: grid; gap: clamp(32px, 5vw, 64px); }

.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item:first-child { border-top: 1px solid var(--line); }
.accordion__heading { font-size: inherit; }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  transition: color var(--dur-fast) var(--ease);
}
.accordion__trigger:hover { color: var(--brand-500); }

.accordion__icon {
  width: 26px;
  height: 26px;
  flex: none;
  padding: 4px;
  border-radius: var(--radius-pill);
  background-color: var(--surface-50);
  fill: none;
  stroke: var(--brand-700);
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
  background-color: rgba(56, 191, 174, .18);
}

.accordion__panel { padding-bottom: var(--space-5); font-size: var(--fs-sm); }
.accordion__panel p { max-width: 60ch; }

@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .faq__head { position: sticky; top: calc(var(--header-h) + var(--space-6)); }
}

/* ---------- 18 CONTACT + FORM ---------- */
.contact__grid { display: grid; gap: clamp(32px, 5vw, 64px); }

.contact__list { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
.contact__list li { display: flex; align-items: flex-start; gap: var(--space-4); }
.contact__list strong { display: block; font-family: var(--font-display); color: var(--ink-900); }
.contact__list a { text-decoration: none; }
.contact__list a:hover { text-decoration: underline; }
.contact__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: var(--radius-md);
  background-color: var(--surface-0);
  border: 1px solid var(--line);
  color: var(--brand-500);
}

.contact__map {
  display: grid;
  place-items: center;
  margin-top: var(--space-6);
  min-height: 220px;
  padding: var(--space-5);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
  text-align: center;
}
.contact__map-text { font-size: var(--fs-sm); }

.form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
  box-shadow: var(--shadow-card);
}
.form__title { font-size: var(--fs-h3); }
.form__intro { margin-top: var(--space-2); font-size: var(--fs-sm); }

.field { margin-top: var(--space-5); }
.field-row { display: grid; gap: 0; }
.field__label {
  display: block;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-900);
}
.field__input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--surface-0);
  color: var(--ink-900);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field__input::placeholder { color: #93A6A3; }
.field__input:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(56, 191, 174, .22);
  outline: none;
}
.field__input--area { resize: vertical; min-height: 120px; }
.field__input--select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brand-700) 50%), linear-gradient(135deg, var(--brand-700) 50%, transparent 50%); background-position: right 20px top 22px, right 14px top 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 44px; }
.field__input[aria-invalid="true"] { border-color: var(--danger-600); background-color: var(--danger-50); }

.field__error {
  margin-top: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--danger-600);
}

.field--check { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3); align-items: start; }
.check__input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand-500); }
.check__label { font-size: var(--fs-sm); }
.field--check .field__error { grid-column: 1 / -1; margin-top: 0; }
.field--check .check__input[aria-invalid="true"] { outline: 2px solid var(--danger-600); outline-offset: 2px; }

.form__note {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  background-color: var(--surface-50);
  font-size: var(--fs-xs);
}
.form button[type="submit"] { margin-top: var(--space-5); }

.form__success {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--success-600);
  border-radius: var(--radius-sm);
  background-color: var(--success-50);
  color: var(--success-600);
  font-size: var(--fs-sm);
  font-weight: 500;
}

@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .field-row .field { margin-top: var(--space-5); }
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---------- 19 FOOTER ---------- */
.footer { background-color: var(--brand-900); color: var(--on-dark-muted); }
.footer__grid { display: grid; gap: var(--space-7); padding-block: var(--section-y) var(--space-8); }

.footer__desc { margin-top: var(--space-4); max-width: 34rem; font-size: var(--fs-sm); }
.footer__social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-pill);
  color: var(--on-dark-muted);
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.footer__social a:hover { background-color: var(--gold-500); color: var(--brand-900); }

.footer__title {
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.footer__list, .footer__contact { display: grid; gap: var(--space-3); font-size: var(--fs-sm); }
.footer a { color: var(--on-dark-muted); text-decoration: none; }
.footer a:hover { color: var(--gold-300); }
.footer__contact { margin-bottom: var(--space-5); }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__bottom-inner { display: grid; gap: var(--space-4); padding-block: var(--space-6); }
.footer__legal { font-size: var(--fs-xs); line-height: 1.7; color: rgba(198, 220, 216, .82); }
.footer__meta { display: grid; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid rgba(255, 255, 255, .1); font-size: var(--fs-xs); }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: var(--space-4); }

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__meta { grid-template-columns: auto 1fr; align-items: center; justify-content: space-between; }
  .footer__legal-links { justify-content: flex-end; }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: var(--space-8); }
}

/* ---------- 20 COOKIE BAR + MODAL ---------- */
.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background-color: var(--brand-900);
  color: var(--on-dark-muted);
  box-shadow: 0 -8px 30px rgba(11, 59, 54, .25);
}
.cookiebar__inner { display: grid; gap: var(--space-4); padding-block: var(--space-4); }
.cookiebar__title { font-size: var(--fs-sm); color: var(--on-dark); }
.cookiebar__text { margin-top: var(--space-1); font-size: var(--fs-xs); }
.cookiebar__text a { color: var(--gold-300); }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

@media (min-width: 768px) {
  .cookiebar__inner { grid-template-columns: 1fr auto; align-items: center; gap: var(--space-6); }
}

.modal { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: var(--gutter); }
.modal__backdrop { position: absolute; inset: 0; background-color: rgba(11, 59, 54, .55); }
.modal__box {
  position: relative;
  width: min(520px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background-color: var(--surface-0);
  box-shadow: var(--shadow-lift);
}
.modal__title { font-size: var(--fs-h3); margin-bottom: var(--space-4); }
.modal__list { display: grid; gap: var(--space-4); }
.modal__list li { padding: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-md); }
.modal__list p { margin-top: var(--space-2); font-size: var(--fs-xs); }
.modal__list .check__label { display: flex; align-items: center; gap: var(--space-3); font-weight: 600; color: var(--ink-900); }
.modal__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: var(--space-3); margin-top: var(--space-5); }
.modal__actions .btn--ghost { border-color: var(--line); color: var(--ink-600); }
.modal__actions .btn--ghost:hover { background-color: var(--surface-50); color: var(--ink-900); }

/* ---------- 21 MOTION ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- 22 HIDDEN ----------
   Several components set `display` on their own class (.modal, .cookiebar,
   .mega, .field--check). Those rules have the same specificity as the
   attribute selector in the reset, so this final block guarantees that the
   `hidden` attribute — which is what JavaScript toggles — always wins. */
[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms;
    animation-iteration-count: 1;
    transition-duration: .001ms;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .card:hover { transform: none; }
}
