/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --white:   #ffffff;
  --black:   #111111;
  --green:   #f0f0f0;
  --red:     #D53E0F;
  --red-dk:  #b83409;
  --gray:    #6b7280;
  --gray-lt: #f4f4f4;
  --border:  #e5e7eb;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);

  --nav-h: 68px;
  --max-w: 1160px;
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }

/* ─────────────────────────────────────────
   AMBIENT BACKGROUND
───────────────────────────────────────── */
.ambient-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.ambient-blob {
  position: absolute; border-radius: 50%; filter: blur(90px);
}
.ambient-blob--warm {
  width: 700px; height: 700px; opacity: .07;
  background: radial-gradient(circle, #f5c6b0 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: ambWarm 28s ease-in-out infinite;
}
.ambient-blob--cool {
  width: 500px; height: 500px; opacity: .05;
  background: radial-gradient(circle, #e8d5c4 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation: ambCool 35s ease-in-out infinite;
}
.ambient-blob--red {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(213,62,15,.18) 0%, transparent 65%);
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  animation: ambRed 45s ease-in-out infinite;
}
@keyframes ambWarm {
  0%,100% { transform: translate(0,0) scale(1); }
  30%     { transform: translate(180px,120px) scale(1.12); }
  65%     { transform: translate(-80px,220px) scale(.9); }
}
@keyframes ambCool {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-160px,-100px) scale(1.15); }
  70%     { transform: translate(120px,-180px) scale(.92); }
}
@keyframes ambRed {
  0%,100% { opacity: 0; transform: translate(-50%,-50%) scale(1); }
  15%     { opacity: 1; }
  35%     { opacity: .6; transform: translate(-35%,-65%) scale(1.25); }
  55%     { opacity: .9; transform: translate(-65%,-38%) scale(.85); }
  75%     { opacity: .3; transform: translate(-45%,-55%) scale(1.1); }
  90%     { opacity: 0; }
}
img, iframe, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─────────────────────────────────────────
   UTILITIES
───────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; border-radius: 100px;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--red    { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dk); box-shadow: 0 8px 24px rgba(213,62,15,.35); }
.btn--white  { background: var(--white); color: var(--black); }
.btn--white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn--ghost  { background: transparent; color: var(--black); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--black); }

.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--lg  { padding: 18px 36px; font-size: 1rem; }

.label {
  display: block; font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
  text-align: center;
}
.label--light { color: var(--green); }

.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 48px;
  text-align: center;
}
.section-title--light { color: var(--white); }

.badge {
  display: inline-block; background: #FFDED8; color: var(--black);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   LANGUAGE MODAL
───────────────────────────────────────── */
.lang-modal {
  position: fixed; inset: 0; background: rgba(17,17,17,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; backdrop-filter: blur(6px);
  transition: opacity .3s;
}
.lang-modal.hidden { opacity: 0; pointer-events: none; }

.lang-modal__card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center; max-width: 360px; width: 90%;
  box-shadow: var(--shadow-lg);
}
.lang-modal__logo {
  margin-bottom: 24px;
}
.lang-modal__logo img { height: 56px; width: auto; }
.lang-modal__hint { font-size: .9rem; color: var(--gray); margin-bottom: 28px; }
.lang-modal__btns { display: flex; gap: 12px; }
.lang-modal__btn {
  flex: 1; padding: 14px; border-radius: var(--radius); border: 2px solid var(--border);
  font-size: 1rem; font-weight: 600; background: var(--white); transition: all .18s;
}
.lang-modal__btn:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--white); border-radius: var(--radius);
  padding: 20px 24px; max-width: 600px; width: calc(100% - 48px);
  display: flex; gap: 24px; align-items: center; z-index: 500;
  box-shadow: var(--shadow-lg);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { font-size: .875rem; line-height: 1.5; flex: 1; }
.cookie-banner p a { color: var(--green); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   PILL NAV — horizontal, always open
───────────────────────────────────────── */
/* ── PILL NAV ── */
.pill-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200; width: calc(100% - 40px); max-width: 860px;
  height: 56px; /* stała wysokość — outer nigdy nie zmienia rozmiarów */
  pointer-events: none;
}

/* Inner: absolutnie wyśrodkowany — animuje width od/do środka */
.pill-nav__inner {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(20,20,20,.96); backdrop-filter: blur(16px);
  border-radius: 100px; padding: 10px 8px;
  display: flex; align-items: center;
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
  pointer-events: auto;
  transition: width .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1);
}
.pill-nav--collapsed .pill-nav__inner {
  width: 60px; padding: 12px;
}

/* Logo: absolutnie wyśrodkowane na ZEWNĘTRZNYM pill-nav (stała szerokość) */
.pill-nav__logo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center;
  pointer-events: auto; z-index: 1;
}
.pill-nav__logo img { height: 32px; width: auto; }

/* Linki */
.pill-nav__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2px; flex: 1;
  transition: opacity .2s ease, visibility .2s ease;
}
.pill-nav__links--right { justify-content: flex-end; }
.pill-nav__links a {
  display: block; padding: 8px 14px; border-radius: 100px;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,.55); white-space: nowrap;
  transition: color .18s, background .18s;
}
.pill-nav__links a:hover { color: var(--white); background: rgba(255,255,255,.09); }

/* Zwijanie — linki znikają, logo NIE porusza się (jest na zewnętrznym fixed divie) */
.pill-nav--collapsed .pill-nav__links {
  opacity: 0; visibility: hidden; pointer-events: none;
}

/* Fixed language switch (top-right corner) */
.lang-switch-fixed {
  position: fixed; top: 14px; right: 16px; z-index: 300;
  background: rgba(20,20,20,.55); backdrop-filter: blur(10px);
  color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 6px 13px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  cursor: pointer; transition: all .2s; line-height: 1;
}
.lang-switch-fixed:hover { background: rgba(20,20,20,.9); color: var(--white); border-color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-top: 140px; padding-bottom: 80px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(213,62,15,.11) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(213,62,15,.06) 0%, transparent 65%),
    linear-gradient(160deg, #fff 0%, #fff8f6 55%, #fff2ee 100%);
}

.hero__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero__content { max-width: 780px; display: flex; flex-direction: column; align-items: center; }

.hero__headline {
  font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.12; margin-bottom: 28px;
}
/* Script accent — "zyskać czas" */
.hs {
  font-family: 'Caveat', cursive;
  color: var(--red); font-size: 1.22em;
  font-weight: 700; font-style: normal;
  display: inline-block;
}
.hero__sub { font-size: 1.1rem; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }
.hero__note { font-size: .8rem; color: var(--gray); margin-top: 16px; letter-spacing: .04em; }


/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stats { background: var(--black); padding: 60px 0; }
.stats__grid { display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 32px 48px; }
.stat-item__value { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--green); }
.stat-item__label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.4; }

/* ─────────────────────────────────────────
   WHY ME
───────────────────────────────────────── */
.why { padding: 100px 0; background: var(--white); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why__card {
  background: #e6e6e6; border-radius: var(--radius-lg); padding: 36px 28px;
  transition: transform .25s, box-shadow .25s;
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why__icon { font-size: 2rem; margin-bottom: 20px; }
.why__card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.why__card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ─────────────────────────────────────────
   BEFORE / AFTER
───────────────────────────────────────── */
.ba { padding: 100px 0; background: #f5f5f5; }
.ba__sub {
  text-align: center; color: var(--gray); font-size: 1rem;
  margin-top: -28px; margin-bottom: 48px;
}

.ba__grid {
  display: flex; gap: 20px; justify-content: center; align-items: flex-start;
}

/* Karty */
.ba__card {
  background: var(--white); border-radius: 20px;
  padding: 18px 18px 22px;
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  display: flex; flex-direction: column; gap: 16px;
  flex: 0 0 auto; width: clamp(220px, 28vw, 340px);
}
.ba__card--after {
  box-shadow: 0 2px 32px rgba(213,62,15,.12);
}

/* Header karty */
.ba__card-header {
  display: flex; align-items: center; gap: 10px;
}
.ba__card-icon { font-size: 1.4rem; line-height: 1; }
.ba__card-icon-img { width: 28px; height: 28px; object-fit: contain; display: block; }
.ba__card-label {
  font-weight: 800; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--black);
}
.ba__card--after .ba__card-label { color: var(--red); }

/* Video */
.ba__video-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  background: var(--black);
}
.ba__video-wrap .video-poster-bg { border-radius: 12px; }
.ba__video-wrap--portrait { aspect-ratio: 9/16; }
.ba__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Lista */
.ba__list { display: flex; flex-direction: column; gap: 9px; }
.ba__list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .875rem; line-height: 1.5; color: var(--black);
}
.ba__list li::before {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; margin-top: 2px;
}
.ba__list--cons li { color: var(--gray); }
.ba__list--cons li::before { content: '✕'; background: rgba(213,62,15,.1); color: var(--red); }
.ba__list--pros li { font-weight: 600; }
.ba__list--pros li::before { content: '✓'; background: rgba(17,17,17,.08); color: var(--black); }

/* ─────────────────────────────────────────
   PORTFOLIO / CAROUSEL
───────────────────────────────────────── */
.portfolio { padding: 100px 0; background: var(--white); }

/* Tab switcher */
.portfolio__tabs {
  display: inline-flex; background: #f0f0f0; border-radius: 100px;
  padding: 4px; gap: 2px; margin-bottom: 36px;
}
.portfolio__tab {
  padding: 10px 28px; border-radius: 100px; border: none;
  font-size: .875rem; font-weight: 700; cursor: pointer;
  background: transparent; color: #888;
  transition: background .25s, color .25s, box-shadow .25s;
}
.portfolio__tab--active {
  background: var(--red); color: #fff;
  box-shadow: 0 2px 12px rgba(213,62,15,.35);
}

/* Longform: pełna szerokość viewportu, proporcje 16:9 — bez czarnych kresek */
.carousel__slide--longform-full {
  width: 100%; flex-shrink: 0;
  aspect-ratio: 16/9 !important;
  height: auto !important;      /* nadpisuje --slide-h z bazowej klasy */
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.carousel__slide--longform-full .carousel__video-wrap {
  flex: 1; height: 100%;
}

.carousel { position: relative; display: flex; align-items: center; gap: 16px; }
.carousel__viewport { overflow: hidden; flex: 1; position: relative; }

/* Fade na krawędziach — czysty gradient bez blur */
.carousel__viewport::before,
.carousel__viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px;
  z-index: 4; pointer-events: none;
}
.carousel__viewport::before {
  left: 0;
  background: linear-gradient(to right,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,.75) 30%,
    rgba(255,255,255,.35) 60%,
    rgba(255,255,255,.08) 80%,
    transparent           100%);
}
.carousel__viewport::after {
  right: 0;
  background: linear-gradient(to left,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,.75) 30%,
    rgba(255,255,255,.35) 60%,
    rgba(255,255,255,.08) 80%,
    transparent           100%);
}
/* Strzałki schowane — karuzele używają auto-scroll */
.carousel__arrow { display: none; }
.carousel__track {
  display: flex; gap: 20px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  align-items: flex-start;
}

:root {
  --slide-h: 420px;
  --slide-portrait-w: calc(var(--slide-h) * 9 / 16); /* ~236px */
  --slide-landscape-w: calc(var(--slide-portrait-w) * 2 + 20px); /* ~492px */
}

.carousel__slide {
  flex-shrink: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black); box-shadow: var(--shadow);
  height: var(--slide-h); display: flex; flex-direction: column;
}
/* Portrait (9:16) */
.carousel__slide--portrait  { width: var(--slide-portrait-w); }
/* Landscape (16:9) — same height, double width */
.carousel__slide--landscape { width: var(--slide-landscape-w); }

.carousel__video-wrap { position: relative; flex: 1; background: #000; }
.carousel__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Poster — pokazuje thumbnail dopóki video nie ruszy */
.video-poster-bg {
  position: absolute; inset: 0; z-index: 3;
  background-size: cover; background-position: center;
  transition: opacity .7s ease;
  pointer-events: none;
}
.carousel__slide-title {
  padding: 12px 16px; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7);
  background: var(--black);
}

/* Mute toggle button on autoplay videos */
.video-mute-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: white; font-size: .95rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .18s, transform .18s, opacity .2s;
  opacity: 0;
}
.carousel__video-wrap:hover .video-mute-btn,
.ba__video-wrap:hover .video-mute-btn { opacity: 1; }
.video-mute-btn:hover { background: rgba(0,0,0,.85); transform: scale(1.1); }

/* Click-to-play poster (testimonials) */
.video-poster {
  position: absolute; inset: 0; cursor: pointer;
  background: #000; overflow: hidden;
}
.video-poster img {
  width: 100%; height: 100%; object-fit: cover; opacity: .85;
  transition: opacity .25s;
}
.video-poster:hover img { opacity: .65; }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
}
.video-play-btn span {
  width: 56px; height: 56px; background: rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--black); padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .2s, background .2s;
}
.video-poster:hover .video-play-btn span { transform: scale(1.1); background: var(--white); }

.carousel__arrow {
  display: none !important; /* zastąpione przez auto-scroll */
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); color: var(--white); font-size: 1.1rem;
  align-items: center; justify-content: center;
  transition: background .18s, transform .18s;
  box-shadow: var(--shadow);
}
.carousel__arrow:hover { background: var(--red); transform: scale(1.08); }
.carousel__arrow:disabled { opacity: .3; cursor: default; transform: none; }

.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  border: none; transition: all .25s;
}
.carousel__dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process { padding: 100px 0; background: var(--gray-lt); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }

.process__steps::before {
  content: ''; position: absolute; top: 28px; left: 80px; right: 80px; height: 2px;
  background: linear-gradient(to right, #f7c0b0, var(--red));
  z-index: 0;
}

.process__step {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  position: relative; z-index: 1; box-shadow: var(--shadow);
  transition: transform .25s;
}
.process__step:hover { transform: translateY(-4px); }

.process__num {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--red); line-height: 1; opacity: .7;
}
.process__body h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.process__body p  { font-size: .875rem; color: var(--gray); line-height: 1.65; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi { padding: 100px 0; background: var(--white); }

/* Carousel slide wrapper */
.testi__slide {
  flex-shrink: 0; width: 320px;
}

.testi__card {
  background: var(--gray-lt); border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px; height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.testi__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Testimonial video */
.testi__video-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--black); cursor: pointer;
}
.testi__video-wrap--portrait { aspect-ratio: 9/16; max-height: 260px; }
.testi__video-wrap--landscape { aspect-ratio: 16/9; }
.testi__video-wrap--ig { aspect-ratio: 9/16; max-height: 260px; }
.testi__video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.testi__stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }

.testi__text { font-size: .95rem; line-height: 1.7; color: var(--black); flex: 1; }

/* Clamped (long) text — shows ~3 lines with fade, expands on card hover */
.testi__text--clamped {
  max-height: 4.9em; /* ~3 lines × 1.7 line-height */
  overflow: hidden;
  position: relative;
  flex: none;
  transition: max-height .55s cubic-bezier(.4,0,.2,1);
}
.testi__text--clamped::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.2em;
  background: linear-gradient(transparent, var(--gray-lt));
  pointer-events: none;
  transition: opacity .4s ease;
}
.testi__card:hover .testi__text--clamped {
  max-height: 30em;
}
.testi__card:hover .testi__text--clamped::after {
  opacity: 0;
}
.testi__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi__avatar-wrap { flex-shrink: 0; position: relative; width: 42px; height: 42px; }
.testi__avatar-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  display: block;
}
.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .95rem; flex-shrink: 0;
}
.testi__name { font-weight: 600; font-size: .9rem; }
.testi__ig { font-size: .78rem; color: var(--red); transition: opacity .18s; }
.testi__ig:hover { opacity: .7; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--gray-lt); }
.faq__inner { display: flex; flex-direction: column; max-width: 760px; margin-inline: auto; }
.faq__head { margin-bottom: 36px; }
.faq__head .section-title { margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-weight: 600; font-size: .95rem; text-align: left;
  transition: color .18s;
}
.faq__q:hover { color: var(--red); }
.faq__icon { font-size: 1.3rem; line-height: 1; color: var(--red); transition: transform .3s; flex-shrink: 0; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq__a-inner { padding: 0 24px 20px; font-size: .9rem; color: var(--gray); line-height: 1.7; }
.faq__item.open .faq__a { max-height: 300px; }

/* ─────────────────────────────────────────
   CONTACT / CTA
───────────────────────────────────────── */
.contact {
  padding: 120px 0; background: var(--black);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; top: -40%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,254,205,.06) 0%, transparent 70%);
}
.contact::after {
  content: ''; position: absolute; bottom: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(213,62,15,.12) 0%, transparent 70%);
}
.contact__inner { text-align: center; position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.contact__sub { font-size: 1.05rem; color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.65; }
.contact__note { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: 18px; letter-spacing: .04em; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { padding: 48px 0; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.footer__logo { display: flex; align-items: center; }
.footer__logo img { height: 36px; width: auto; }
.footer__links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .18s; }
.footer__links a:hover { color: var(--white); }
.footer__ig { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6) !important; }
.footer__ig:hover { color: var(--white) !important; }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .testi__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pill-nav { width: calc(100% - 24px); top: 10px; }
  .pill-nav__links--left  { display: none; }
  .pill-nav__links--right { display: none; }
  .pill-nav__logo { padding: 0 8px; }
  .pill-nav__logo img { height: 26px; }

  .hero__content { max-width: 100%; }
  .ba__grid { grid-template-columns: 1fr; }

  :root { --slide-h: 340px; }

  .footer__inner { gap: 16px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 560px) {
  :root { --slide-h: 280px; }
}

@media (max-width: 560px) {
  .section-title { font-size: 1.75rem; }
  .why__grid { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__headline { font-size: 2.2rem; }
  .lang-modal__btns { flex-direction: column; }
}
