/* =====================================================
   WE FILM — style.css
   ===================================================== */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
address { font-style: normal; }

/* Skip link — hidden until focused (accessibility + SEO) */
.skip-link {
  position: absolute;
  top: -56px;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--red, #E8232A);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- VARIABLES ---- */
:root {
  --black:      #0C0C0C;
  --off-black:  #141412;
  --dark:       #1c1c1a;
  --off-white:  #F5F3EE;
  --white:      #FFFFFF;
  --red:        #E8232A;
  --red-dark:   #C01C22;
  --gray-light: #ECEAE4;
  --gray-mid:   #999790;
  --gray-dark:  #3A3935;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h:   72px;
  --max-w:   1400px;
  --pad:     clamp(24px, 5vw, 80px);

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- UTILITY CLASSES ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
}
.section-label--dim { color: rgba(255,255,255,0.35); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.22s var(--ease-out),
              border-color 0.22s,
              transform 0.22s var(--ease-out),
              color 0.22s;
  white-space: nowrap;
  line-height: 1;
}
/* SVG icon inside buttons */
.btn .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
  display: block;
}
.btn:hover .icon { transform: translateX(4px); }

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: var(--dark); transform: translateY(-2px); }

.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn--white { background: #fff; color: var(--black); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.22s; }
.reveal:nth-child(4) { transition-delay: 0.30s; }

/* Hero entrance animation */
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease-out) forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(12,12,12,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo { flex-shrink: 0; }
.nav__logo-img { height: 26px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__link:hover { color: #fff; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
}
.nav__cta:hover { background: var(--red-dark); }
.nav__cta:hover .icon { transform: translateX(3px); }

/* ---- Hamburger button ---- */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 6px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav__hamburger:hover { background: rgba(255,255,255,0.05); }

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.25s;
}
.nav__hamburger-label {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  line-height: 1;
  transition: color 0.2s, opacity 0.2s;
  user-select: none;
}
.nav__hamburger:hover .nav__hamburger-label { color: rgba(255,255,255,0.75); }

/* Open state — morphs to × */
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__hamburger.open .nav__hamburger-label { opacity: 0.5; }

/* =====================================================
   OFF-CANVAS OVERLAY MENU
   ===================================================== */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 150;            /* below nav bar (200) so hamburger stays on top */
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}
.nav__overlay.open {
  pointer-events: all;
  visibility: visible;
}

/* Two staggered background panels — red then black (film-cut feel) */
.nav__overlay-panel {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav__overlay-panel--delay {
  background: var(--off-black);
  transition-delay: 0.08s;
}
.nav__overlay.open .nav__overlay-panel { transform: translateY(0); }

/* Subtle grid on top of the dark panel */
.nav__overlay-panel--delay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Red glow top-right */
.nav__overlay-panel--delay::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 55%;
  background: radial-gradient(ellipse at top right, rgba(232,35,42,0.07) 0%, transparent 65%);
}

/* Giant background brand text */
.nav__overlay-deco {
  position: absolute;
  bottom: -0.06em;
  right: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(120px, 32vw, 380px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.82;
  text-align: right;
  color: rgba(255,255,255,0.028);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: 0.5s;
}
.nav__overlay.open .nav__overlay-deco { opacity: 1; transform: translateY(0); }

/* Content wrapper */
.nav__overlay-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + clamp(28px, 5vw, 56px)) var(--pad) clamp(28px, 5vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow label */
.nav__overlay-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: clamp(16px, 3vw, 32px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
  transition-delay: 0.4s;
}
.nav__overlay.open .nav__overlay-eyebrow { opacity: 1; transform: translateY(0); }

/* Links list */
.nav__overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Each nav item */
.nav__overlay-link {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  padding: clamp(12px, 2.2vw, 20px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  overflow: hidden;
  opacity: 0;
  transform: translateX(56px);
  /* open/close: opacity + transform stagger */
  transition: color 0.25s,
              opacity  0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}
.nav__overlay-link:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

/* Stagger delays for open */
.nav__overlay-link:nth-child(1) { transition-delay: 0s,   0.32s, 0.32s; }
.nav__overlay-link:nth-child(2) { transition-delay: 0s,   0.42s, 0.42s; }
.nav__overlay-link:nth-child(3) { transition-delay: 0s,   0.52s, 0.52s; }
.nav__overlay-link:nth-child(4) { transition-delay: 0s,   0.62s, 0.62s; }

.nav__overlay.open .nav__overlay-link { opacity: 1; transform: translateX(0); }

/* Dim siblings on hover */
.nav__overlay-nav:hover .nav__overlay-link       { color: rgba(255,255,255,0.2); }
.nav__overlay-nav .nav__overlay-link:hover        { color: #fff; }

/* Index number */
.nav__overlay-idx {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 28px;
  flex-shrink: 0;
}

/* Big link word */
.nav__overlay-word {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  flex: 1;
  transition: transform 0.3s var(--ease-out);
  color: inherit;
}
.nav__overlay-link:hover .nav__overlay-word { transform: translateX(10px); }
.nav__overlay-link--cta .nav__overlay-word  { color: var(--red); }

/* Diagonal arrow icon (SVG) */
.nav__overlay-arr {
  width:  clamp(22px, 4vw, 40px);
  height: clamp(22px, 4vw, 40px);
  flex-shrink: 0;
  color: rgba(255,255,255,0.15);
  transition: color 0.25s, transform 0.35s var(--ease-out);
  display: block;
  /* rotate from → to ↗ baseline (the SVG is already drawn as ↗) */
}
.nav__overlay-link:hover .nav__overlay-arr {
  color: var(--red);
  transform: translate(6px, -6px) scale(1.1);
}
.nav__overlay-link--cta .nav__overlay-arr { color: rgba(232,35,42,0.35); }

/* Footer strip */
.nav__overlay-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s, transform 0.45s;
  transition-delay: 0.75s;
}
.nav__overlay.open .nav__overlay-foot { opacity: 1; transform: translateY(0); }

.nav__overlay-email {
  font-family: var(--font-display);
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav__overlay-email:hover { color: #fff; }

.nav__overlay-socials { display: flex; gap: 20px; }
.nav__overlay-socials a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.nav__overlay-socials a:hover { color: #fff; }

/* Always hide on desktop */
@media (min-width: 769px) {
  .nav__overlay { display: none !important; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.4) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.4) 80%, transparent 100%);
}
.hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 25%, rgba(232,35,42,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 15% 75%, rgba(232,35,42,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(232,35,42,0.06) 0%, transparent 50%);
}
.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 90% at 50% 50%, transparent 45%, rgba(0,0,0,0.6) 100%);
}

/* Film strip decoration — right edge */
.hero__filmstrip {
  position: absolute;
  top: 0;
  right: clamp(12px, 2.5vw, 36px);
  height: 100%;
  width: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: calc(var(--nav-h) + 24px) 0 80px;
  pointer-events: none;
}
.hero__filmstrip span {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  max-height: 36px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s;
}
.hero__filmstrip span:nth-child(3),
.hero__filmstrip span:nth-child(6) {
  border-color: rgba(232,35,42,0.25);
  background: rgba(232,35,42,0.04);
}

/* Hero layout */
.hero__top {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px,6vw,88px) var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Badge above tagline */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px 7px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  animation-delay: 0.1s;
}
.hero__tagline em { font-style: italic; color: rgba(255,255,255,0.85); }

.hero__cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.hero__cta-block p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  text-align: right;
}

/* ---- Full-bleed brand name ---- */
.hero__brand {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(20px, 3.5vw, 52px) 0 0;
  overflow: hidden;   /* clips horizontal overflow at brand level */
}

/*
 * .hero__name: NO overflow:hidden here — overflow on this element would
 * clip the ™ superscript which renders above the text baseline.
 * Horizontal clipping is handled by .hero__brand above.
 */
.hero__name {
  display: block;
  line-height: 1;
  padding: 0.18em var(--pad) 0;   /* top gap so ™ is never cropped */
}
.hero__name-inner {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: clamp(50px, 11vw, 180px); /* conservative fallback; JS overrides */
  will-change: font-size;
}
.hero__name sup {
  font-size: 0.2em;
  vertical-align: 0.65em;   /* push above cap-height */
  letter-spacing: 0;
  color: var(--red);
  font-weight: 700;
}

/* Red accent line below name */
.hero__name-accent {
  width: calc(100% - 2 * var(--pad));
  margin: 12px var(--pad) 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(232,35,42,0.35) 45%, transparent 100%);
}

/* Hero footer bar */
.hero__footer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 10px;
}
.hero__copy, .hero__scroll {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 130px) 0;
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.about__stat {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 0;
  white-space: nowrap;
}
.about__stat-number {
  font-size: clamp(56px, 8vw, 104px);
  letter-spacing: -0.04em;
  color: var(--black);
}
.about__stat-dash, .about__stat-unit {
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: var(--black);
}
.about__stat-caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.65;
  font-style: italic;
}
.about__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 44px;
}
.about__bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about__avatars { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  background: var(--gray-dark);
  transition: transform 0.2s;
}
.avatar:first-child { margin-left: 0; }
.avatar:hover { transform: translateY(-3px); z-index: 1; }
.avatar--plus { background: var(--red); font-size: 18px; font-weight: 300; }

/* =====================================================
   VALUES
   ===================================================== */
.values {
  background: var(--off-black);
  padding: clamp(80px, 10vw, 140px) 0;
}
.values__header {
  max-width: var(--max-w);
  margin: 0 auto clamp(52px, 7vw, 96px);
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.values__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}
.values__headline em {
  font-style: normal;
  color: var(--red);
}
.values__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.07);
}
.value-card {
  background: var(--off-black);
  padding: clamp(40px, 4.5vw, 68px) clamp(28px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.76,0,0.24,1);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { background: rgba(255,255,255,0.03); }

.value-card__num {
  position: absolute;
  top: -14px;
  right: -4px;
  font-family: var(--font-display);
  font-size: clamp(100px, 11vw, 160px);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}
.value-card:hover .value-card__num { color: rgba(232,35,42,0.07); }

.value-card__icon-wrap {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s, transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.value-card__icon-wrap svg { width: 100%; height: 100%; display: block; }
.value-card__icon-wrap--red { color: var(--red); }
.value-card:hover .value-card__icon-wrap { color: var(--red); transform: scale(1.08); }

.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
.value-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: rgba(255,255,255,0.42);
  flex-grow: 1;
}
.value-card__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  transition: color 0.2s;
}
.value-card__link .icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
}
.value-card:hover .value-card__link { color: var(--red); }
.value-card:hover .value-card__link .icon { transform: translateX(4px); }

/* =====================================================
   WORKS / HOW IT WORKS
   ===================================================== */
.works {
  background: var(--off-white);
  border-top: 2px solid var(--red);
  padding: clamp(64px, 9vw, 130px) 0 clamp(40px, 5vw, 72px);
}
.works__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.works__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.works__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.025em;
  color: var(--black);
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

/* Step list */
.works__right { display: flex; flex-direction: column; }

.work-step {
  display: grid;
  grid-template-columns: clamp(44px,5vw,70px) 1fr auto;
  gap: clamp(16px,2.5vw,32px);
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
  cursor: default;
}
.work-step:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.work-step__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  transition: color 0.35s;
  padding-top: 2px;
}
.work-step:hover .work-step__num { color: var(--red); }

.work-step__body { display: flex; flex-direction: column; gap: 6px; }

.work-step__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 4px;
}
.work-step__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  transition: color 0.25s;
  line-height: 1.1;
}
/* .work-step:hover .work-step__title { color: var(--red); } */

.work-step__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.78;
  color: rgba(0,0,0,0.5);
  margin-top: 6px;
  max-width: 480px;
}

.work-step__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.06);
  padding: 5px 13px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: start;
  transition: background 0.25s, color 0.25s;
}
.work-step__tag--red { background: rgba(232,35,42,0.1); color: var(--red); }
.work-step:hover .work-step__tag:not(.work-step__tag--red) {
  background: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.6);
}

.works__note {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad) 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.03em;
}

/* =====================================================
   CLIENTS & STATS
   ===================================================== */
.clients {
  background: var(--off-black);
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
}
.clients__header {
  max-width: var(--max-w);
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.clients__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.clients__eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Marquee */
.clients__marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.clients__marquee-wrap::before,
.clients__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.clients__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-black), transparent);
}
.clients__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-black), transparent);
}
.clients__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(32px, 4vw, 60px);
  border-right: 1px solid rgba(255,255,255,0.06);
  height: 72px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.client-item:hover { opacity: 0.7; }
.client-item img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.25s;
}
.client-item:hover img { opacity: 0.85; }
.client-item__name {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
  transition: color 0.25s;
}
.client-item:hover .client-item__name { color: rgba(255,255,255,0.55); }

/* Stats row */
.clients__stats {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.stat-item {
  background: var(--off-black);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-item__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
}
.stat-item__suffix {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red);
}
.stat-item__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em;
}

/* =====================================================
   SERVICES / PACKAGE
   ===================================================== */
.services {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 130px) 0;
}
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}
.services__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 48px;
}
.services__list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: padding-left 0.25s;
}
.service-item:first-child { border-top: 1px solid var(--gray-light); }
.service-item:hover { padding-left: 6px; }

.service-item__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.service-item__body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.service-item__body p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.67;
  color: var(--gray-mid);
}

/* Package right panel */
.services__right {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__package-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--red);
}
.services__package-asterisk {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--red);
}
.services__package-asterisk svg {
  display: block;
  width: 34px;
  height: 34px;
}
.services__package-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--black);
}
.services__package-title em { font-style: italic; color: var(--red); }

.services__package-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-mid);
  font-style: italic;
}
.services__package-card {
  background: var(--black);
  border-radius: 16px;
  padding: 30px 28px;
}
.services__package-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.services__package-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.services__package-card ul li {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
}
.services__package-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}

/* =====================================================
   PROMO / WHY CONSISTENCY
   ===================================================== */
.promo {
  background: var(--off-black);
  padding: clamp(64px, 9vw, 130px) 0;
}
.promo__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.promo__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.promo__headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 40px;
}
.promo__right { display: flex; flex-direction: column; gap: 14px; }

.promo__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 26px 24px;
}
.promo__card--accent { background: rgba(255,255,255,0.02); }

.promo__card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.promo__card-tag--red { background: rgba(232,35,42,0.15); color: var(--red); }

.promo__card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.promo__card p:last-child { margin-bottom: 0; }
.promo__card p strong { color: rgba(255,255,255,0.8); font-weight: 500; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--off-white);
  padding: clamp(64px, 9vw, 120px) 0;
}
.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}
.testimonials__header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
}
.testimonials__slider { min-height: 170px; position: relative; }

.testimonial-slide { display: none; }
.testimonial-slide.active {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 22px;
  max-width: 880px;
}
.testimonial-slide cite {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-mid);
  font-style: normal;
}
.testimonials__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}
.testimonial-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.testimonial-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.testimonial-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
  transform: scale(1.05);
}
.testimonials__dots { display: flex; gap: 7px; align-items: center; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { width: 20px; border-radius: 3px; background: var(--black); }

.testimonials__explore {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.testimonials__explore:hover { gap: 10px; }
.testimonials__explore .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}
.testimonials__explore:hover .icon { transform: translateX(3px); }

/* =====================================================
   GUARANTEE / COMMITMENT
   ===================================================== */
.guarantee {
  background: var(--black);
  padding: clamp(64px, 9vw, 130px) 0;
  overflow: hidden;
}
.guarantee__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.guarantee__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 14px 0 24px;
}
.guarantee__left p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.guarantee__tiers {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 28px 0;
}
.guarantee__tier {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.guarantee__tier-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: var(--red);
  min-width: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.guarantee__tier span:last-child {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.guarantee__note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

/* Visual element */
.guarantee__visual {
  width: 100%;
  aspect-ratio: 1;
  max-width: 460px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  margin: 0 auto;
}
.guarantee__visual-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232,35,42,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.guarantee__visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.guarantee__visual-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.guarantee__visual-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--red);
  line-height: 0.9;
}
.guarantee__visual-unit {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.65);
}
.guarantee__visual-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.guarantee__visual-label {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  display: block;
  max-width: 210px;
  margin-top: 6px;
}
.guarantee__visual-label em { font-style: italic; color: var(--red); }

.guarantee__visual-rings {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,35,42,0.15);
}
.ring--1 { width: 42%; height: 42%; border-color: rgba(232,35,42,0.3); }
.ring--2 { width: 63%; height: 63%; animation: pulse 3s ease-in-out infinite; }
.ring--3 { width: 85%; height: 85%; animation: pulse 3s ease-in-out infinite 0.8s; }

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0.25; transform: scale(1.03); }
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
  background: var(--red);
  padding: clamp(80px, 11vw, 160px) 0;
  text-align: center;
}
.final-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}
.final-cta__sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.72;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}
.final-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--pad) clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__col a:hover { color: #fff; }

.footer__col-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.footer__col-label--spaced { margin-top: 8px; }

.footer__col--contact { align-items: flex-start; }
.footer__email {
  font-family: var(--font-display) !important;
  font-size: clamp(14px, 1.6vw, 18px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.01em;
  margin: 2px 0;
}
.footer__phone {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin: 2px 0 4px;
  transition: color 0.2s;
}
.footer__phone:hover { color: #fff; }
.footer__phone-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer__wa:hover { color: #25D366; }
.footer__socials { display: flex; gap: 10px; margin-top: 2px; }
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s, background 0.2s !important;
}
.footer__socials a:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.footer__col--right { text-align: right; align-items: flex-end; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-style: italic;
}
.footer__col-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.footer__col-cta:hover { opacity: 0.7; }
.footer__dev-link {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__dev-link:hover { color: #fff; }

/* Brand row */
.footer__brand {
  width: 100%;
  padding-top: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.footer__logo {
  height: 28px;
  width: auto;
  opacity: 0.55;
  margin: 0 auto 8px;
}
.footer__big-text {
  font-family: var(--font-display);
  font-size: clamp(30px, 8.5vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: rgba(255,255,255,0.04);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  text-align: center;
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad) clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Tablet */
@media (max-width: 1100px) {
  .works__inner { grid-template-columns: 1fr; }
  .works__headline { position: static; max-width: 660px; margin-bottom: 0; }
  .work-step { grid-template-columns: clamp(40px,6vw,60px) 1fr auto; }

  .clients__stats { grid-template-columns: repeat(3, 1fr); }

  .services__inner { grid-template-columns: 1fr; }
  .services__right { position: static; }

  .promo__inner { grid-template-columns: 1fr; gap: 48px; }

  .guarantee__inner { grid-template-columns: 1fr; }
  .guarantee__right { display: none; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--right { grid-column: 1 / -1; text-align: left; align-items: flex-start; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__label { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__filmstrip { display: none; }

  .hero__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__cta-block { align-items: flex-start; }
  .hero__cta-block p { text-align: left; }
  .hero__name-inner { letter-spacing: -0.025em; }

  .about__inner { grid-template-columns: 1fr; gap: 36px; }

  .values__inner { grid-template-columns: 1fr; gap: 2px; }
  .values__header { margin-bottom: 40px; }

  .work-step { grid-template-columns: 36px 1fr; }
  .work-step__tag { display: none; }

  .clients__stats { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__col--right { text-align: left; align-items: flex-start; }
  .footer__big-text { font-size: clamp(22px, 6.5vw, 58px); }
  .footer__tagline { font-size: 15px; }
  .footer__phone-row { flex-wrap: wrap; gap: 8px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; align-items: center; }

  /* Testimonials — no mobile CSS existed */
  .testimonials__inner { padding: clamp(40px, 8vw, 72px) var(--pad); }
  .testimonials__header h2 { font-size: clamp(22px, 5.5vw, 36px); }
  .testimonial-slide blockquote { font-size: clamp(16px, 3.8vw, 22px); }
  .testimonials__controls { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .testimonials__explore { order: 3; width: 100%; text-align: center; justify-content: center; }

  /* Values — ghost numbers too large on mobile */
  .value-card { padding: clamp(24px, 5vw, 36px); }
  .value-card__num { font-size: clamp(80px, 22vw, 130px); }

  /* Works */
  .works__left { margin-bottom: 0; }

  /* Clients marquee */
  .client-item { padding: 0 clamp(16px, 4vw, 36px); height: 60px; }
  .clients__marquee-wrap::before,
  .clients__marquee-wrap::after { width: 60px; }

  /* Services */
  .service-item { grid-template-columns: 36px 1fr; gap: 12px; }
  .services__package-card { padding: 24px 20px; }

  /* Promo */
  .promo__card { padding: 22px 20px; }

  /* Guarantee */
  .guarantee__tiers { gap: 12px; }
  .guarantee__left p { font-size: 14px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .final-cta__btns .btn { justify-content: center; }
  .about__bottom { flex-direction: column; align-items: flex-start; }

  /* Hero */
  .hero__badge { font-size: 10px; padding: 7px 12px; gap: 6px; }
  .hero__tagline p, .hero__cta-block p { font-size: 14px; }

  /* About */
  .about__stat-number { font-size: clamp(36px, 10vw, 52px); }

  /* Values */
  .value-card__num { font-size: clamp(64px, 20vw, 100px); }
  .value-card__title { font-size: 18px; }

  /* Works */
  .work-step { gap: 10px; }
  .work-step__title { font-size: 16px; }

  /* Clients */
  .stat-item__num { font-size: clamp(36px, 10vw, 52px); }

  /* Services */
  .services__package-card { padding: 20px 16px; }
  .services__package-card li { font-size: 13px; }

  /* Promo */
  .promo__card { padding: 20px 16px; }

  /* Guarantee */
  .guarantee__tier { gap: 12px; }
  .guarantee__tier-num { font-size: clamp(22px, 6vw, 32px); }

  /* Final CTA */
  .final-cta__headline { font-size: clamp(26px, 7.5vw, 42px); }
  .final-cta__sub { font-size: 14px; }

  /* Footer */
  .footer__tagline { font-size: 14px; }
  .footer__col-cta { font-size: 11px; }
}
