:root {
  --red: #E8001E;
  --red-dark: #B8001A;
  --red-dim: rgba(232, 0, 30, 0.12);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --grey-1: #222222;
  --grey-2: #333333;
  --grey-3: #888888;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.06);
  --white-dim2: rgba(255, 255, 255, 0.12);
  --white-dim3: rgba(255, 255, 255, 0.5);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font: inherit;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 0, 30, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}

body.cursor-hover .cursor {
  width: 60px;
  height: 60px;
  border-color: var(--white);
  background: rgba(232, 0, 30, 0.1);
}

/* ---------- NOISE ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}

.text-red {
  color: var(--red);
}

.outline-text {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: var(--red);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim3);
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-2);
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--red);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAV ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-color: var(--grey-1);
  backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-3);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--red-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 40px 24px;
  background: var(--black-2);
  border-top: 1px solid var(--grey-1);
  gap: 2px;
}

.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-1);
}

.mobile-menu.open {
  display: flex;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  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: 80px 80px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.c1 {
  width: 600px;
  height: 600px;
  background: rgba(232, 0, 30, 0.15);
  top: -150px;
  right: -100px;
  animation: floatA 8s ease-in-out infinite;
}

.c2 {
  width: 400px;
  height: 400px;
  background: rgba(232, 0, 30, 0.08);
  bottom: 0;
  left: 10%;
  animation: floatB 10s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -60px) scale(1.1);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-3);
  border: 1px solid var(--grey-2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line {
  display: block;
}

.accent-line {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}

.hero-bio {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--grey-3);
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
  overflow: hidden;
  background: var(--black-2);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeRun 40s linear infinite;
}

.marquee-track span {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  padding: 14px 28px;
}

.marquee-track .sep {
  color: var(--red);
  padding: 14px 8px;
  font-size: 10px;
}

@keyframes marqueeRun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRunRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* ---------- BRANDS MARQUEE ---------- */
.brands-marquee-section {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: 15px 0 20px;
  border-bottom: 1px solid var(--grey-1);
}

.brands-marquee-title {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 18px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 40px;
  opacity: 0.8;
}

.brands-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marqueeRunRight 60s linear infinite;
  padding: 10px 0;
}

.brand-item {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, transform 0.4s;
}

.brand-item:hover {
  transform: scale(1.1);
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

.scroll-indicator span {
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-3);
  writing-mode: vertical-rl;
}

/* ---------- ABOUT ---------- */
.about {
  padding: 30px 0;
  background: var(--black);
  position: relative;
}

.about::before {
  position: absolute;
  top: 60px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  color: var(--white-dim);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-1);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  vertical-align: top;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-top: 6px;
}

.about-card {
  background: var(--black-2);
  border: 1px solid var(--grey-1);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}

.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--grey-3);
  margin-bottom: 32px;
}

.about-body strong {
  color: var(--white);
  font-weight: 600;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--white-dim3);
}

.promise-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mv-box {
  background: var(--black-2);
  border: 1px solid var(--grey-1);
  border-radius: 4px;
  padding: 28px;
  transition: border-color 0.3s;
}

.mv-box:hover {
  border-color: var(--red);
}

.mv-box--accent {
  background: var(--red);
  border-color: var(--red);
}

.mv-box--accent .mv-label {
  color: rgba(255, 255, 255, 0.7);
}

.mv-box--accent p {
  color: var(--white);
}

.mv-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.mv-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-3);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 0 0 30px;
  background: var(--black);
}

.services-header {
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--grey-1);
  margin-bottom: 0;
}

.services-list {
  padding-top: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--grey-1);
  cursor: none;
  position: relative;
  transition: background 0.3s;
}

.service-item::before {
  content: '';
  position: absolute;
  left: -40px;
  right: -40px;
  top: 0;
  bottom: 0;
  background: var(--black-2);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item>* {
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--grey-1);
  transition: color 0.3s;
  line-height: 1;
}

.service-item:hover .service-num {
  color: var(--red);
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color 0.3s;
  margin-bottom: 6px;
  line-height: 1;
}

.service-item:hover .service-body h3 {
  color: var(--red);
}

.service-body p {
  font-size: 14px;
  color: var(--grey-3);
  font-weight: 300;
  max-width: 500px;
}

.service-logos {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.service-logos img {
  height: 32px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.service-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.service-arrow {
  font-size: 22px;
  color: var(--grey-2);
  transition: transform 0.3s var(--ease), color 0.3s;
}

.service-item:hover .service-arrow {
  transform: translateX(8px);
  color: var(--red);
}

/* ---------- WORK ---------- */
.work {
  padding: 30px 0;
  background: var(--black);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}

.work-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.btn-watch {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}

.btn-watch:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ---------- WHY ---------- */
.why {
  padding: 30px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.why::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--grey-1);
  pointer-events: none;
}

.why-header {
  margin-bottom: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-card {
  padding: 48px 36px;
  border-right: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
  position: relative;
  transition: background 0.3s;
}

.why-card:last-child {
  border-right: none;
}

.why-card:nth-child(3),
.why-card:nth-child(4) {
  border-bottom: none;
}

.why-card:hover {
  background: rgba(232, 0, 30, 0.04);
}

.why-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 24px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  color: var(--grey-3);
  line-height: 1.7;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--red);
  overflow: hidden;
  padding: 0;
}

.cta-band-inner {
  overflow: hidden;
}

.cta-marquee {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeRun 20s linear infinite;
}

.cta-marquee span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px 36px;
}

.cta-marquee .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  padding: 22px 8px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 30px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--grey-3);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 400px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-info-item a,
.contact-info-item span {
  font-size: 16px;
  color: var(--white);
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--grey-2);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 18px 20px 14px;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group label {
  display: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-3);
  font-weight: 300;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 14px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--grey-1);
  padding: 25px 0 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--grey-1);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey-3);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 0;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-group-title {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-size: 14px;
  color: var(--grey-3);
  transition: color 0.3s;
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--grey-2);
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card:nth-child(2) {
    border-right: none;
  }

  .why-card:nth-child(3) {
    border-bottom: 1px solid var(--grey-1);
  }

  .why::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-item {
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 60px 24px 40px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    border-right: none !important;
    border-bottom: 1px solid var(--grey-1) !important;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-row {
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-num {
    display: none;
  }

  .service-arrow {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.5rem, 16vw, 8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}