@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Wix+Madefor+Display:wght@400;500;600;700&display=swap");

/* ═══════════════════════════════════════════════════
   MOSCOW MBA STYLE SYSTEM
   ═══════════════════════════════════════════════════ */

:root {
  /* Palette */
  --accent: #FF3535;
  --accent-hover: #E62E2E;
  --accent-soft: rgba(255, 53, 53, 0.1);
  --bg: #FFFFFF;
  --bg-soft: #F8F8F8;
  --bg-muted: #E7EAED;
  --bg-dark: #000000;
  --bg-dark-elevated: #18191A;
  --bg-dark-card: #22272F;
  --text: #262626;
  --text-muted: #333333;
  --text-dim: #5C6268;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: rgba(255, 255, 255, 0.55);
  --border: #E7EAED;

  /* Typography */
  --font-display: "Unbounded", Arial, Tahoma, sans-serif;
  --font-body: "Wix Madefor Display", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* --font-display: "Wix Madefor Display", "Helvetica Neue", Helvetica, Arial, sans-serif; */
  /* --font-body: "Wix Madefor Display", "Helvetica Neue", Helvetica, Arial, sans-serif; */
  /* --font-mono: "Wix Madefor Display", "Helvetica Neue", Helvetica, Arial, sans-serif; */

  /* Spacing */
  --max-width: 1200px;
  --section-gap: 0;
  --section-padding: 100px;

  /* Hero v3 */
  --hero-v3-orange: #F26522;
  --hero-v3-orange-hover: #e05a1a;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

::selection {
  background: var(--accent);
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   HERO V3 — AXION STUDIO
   ═══════════════════════════════════════════════════ */

.hero-v3 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #EFEFEF;
  overflow: hidden;
}

/* Background */
.hero-v3-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 95, 3, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 95, 3, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,240,240,0.6) 50%, rgba(255,255,255,0.4) 100%);
  animation: heroV3BgShift 20s ease-in-out infinite alternate;
}

@keyframes heroV3BgShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(15deg); }
}

/* Navigation */
.hero-v3-nav {
  position: relative;
  z-index: 20;
  padding: 8px 16px;
}

@media (min-width: 640px) {
  .hero-v3-nav {
    padding: 12px 24px;
  }
}

@media (min-width: 1024px) {
  .hero-v3-nav {
    padding: 16px 32px;
  }
}

.hero-v3-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 9999px;
  padding: 5px;
}

.hero-v3-nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.hero-v3-logo {
  width: 36px;
  height: 36px;
  background: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-v3-logo {
    width: 40px;
    height: 40px;
  }
}

.hero-v3-logo-text {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-v3-logo-text {
    font-size: 11px;
  }
}

/* Desktop Nav Links */
.hero-v3-nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .hero-v3-nav-links {
    display: flex;
  }
}

.hero-v3-nav-links a {
  font-size: 14px;
  color: #111827;
  transition: color 0.3s;
}

.hero-v3-nav-links a:hover {
  color: #6b7280;
}

/* Right side nav */
.hero-v3-nav-right {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .hero-v3-nav-right {
    display: flex;
  }
}

.hero-v3-status {
  font-size: 13px;
  color: #4b5563;
}

@media (max-width: 1023px) {
  .hero-v3-status {
    display: none;
  }
}

.hero-v3-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
}

/* CTA Button with text roll */
.hero-v3-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 8px 8px 8px 20px;
  transition: background 0.3s;
}

.hero-v3-cta-btn:hover {
  background: #374151;
}

.hero-v3-cta-text {
  display: block;
  overflow: hidden;
  height: 20px;
}

.hero-v3-cta-text-inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-v3-cta-btn:hover .hero-v3-cta-text-inner {
  transform: translateY(-50%);
}

.hero-v3-cta-arrow {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-shrink: 0;
}

.hero-v3-cta-btn:hover .hero-v3-cta-arrow {
  transform: rotate(-45deg);
}

/* Mobile menu toggle */
.hero-v3-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #111827;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  color: #fff;
  position: relative;
  z-index: 30;
}

@media (min-width: 768px) {
  .hero-v3-menu-toggle {
    display: none;
  }
}

.hero-v3-menu-icon {
  display: block;
}

.hero-v3-close-icon {
  display: none;
}

.hero-v3-menu-toggle.active .hero-v3-menu-icon {
  display: none;
}

.hero-v3-menu-toggle.active .hero-v3-close-icon {
  display: block;
}

/* Mobile Overlay */
.hero-v3-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-v3-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .hero-v3-mobile-overlay {
    display: none;
  }
}

.hero-v3-mobile-sheet {
  background: #fff;
  border-radius: 16px;
  margin: 0 12px 12px 12px;
  padding: 24px;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-v3-mobile-overlay.open .hero-v3-mobile-sheet {
  transform: translateY(0);
}

.hero-v3-mobile-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 24px;
}

.hero-v3-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-v3-mobile-links a {
  font-size: 28px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero-v3-mobile-links a {
    font-size: 32px;
  }
}

.hero-v3-mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 12px 20px;
}

/* Hero Content */
.hero-v3-content {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 56px 20px;
}

@media (min-width: 640px) {
  .hero-v3-content {
    padding: 0 32px 64px 32px;
  }
}

@media (min-width: 1024px) {
  .hero-v3-content {
    padding: 0 48px 80px 48px;
  }
}

.hero-v3-label {
  font-size: 13px;
  color: #111827;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .hero-v3-label {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.hero-v3-headline {
  font-size: clamp(1.75rem, 7vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111827;
  max-width: 900px;
}

@media (min-width: 640px) {
  .hero-v3-headline {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
  }
}

.hidden-sm {
  display: none;
}

@media (min-width: 640px) {
  .hidden-sm {
    display: inline;
  }
}

/* CTA Row */
.hero-v3-cta-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-v3-cta-row {
    margin-top: 48px;
    flex-direction: row;
    gap: 20px;
  }
}

/* Primary CTA (orange) */
.hero-v3-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-v3-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 8px 8px 8px 20px;
  transition: background 0.3s;
  width: fit-content;
}

@media (min-width: 640px) {
  .hero-v3-cta-primary {
    font-size: 14px;
    padding: 8px 8px 8px 24px;
  }
}

.hero-v3-cta-primary:hover {
  background: var(--hero-v3-orange-hover);
}

.hero-v3-cta-primary:hover .hero-v3-cta-text-inner {
  transform: translateY(-50%);
}

.hero-v3-cta-primary:hover .hero-v3-cta-arrow-orange {
  transform: rotate(-45deg);
}

.hero-v3-cta-arrow-orange {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-v3-orange);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-v3-cta-arrow-orange {
    width: 32px;
    height: 32px;
  }
}

/* Partner Badge */
.hero-v3-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
  width: fit-content;
}

.hero-v3-partner:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-v3-partner-icon {
  width: 20px;
  height: 20px;
  color: #E8704E;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-v3-partner-icon {
    width: 24px;
    height: 24px;
  }
}

.hero-v3-partner-text {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

@media (min-width: 640px) {
  .hero-v3-partner-text {
    font-size: 14px;
  }
}

.hero-v3-partner-badge {
  font-size: 10px;
  font-weight: 500;
  background: #111827;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

@media (min-width: 640px) {
  .hero-v3-partner-badge {
    font-size: 11px;
    padding: 2px 8px;
  }
}

/* ═══════════════════════════════════════════════════
   SECTION 2: ABOUT
   ═══════════════════════════════════════════════════ */

.section-about {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 48px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .section-about {
    padding-top: 80px;
    padding-bottom: 64px;
  }
}

@media (min-width: 1024px) {
  .section-about {
    padding-top: 128px;
    padding-bottom: 96px;
  }
}

.section-about-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .section-about-inner {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .section-about-inner {
    padding: 0 48px;
  }
}

.about-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .about-badge-row {
    margin-bottom: 32px;
  }
}

.about-badge-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .about-badge-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.about-badge-label {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 4px 12px;
}

@media (min-width: 640px) {
  .about-badge-label {
    font-size: 13px;
    padding: 6px 16px;
  }
}

.about-heading {
  font-size: clamp(1.75rem, 7vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .about-heading {
    margin-bottom: 64px;
  }
}

@media (min-width: 1024px) {
  .about-heading {
    margin-bottom: 112px;
  }
}

/* Mobile layout */
.about-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .about-mobile {
    display: none;
  }
}

.about-paragraph {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #111827;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .about-paragraph {
    font-size: 17px;
  }
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hero-v3-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 8px 8px 8px 20px;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.about-btn:hover {
  background: var(--hero-v3-orange-hover);
}

.about-btn:hover .hero-v3-cta-text-inner {
  transform: translateY(-50%);
}

.about-btn:hover .hero-v3-cta-arrow-orange {
  transform: rotate(-45deg);
}

.about-images-mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .about-images-mobile {
    flex-direction: row;
    gap: 20px;
  }
}

.about-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 640px) {
  .about-img {
    border-radius: 16px;
  }
}

.about-img-small {
  aspect-ratio: 438 / 346;
}

@media (min-width: 640px) {
  .about-img-small {
    width: 45%;
  }
}

.about-img-large {
  aspect-ratio: 900 / 600;
}

@media (min-width: 640px) {
  .about-img-large {
    width: 55%;
  }
}

/* Desktop layout */
.about-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .about-desktop {
    display: grid;
    grid-template-columns: 26% 1fr 48%;
    align-items: end;
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .about-desktop {
    gap: 32px;
  }
}

.about-desktop-left {
  align-self: end;
}

.about-desktop-left .about-img {
  aspect-ratio: 438 / 346;
}

.about-desktop-center {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 8px;
}

.about-paragraph-desktop {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  margin-bottom: 20px;
}

@media (min-width: 1280px) {
  .about-paragraph-desktop {
    font-size: 18px;
  }
}

.about-desktop-right {
  align-self: end;
}

.about-desktop-right .about-img {
  aspect-ratio: 3 / 2;
}

/* ═══════════════════════════════════════════════════
   SECTION 3: CASE STUDIES
   ═══════════════════════════════════════════════════ */

.section-cases {
  background: #F5F5F5;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 640px) {
  .section-cases {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) {
  .section-cases {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.section-cases-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .section-cases-inner {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .section-cases-inner {
    padding: 0 48px;
  }
}

.cases-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .cases-badge-row {
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .cases-badge-row {
    padding: 0;
  }
}

.cases-badge-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .cases-badge-num {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.cases-badge-label {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 4px 12px;
}

@media (min-width: 640px) {
  .cases-badge-label {
    font-size: 13px;
    padding: 6px 16px;
  }
}

.cases-heading {
  font-size: clamp(1.75rem, 7vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .cases-heading {
    margin-bottom: 64px;
  }
}

@media (min-width: 1024px) {
  .cases-heading {
    margin-bottom: 112px;
  }
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .cases-grid {
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cases-grid {
    gap: 28px;
  }
}

.cases-card {
  cursor: pointer;
}

.cases-card-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1d2e;
}

.cases-card-media-narrativ {
  aspect-ratio: 329 / 246;
}

.cases-card-media-luminar {
  aspect-ratio: 1 / 1;
  background: #6b6b6b;
}

.cases-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover button */
.cases-card-hover {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  width: 36px;
  border-radius: 9999px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.cases-card-media:hover .cases-card-hover {
  width: 148px;
}

.cases-card-media:hover .cases-card-hover-dark {
  width: 168px;
}

.cases-card-hover-light {
  background: #fff;
  color: #111827;
}

.cases-card-hover-dark {
  background: #111827;
  color: #fff;
}

.cases-card-hover-text {
  font-size: 13px;
  font-weight: 500;
  padding-left: 12px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.cases-card-media:hover .cases-card-hover-text {
  opacity: 1;
}

.cases-card-hover-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.cases-card-media:hover .cases-card-hover-icon {
  transform: rotate(0deg);
}

.cases-card-desc {
  font-size: 13px;
  color: #4b5563;
  margin-top: 16px;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .cases-card-desc {
    font-size: 14px;
  }
}

.cases-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .cases-card-title {
    font-size: 15px;
  }
}


/* ═══════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════ */

.wrap {
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .wrap {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    padding: 0 48px;
  }
}

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

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: black;
  /* background: transparent; */
  transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
}

.topline {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  transition: color 0.3s;
}

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

.brand .mark {
  width: 20px;
  height: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background: var(--text-inverse);
  transition: background 0.3s;
}

.brand:hover .mark {
  background: var(--accent);
}

.mark i {
  display: block;
}

.mark i:nth-child(1),
.mark i:nth-child(4) {
  background: var(--bg-dark);
}

.mark i:nth-child(2),
.mark i:nth-child(3) {
  background: transparent;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-inverse-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--text-inverse);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   HERO - DARK SECTION
   ═══════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(215deg, #000000 9.35%, #131517 79.43%);
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 53, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
}

h1 .accent-word {
  color: var(--accent);
}

.lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: var(--text-inverse-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

.button {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 53, 53, 0.3);
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-inverse);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-inverse-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════
   HERO V2 STATS — COPIED FROM V2
   ═══════════════════════════════════════════════════ */

.hero-v2-stats {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 10;
}

@media (max-width: 1023px) {
  .hero-v2-stats {
    display: none;
  }
}

.hero-v2-stat {
  text-align: right;
  opacity: 0;
  transform: translateY(32px);
  animation: heroV2FadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.hero-v2-stat-number {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-inverse);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero-v2-stat-plus {
  color: var(--accent);
  font-size: 0.5em;
  line-height: 1;
  margin-top: 0.15em;
  margin-right: 0.05em;
}

.hero-v2-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  line-height: 1.2;
  margin-top: 6px;
  white-space: pre-line;
}

@keyframes heroV2FadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════ */

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark-alt {
  background: linear-gradient(180deg, #000000 0%, #18191A 100%);
  color: var(--text-inverse);
}

.section-light {
  background: var(--bg);
  color: var(--text);
}

.section-soft {
  background: var(--bg-soft);
  color: var(--text);
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-dark .section-label,
.section-dark-alt .section-label {
  color: var(--accent);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 4.2rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section-lead {
  /* font-family: var(--font-display); */
  /* font-family: var(--font-body); */
  max-width: 600px;
  color: var(--text-muted);
  font-size: 17px;
  /* font-weight: 600; */
  line-height: 1.6;
  margin-top: 16px;
}

.section-dark .section-lead,
.section-dark-alt .section-lead {
  color: var(--text-inverse-muted);
}

/* ═══════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════ */

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

.service-card {
  padding: 32px;
  background: var(--bg-soft);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.section-dark .service-card,
.section-dark-alt .service-card {
  background: var(--bg-dark-card);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 12px;
}

.service-card .arrow {
  float: right;
  font-size: 16px;
  color: var(--accent);
  margin-top: 2px;
  transition: transform 0.3s;
}

.service-card:hover .arrow {
  transform: translate(2px, -2px);
}

.service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  clear: both;
}

.section-dark .service-card p,
.section-dark-alt .service-card p {
  color: var(--text-inverse-muted);
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /* max-width: 300px; */
  aspect-ratio: 4/5;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-content p:first-child {
  color: var(--text);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.section-dark .about-content p,
.section-dark-alt .about-content p {
  color: var(--text-inverse-muted);
}

.about-team-member h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.about-team-member p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.section-dark .about-content p:first-child,
.section-dark-alt .about-content p:first-child {
  color: var(--text-inverse);
}

.about-team-member {
  display: flex;
  flex-direction: column;
}

.about-team-member h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0 0 0;
}

.about-team-member p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 4px 0 0 0;
}

/* ═══════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  padding: 32px;
  background: var(--bg-soft);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.project-card:hover::before {
  opacity: 1;
}

.section-dark .project-card,
.section-dark-alt .project-card {
  background: var(--bg-dark-card);
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card h3 .arrow {
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.project-card:hover h3 .arrow {
  transform: translate(2px, -2px);
}

.project-card p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.section-dark .project-card p,
.section-dark-alt .project-card p {
  color: var(--text-inverse-muted);
}

.project-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-details li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
}

.section-dark .project-details li,
.section-dark-alt .project-details li {
  color: var(--text-inverse-muted);
}

.project-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}

.project-featured {
  grid-column: span 2;
  padding: 40px;
}

.project-featured h3 {
  font-size: 24px;
}

/* ═══════════════════════════════════════════════════
   EXPERTISE
   ═══════════════════════════════════════════════════ */

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

.expertise-card {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: 16px;
}

.section-dark .expertise-card,
.section-dark-alt .expertise-card {
  background: var(--bg-dark-card);
}

.expertise-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-dark .expertise-card h3,
.section-dark-alt .expertise-card h3 {
  color: var(--text-inverse);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tags span {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}

.expertise-tags span:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section-dark .expertise-tags span,
.section-dark-alt .expertise-tags span {
  background: var(--bg-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse-muted);
}

.section-dark .expertise-tags span:hover,
.section-dark-alt .expertise-tags span:hover {
  border-color: var(--accent);
  color: var(--text-inverse);
}

.expertise-intro {
  /* max-width: 800px; */
  margin-bottom: 48px;
  padding: 20px 24px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.expertise-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */

.faq-card {
  border-radius: 16px;
}

.section-dark .faq-card,
.section-dark-alt .faq-card {
  /* background: var(--bg-dark-card); */
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.section-dark .faq-item,
.section-dark-alt .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 34px;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
  padding-right: 40px;
  font-family: var(--font-display);
  font-weight: 400;
}

.section-dark .faq-item summary,
.section-dark-alt .faq-item summary {
  color: var(--text-inverse);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: #555;
  font-family: var(--font-mono);
  font-weight: 300;
  transition: all 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: 30px;
  line-height: 1.6;
  color: var(--text-muted);
  /* max-width: 800px; */
  animation: fadeSlideDown 0.3s ease;
}

.section-dark .faq-answer,
.section-dark-alt .faq-answer {
  color: var(--text-inverse-muted);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  padding: 32px;
  min-height: 180px;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-value {
  /* font-family: var(--font-mono); */
  font-size: 16px;
  color: var(--text);
  margin-top: auto;
}

.section-dark .contact-value,
.section-dark-alt .contact-value {
  color: var(--text-inverse);
}

.contact-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: auto;
}

.section-dark .contact-desc,
.section-dark-alt .contact-desc {
  color: var(--text-inverse-muted);
}

.contact-cta {
  margin-top: 40px;
  text-align: right;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

footer {
  background: var(--bg-dark);
  color: var(--text-inverse-muted);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-inverse-muted);
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */

.marquee-section {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.section-dark .marquee-section,
.section-dark-alt .marquee-section {
  border-color: rgba(255, 255, 255, 0.06);
  background: var(--bg-dark);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.section-dark .marquee-track span,
.section-dark-alt .marquee-track span {
  color: var(--text-inverse-muted);
}

.marquee-track span::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}

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

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 900px) {
  :root {
    --section-padding: 64px;
  }

  .wrap {
    /* width: min(100% - 32px, 680px); */
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero-stats {
    gap: 32px;
    margin-top: 48px;
  }

  .hero-stat-value {
    font-size: 24px;
  }

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

  .about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .about-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .about-team-member h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }

  .about-team-member p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
  }

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

  .project-featured {
    grid-column: span 1;
  }

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

  .faq-item summary {
    font-size: 26px;
    padding: 20px 0;
    padding-right: 36px;
  }

  .faq-item .faq-answer {
    font-size: 20px;
  }

  .faq-item summary::after {
    font-size: 22px;
  }

  h2 {
    font-size: 40px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .topline {
    height: 56px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h1 span {
    white-space: normal;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .service-card,
  .project-card,
  .expertise-card {
    padding: 24px;
  }

  .project-featured {
    padding: 24px;
  }

  .faq-card {
    padding: 20px;
    border-radius: 12px;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 16px 0;
    padding-right: 32px;
  }

  .faq-item summary::after {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 14px;
    padding-bottom: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-card {
    min-height: auto;
    padding: 24px;
  }
}
