/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
  --bg: #09090a;
  --surface: #171617;
  --border: #1f1f21;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-tertiary: #808080;
  --accent: #f76120;
  --surface-hover: #1f1f20;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Impact', sans-serif;

  --section-v: 80px;
  --max-w: 1200px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
:root {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
* {
  cursor: none !important;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), opacity 240ms ease;
  will-change: transform;
}

#cursor.hover {
  transform: translate(-50%, -50%) scale(1.9);
}

#cursor.hidden {
  opacity: 0;
}

@media (pointer: coarse) {
  * {
    cursor: auto !important;
  }

  #cursor {
    display: none;
  }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-v) 0;
}

.section--tight {
  padding: 48px 0;
}

.section--wide {
  padding: 120px 0;
}

.full-bleed {
  background-color: var(--surface);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-reveal-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal-delay="2"] {
  transition-delay: 200ms;
}

[data-reveal-delay="3"] {
  transition-delay: 300ms;
}

[data-reveal-delay="4"] {
  transition-delay: 400ms;
}

[data-reveal-delay="5"] {
  transition-delay: 500ms;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 20px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 6px 0 20px;
  background: rgba(9, 9, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: nav-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 50ms;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 300ms ease, background 300ms ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(247, 97, 32, 0.12);
}

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #09090a;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.nav-cta:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  max-width: var(--max-w);
  margin: 8px auto 0;
  background: rgba(15, 14, 15, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 8px 20px 20px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-link {
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 300ms ease;
}

.nav-mobile-link:last-of-type {
  border-bottom: none;
}

.nav-mobile-link:hover {
  color: var(--accent);
}

.nav-mobile-link.active {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.lang-switch:hover {
  background: var(--surface-hover);
  border-color: var(--text-secondary);
}

.lang-switch:active {
  transform: scale(0.98);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #09090a;
}

.btn-primary:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--surface-hover);
  border-color: var(--text-secondary);
}

/* ============================================
   HERO ENTRANCE ANIMATION
   ============================================ */
@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateY(-28px);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    -webkit-filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

.hero-eyebrow {
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 100ms;
}

.hero-heading {
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 280ms;
}

.hero-sub {
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 480ms;
}

.hero-actions {
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 620ms;
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 180px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.hero-heading em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-segment {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 100ms;
}

.page-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 280ms;
}

.page-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
  opacity: 0;
  will-change: transform, opacity, filter;
  animation: hero-in 800ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 440ms;
}

/* ============================================
   SECTION LABELS
   ============================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-heading em {
  color: var(--accent);
  font-style: normal;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}

.section-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}

/* ============================================
   MANIFESTO STRIP
   ============================================ */
.manifesto {
  text-align: center;
  padding: 80px 0;
}

.manifesto-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

.manifesto-rule--bottom {
  margin: 40px auto 0;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-primary);
  max-width: 880px;
  margin: 0 auto;
}

.manifesto-text em {
  color: var(--accent);
  font-style: normal;
}

/* ============================================
   SERVICES GRID (home preview)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.services-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  padding: 40px 32px;
  background: var(--surface);
  border-left: 2px solid var(--accent);
  transition: background 300ms ease;
}

.service-card:hover {
  background: var(--surface-hover);
}

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 28px;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   STATS
   ============================================ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.stat-number em {
  color: var(--accent);
  font-style: normal;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  margin-top: 64px;
}

.testimonial-quote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.testimonial-attr {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.testimonial-attr span {
  color: var(--accent);
}

/* ============================================
   CTA SECTION (Ghost letterform)
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 108px);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.cta-heading em {
  color: var(--accent);
  font-style: normal;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}


.service-detail {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.service-detail-inner.reverse {
  grid-template-columns: 7fr 5fr;
}

.service-detail-inner.reverse .service-detail-text {
  order: 2;
}

.service-detail-inner.reverse .service-detail-visual {
  order: 1;
}

.service-detail-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-detail-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.service-detail-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-feature::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-detail-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

/* Pill tags */
.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pill-accent {
  background: rgba(247, 97, 32, 0.2);
  border-color: rgba(247, 97, 32, 0.6);
  color: var(--accent);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  padding: 80px 0;
}

.contact-group {
  margin-bottom: 48px;
}

.contact-group:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-value {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.65;
}

.contact-value a {
  color: var(--text-primary);
  transition: color 300ms ease;
}

.contact-value a:hover {
  color: var(--accent);
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
}

.contact-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-map-note {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.contact-map-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-chip {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(247, 97, 32, 0.2);
  border-color: rgba(247, 97, 32, 0.6);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 300ms ease, border-color 300ms ease;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 300ms ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-credit {
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 300ms ease;
}

.footer-credit:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-social {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 300ms ease;
}

.footer-social:hover {
  color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-inner.reverse .service-detail-text,
  .service-detail-inner.reverse .service-detail-visual {
    order: unset;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 56px;
  }

  .nav {
    position: relative;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    min-height: 85vh;
    padding-bottom: 60px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 0;
    gap: 24px;
  }

  .testimonials-grid {
    gap: 40px;
  }

  .cta-section {
    padding: 80px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }
}