/* =============================================
   RB Consulting — styles.css
   Aesthetic: Mollie-inspired dark/light contrast
   Fonts: DM Serif Display + DM Sans
   ============================================= */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, button { font: inherit; }
address { font-style: normal; }

/* ---- TOKENS ---- */
:root {
  --dark:         #0a0a0a;
  --dark-2:       #111111;
  --dark-3:       #1a1a1a;
  --dark-border:  #272727;
  --light:        #fafaf8;
  --light-alt:    #f2f1ee;
  --light-border: #e8e6e0;
  --text-dark:    #0a0a0a;
  --text-light:   #ffffff;
  --muted-dark:   #5a5a5a;
  --muted-light:  #9a9a9a;
  --accent:       #ffffff;
  --accent-dark:  #0a0a0a;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow:       0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
  --container:    1140px;
  --section-py:   100px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---- BASE ---- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}
p { line-height: 1.7; }
em { font-family: var(--font-display); font-style: italic; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- SECTION BASE ---- */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--dark); }
.section--alt   { background: var(--light-alt); }

.section__head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head h2 { margin-bottom: 16px; }
.section__head > p { color: var(--muted-dark); font-size: 1.05rem; }
.section--dark .section__head h2 { color: var(--text-light); }
.section--dark .section__head > p { color: var(--muted-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--muted-light); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--white      { background: #fff; color: var(--dark); border-color: #fff; }
.btn--white:hover { background: #f0f0f0; border-color: #f0f0f0; box-shadow: 0 8px 24px rgba(255,255,255,.15); }

.btn--ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn--dark  { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-3); border-color: var(--dark-3); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); font-size: 0.85rem; padding: 9px 18px; }
.btn--outline-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
}
.logo__mark { display: flex; align-items: center; flex-shrink: 0; }
.logo__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #fff;
}
.logo__thin { font-weight: 300; opacity: 0.7; }

.nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  padding: 7px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}
.lang__btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.4);
  border-radius: 4px;
  padding: 3px 6px;
  transition: color 0.15s ease;
}
.lang__btn:hover { color: rgba(255,255,255,.8); }
.lang__btn.is-active { color: #fff; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 28px 18px;
  border-top: 1px solid var(--dark-border);
  background: var(--dark-2);
  gap: 2px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 10px 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { color: #fff; }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 20%, black 30%, transparent 80%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4a7aff, transparent);
  top: -100px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7, transparent);
  bottom: 0; left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 80px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  width: fit-content;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}
.hero__title {
  color: #fff;
  margin-bottom: 24px;
}
.hero__title em {
  background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual — floating cards */
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__card-stack {
  position: relative;
  width: 280px;
  height: 280px;
}
.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero__card-icon { color: rgba(255,255,255,.6); flex-shrink: 0; }
.hero__card-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  margin-left: auto;
  flex-shrink: 0;
}
.hero__card-dot--green { background: #4ade80; box-shadow: 0 0 8px #4ade8066; }
.hero__card-dot--blue  { background: #60a5fa; box-shadow: 0 0 8px #60a5fa66; }

.hero__card--1 { top: 10px;  left: 0;   animation: floatA 5s ease-in-out infinite; }
.hero__card--2 { top: 110px; right: 0;  animation: floatB 5s ease-in-out infinite 0.7s; }
.hero__card--3 { bottom: 20px; left: 20px; animation: floatC 5s ease-in-out infinite 1.4s; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Hero trust bar */
.hero__trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
  justify-content: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}
.trust__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--light);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #d8d6d0;
}
.svc-card__icon { margin-bottom: 4px; }
.svc-card h3 { color: var(--text-dark); }
.svc-card > p { color: var(--muted-dark); font-size: 0.93rem; line-height: 1.7; flex: 1; }
.svc-card__outcome {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-dark);
  padding: 10px 14px;
  background: var(--light-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--dark);
}

/* ---- PROCESS ---- */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}
.process__step {
  display: grid;
  grid-template-columns: 56px 24px 1fr;
  gap: 0 20px;
  padding-bottom: 48px;
}
.process__step:last-child { padding-bottom: 0; }
.process__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,.15);
  line-height: 1;
  padding-top: 2px;
  text-align: right;
}
.process__line {
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,.15), rgba(255,255,255,.05));
  margin: 4px auto 0;
  position: relative;
}
.process__line::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 1.5px solid var(--dark);
}
.process__line--last { background: transparent; }
.process__body { padding-top: 2px; }
.process__body h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.process__body p { color: rgba(255,255,255,.5); font-size: 0.93rem; line-height: 1.7; }

/* ---- STABILITY ---- */
.stability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stability__text h2 { margin-bottom: 24px; color: var(--text-dark); }
.stability__text p { color: var(--muted-dark); margin-bottom: 14px; line-height: 1.75; }
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text-dark);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.is-visible .checklist li { opacity: 1; transform: translateX(0); }
.is-visible .checklist li:nth-child(1) { transition-delay: 0.05s; }
.is-visible .checklist li:nth-child(2) { transition-delay: 0.12s; }
.is-visible .checklist li:nth-child(3) { transition-delay: 0.19s; }
.is-visible .checklist li:nth-child(4) { transition-delay: 0.26s; }
.is-visible .checklist li:nth-child(5) { transition-delay: 0.33s; }
.is-visible .checklist li:nth-child(6) { transition-delay: 0.40s; }
.checklist li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M5 10.5l3.2 3.2L15 7'/%3E%3C/svg%3E") center/contain;
}

/* ---- CASES ---- */
.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.case-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.case-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.case-card__metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.case-card__metric span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.case-card__metric small {
  font-size: 0.72rem;
  color: var(--muted-light);
  white-space: nowrap;
}
.case-card h3 { color: #fff; font-size: 1.1rem; }
.case-card > p { color: rgba(255,255,255,.5); font-size: 0.92rem; line-height: 1.7; }

/* ---- AUDIENCE ---- */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience__card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.audience__card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: #ccc;
}
.audience__icon { flex-shrink: 0; }

/* ---- ABOUT ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__left h2 { color: #fff; margin-top: 8px; }
.about__right p { color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 16px; }
.about__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.about__pills span {
  padding: 7px 16px;
  border: 1px solid var(--dark-border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.about__pills span:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }

/* ---- SCOPE ---- */
.scope {
  max-width: 720px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scope li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--muted-dark);
  line-height: 1.55;
  transition: border-color 0.15s ease;
}
.scope li:hover { border-color: #ccc; }
.scope li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--dark);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.5l2.8 2.8L13 6.5' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.scope__note {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 20px;
  background: var(--light-alt);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--muted-dark);
  text-align: center;
}

/* ---- CONTACT ---- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__left h2 { color: #fff; margin: 8px 0 20px; }
.contact__left > p { color: rgba(255,255,255,.5); font-size: 1rem; line-height: 1.7; }
.contact__details { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; flex-direction: column; gap: 6px; }
.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.contact__detail address {
  font-size: 0.93rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.email-canvas {
  display: block;
  max-width: 100%;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

/* Form */
.form {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: flex; flex-direction: column; gap: 7px; }
.form__row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.02em;
}
.form__row input,
.form__row textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.form__row input::placeholder,
.form__row textarea::placeholder { color: rgba(255,255,255,.2); }
.form__row input:focus,
.form__row textarea:focus {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.form__note {
  font-size: 0.82rem;
  text-align: center;
  min-height: 20px;
  transition: color 0.2s;
}
.form__note--success { color: #4ade80; }
.form__note--error   { color: #f87171; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer__nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer__nav a {
  padding: 7px 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.35);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.footer__nav a:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.05); }
.footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom-left { display: flex; flex-direction: column; gap: 4px; max-width: 500px; }
.footer__bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,.25); margin: 0; }
.footer__address { color: rgba(255,255,255,.2) !important; font-size: 0.76rem !important; }
.footer__nip { color: rgba(255,255,255,.35) !important; font-weight: 600 !important; font-size: 0.8rem !important; }
.footer__copy { color: rgba(255,255,255,.2) !important; font-size: 0.76rem !important; white-space: nowrap; }

/* ====================================
   ANIMATIONS
   ==================================== */

/* Hero elements: stagger in on load */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__tag    { animation-delay: 0.1s; }
.hero__title  { animation-delay: 0.22s; }
.hero__sub    { animation-delay: 0.34s; }
.hero__ctas   { animation-delay: 0.46s; }
.hero__visual { animation-delay: 0.36s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 0.50s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .reveal-stagger > *, .checklist li {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .stability { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .cases { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav { display: none; }
  .header__cta { display: none; }
  .menu-toggle { display: flex; }
  .header__right { gap: 10px; }
  .hero__inner { padding-top: 64px; padding-bottom: 56px; }
  .services { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr 1fr; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom-right { align-items: flex-start; }
  .trust__row { justify-content: flex-start; gap: 10px 24px; }
  .process__step { grid-template-columns: 40px 20px 1fr; }
}

@media (max-width: 520px) {
  :root { --section-py: 52px; }
  .container { padding: 0 20px; }
  .audience { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .form { padding: 24px; }
  .svc-card, .case-card { padding: 26px; }
  .trust__row { flex-direction: column; gap: 10px; }
}

.footer__legal-links {
    color: rgba(255, 255, 255, .2) !important;
}
