/* ============================================
   VELARQUE — Global Design System
   Shared across all pages
   ============================================ */

/* --- VARIABLES --- */
:root {
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Playfair Display', 'Georgia', serif;

  --black: #0a0a0a;
  --dark: #141414;
  --gray-900: #1c1c1c;
  --gray-800: #2a2a2a;
  --gray-700: #3d3d3d;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #ddd;
  --gray-100: #eee;
  --gray-50: #f7f7f7;
  --white: #fff;
  --accent: #1a7efb;
  --accent-light: #e8f2ff;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 400; }
em { font-family: var(--serif); font-style: italic; }
::selection { background: var(--accent); color: var(--white); }

/* --- CONTAINER --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

/* --- CUSTOM CURSOR --- */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  opacity: 0.4;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), opacity 0.3s;
}
.cursor-follower.hovering {
  width: 64px;
  height: 64px;
  opacity: 0.2;
}
@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* --- LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__inner { text-align: center; }
.loader__text {
  display: block;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--white);
  text-transform: lowercase;
  margin-bottom: 32px;
}
.loader__bar {
  width: 200px;
  height: 1px;
  background: var(--gray-800);
  position: relative;
  overflow: hidden;
}
.loader__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--white);
  animation: loaderProgress 1.8s var(--ease) forwards;
}
@keyframes loaderProgress {
  to { width: 100%; }
}

/* --- BUTTONS --- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.btn-main:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-main span, .btn-main svg { position: relative; z-index: 1; }
.btn-main--full { width: 100%; justify-content: center; }
.btn-main--outline {
  background: transparent;
  border: 1px solid var(--gray-200);
  color: var(--black);
}
.btn-main--outline:hover { color: var(--white); }

/* --- REVEAL ANIMATIONS --- */
.reveal-text {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SECTION HEADER (shared pattern) --- */
.section-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -1px;
}
.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 640px;
  margin-top: 24px;
}

/* ============================
   NAV (multi-page)
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
  mix-blend-mode: difference;
}
.nav--scrolled {
  mix-blend-mode: normal;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav--scrolled .nav__logo,
.nav--scrolled .nav__links a,
.nav--scrolled .nav__cta { color: var(--black); }
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--white);
  transition: color 0.5s;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 48px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color 0.5s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav--scrolled .nav__links a.active { color: var(--accent); }
.nav__cta {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.nav--scrolled .nav__cta {
  border-color: var(--gray-200);
}
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease);
}
.nav--scrolled .nav__toggle span { background: var(--black); }
.nav__toggle--open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================
   HERO (full-height, homepage + landing)
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,126,251,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,126,251,0.08) 0%, transparent 50%);
}
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 2s var(--ease) forwards;
}
.hero__line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gray-500);
}
.hero__eyebrow span:last-child {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero__title {
  margin-bottom: 48px;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__word {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  transform: translateY(100%);
  animation: wordReveal 1.2s 2.2s var(--ease) forwards;
}
.hero__title-line:nth-child(2) .hero__word {
  animation-delay: 2.4s;
}
.hero__title-line:nth-child(3) .hero__word {
  animation-delay: 2.6s;
}
.hero__title em {
  font-family: var(--serif);
  color: var(--accent);
}
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 1s 2.8s var(--ease) forwards;
}
.hero__desc {
  max-width: 420px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-400);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: all 0.5s var(--ease);
}
.hero__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.hero__cta-arrow {
  display: flex;
  transition: transform 0.4s var(--ease);
}
.hero__cta:hover .hero__cta-arrow { transform: translate(4px, -4px); }

.hero__scroll {
  position: absolute;
  right: clamp(24px, 4vw, 80px);
  bottom: clamp(60px, 8vh, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s 3.2s var(--ease) forwards;
}
.hero__scroll span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--gray-700);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; }
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  50.01% { top: -100%; }
  100% { top: 100%; }
}

/* ============================
   PAGE HERO (internal pages: shorter)
   ============================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  padding-top: 160px;
  overflow: hidden;
}
.page-hero--compact {
  min-height: auto;
  padding: 180px 0 80px;
}
.page-hero .hero__bg,
.page-hero .hero__gradient,
.page-hero .hero__container { /* inherit from .hero */ }
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 1.6s var(--ease) forwards;
}
.page-hero__eyebrow .hero__line { width: 48px; height: 1px; background: var(--gray-500); }
.page-hero__eyebrow span:last-child {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
}
.page-hero__title {
  font-family: var(--sans);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 1.8s var(--ease) forwards;
}
.page-hero__title em {
  font-family: var(--serif);
  color: var(--accent);
}
.page-hero__desc {
  max-width: 540px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 2s var(--ease) forwards;
}
.page-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 2.2s var(--ease) forwards;
}
.page-hero__cta-secondary {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  transition: color 0.3s;
}
.page-hero__cta-secondary:hover { color: var(--white); }

/* ============================
   MARQUEE
   ============================ */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.marquee { position: relative; }
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee__item {
  font-family: var(--sans);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0 12px;
}
.marquee__sep {
  padding: 0 24px;
  color: var(--gray-300);
  font-weight: 200;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   STATS
   ============================ */
.stats {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--black);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--sans);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 200;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================
   PROCESS
   ============================ */
.process {
  padding: clamp(100px, 12vh, 180px) 0;
}
.process__header {
  margin-bottom: 80px;
}
.process__steps {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 140px 1fr 300px;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.process-step__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-step__num {
  font-size: 48px;
  font-weight: 200;
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -2px;
}
.process-step__time {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.process-step__title {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}
.process-step__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 420px;
}
.process-step__visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.process-step__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.process-step:hover .process-step__visual img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* ============================
   VALUE BLOCKS (shared: why-velarque + about values)
   ============================ */
.value-blocks__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.value-block {
  padding: 48px 40px;
  border-top: 1px solid var(--gray-200);
  transition: background 0.5s var(--ease);
}
.value-block:hover { background: var(--gray-50); }
.value-block__num {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.value-block__title {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}
.value-block__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ============================
   TESTIMONIAL
   ============================ */
.testimonial-section {
  padding: clamp(100px, 14vh, 200px) 0;
}
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__marks {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gray-200);
  margin-bottom: 24px;
}
.testimonial__text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  font-style: italic;
  margin-bottom: 40px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-align: left;
}
.testimonial__role {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  text-align: left;
}

/* ============================
   FAQ
   ============================ */
.faq {
  padding: clamp(100px, 12vh, 180px) 0;
}
.faq__header {
  margin-bottom: 64px;
}
.faq__list {
  max-width: 900px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.4s var(--ease);
}
.faq-item__icon::before {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
}
.faq-item__icon::after {
  width: 1px;
  height: 20px;
  top: 0;
  left: 50%;
}
.faq-item[open] .faq-item__icon::after {
  transform: rotate(90deg);
}
.faq-item__a {
  padding-bottom: 28px;
}
.faq-item__a p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 700px;
}

/* ============================
   CONTACT FORM
   ============================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form__group {
  position: relative;
  margin-bottom: 32px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.4s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form__group select {
  cursor: pointer;
}
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-bottom-color: var(--black);
}
.contact-form__group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-400);
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.contact-form__group input:focus ~ label,
.contact-form__group input:not(:placeholder-shown) ~ label,
.contact-form__group textarea:focus ~ label,
.contact-form__group textarea:not(:placeholder-shown) ~ label,
.contact-form__group select:focus ~ label,
.contact-form__group select:not([value=""]) ~ label,
.contact-form__group select.has-value ~ label {
  top: -8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.contact-form__group textarea { resize: vertical; min-height: 80px; }
.contact-form__group input.error,
.contact-form__group select.error,
.contact-form__group textarea.error {
  border-bottom-color: #e53935;
}
.contact-form__error {
  display: block;
  font-size: 12px;
  color: #e53935;
  margin-top: 6px;
}
.contact-form .btn-main { margin-top: 16px; }
.contact-form__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 16px;
}
.contact-form__legal {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-top: 8px;
}
.contact-form__legal a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================
   CTA FINAL (shared dark CTA)
   ============================ */
.cta-final {
  padding: clamp(100px, 14vh, 200px) 0;
  background: var(--black);
  text-align: center;
}
.cta-final__title {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -1px;
  max-width: 700px;
  margin: 0 auto clamp(20px, 3vh, 32px);
}
.cta-final__title em {
  font-family: var(--serif);
  color: var(--accent);
}
.cta-final__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-final .btn-main {
  background: var(--white);
  color: var(--black);
}
.cta-final .btn-main::before { background: var(--accent); }
.cta-final .btn-main:hover { color: var(--white); }
.cta-final__note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 24px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 80px 0 0;
  background: var(--black);
  color: var(--gray-500);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
  color: var(--white);
}
.footer__logo span { color: var(--accent); }
.footer__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 260px;
}
.footer__links {
  display: flex;
  gap: 80px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-500);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 300;
}
.footer__legal {
  display: flex;
  gap: 32px;
}
.footer__legal a { transition: color 0.3s; }
.footer__legal a:hover { color: var(--white); }

/* ============================
   RESPONSIVE — GLOBAL
   ============================ */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-step { grid-template-columns: 100px 1fr; gap: 32px; }
  .process-step__visual { display: none; }
  .value-blocks__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav__links--open a {
    font-size: 24px;
    color: var(--white);
  }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }

  .hero__word { font-size: 40px; letter-spacing: -1px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }

  .page-hero__title { font-size: clamp(32px, 8vw, 48px); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .process-step__left { flex-direction: row; align-items: baseline; gap: 16px; }
  .process-step__num { font-size: 32px; }

  .section-title { font-size: clamp(28px, 7vw, 40px); }

  .footer__top { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}
