/* ================================================
   I HATE MEDIA* — BRUTAL & BOLD
   Core Styles
   ================================================ */

/* --- FONTS --- */
@font-face {
  font-family: 'Kooka';
  src: url('../assets/fonts/Kooka-Heavy.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Kooka';
  src: url('../assets/fonts/Kooka-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Kooka';
  src: url('../assets/fonts/Kooka-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Kooka';
  src: url('../assets/fonts/Kooka-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'KookaCondensed';
  src: url('../assets/fonts/Kooka-HeavyCondensed.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/Jost-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/Jost-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/Jost-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/Jost-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Monopop';
  src: url('../assets/fonts/MONOPOP.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

/* --- CSS VARIABLES --- */
:root {
  --red: #FB0D1B;
  --red-dark: #d10a16;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-gray: #1A1A1A;
  --mid-gray: #2a2a2a;
  --light: #F0F0F0;
  --white: #FFFFFF;

  --font-display: 'Kooka', 'Impact', sans-serif;
  --font-display-condensed: 'KookaCondensed', 'Impact', sans-serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-mono: 'Monopop', monospace;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --nav-height: 72px;
}

/* --- UTILITIES --- */
.text-red { color: var(--red); }
.text-dark { color: var(--dark-gray); }
.filter-red { filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(6000%) hue-rotate(355deg) brightness(100%) contrast(98%); }

.asterisk-inline {
  color: var(--red);
  font-family: var(--font-display);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  height: var(--nav-height);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(251, 13, 27, 0.15);
}

.nav-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.7em 1.6em;
  border: 2px solid var(--red);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: scale(1.05);
}

.nav-cta .asterisk {
  color: var(--white);
  transition: color 0.3s ease;
}

.nav-cta:hover .asterisk {
  color: var(--red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

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

.mobile-menu .nav-cta {
  font-size: 1rem;
  margin-top: var(--space-md);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: var(--nav-height) var(--space-lg) var(--space-lg);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/textures/grunge.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  will-change: transform;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  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='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}

.hero-badge {
  margin-bottom: var(--space-lg);
}

.hero-badge-img {
  width: 140px;
  margin: 0 auto;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--light);
  opacity: 0.7;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 1em 2.5em;
  border: 3px solid var(--red);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(251, 13, 27, 0.3);
}

.btn-primary .btn-bolt {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover .btn-bolt {
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(6000%) hue-rotate(355deg) brightness(100%) contrast(98%);
  transform: rotate(-15deg) scale(1.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 1em 2.5em;
  border: 3px solid var(--black);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--light);
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
}

.hero-deco-1 {
  top: 15%;
  right: 8%;
  width: 120px;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 20%;
  left: 6%;
  width: 90px;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

/* --- SERVICES --- */
.services {
  position: relative;
  background: var(--black);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.label-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  padding: 0.4em 1em;
  border: 1px solid var(--red);
}

.label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(251, 13, 27, 0.4), transparent);
}

.section-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: var(--space-lg);
  position: relative;
  transform: rotate(var(--rotate, 0deg));
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
  transform: rotate(0deg) translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(251, 13, 27, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 3.5rem;
  color: var(--mid-gray);
  line-height: 1;
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  opacity: 0.4;
  transition: color 0.4s ease;
}

.service-card:hover .service-number {
  color: var(--red);
  opacity: 0.2;
}

.service-icon {
  margin-bottom: var(--space-md);
}

.service-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.service-card:hover .service-icon-img {
  filter: none;
  transform: scale(1.15) rotate(-8deg);
}

.service-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--light);
  opacity: 0.65;
  line-height: 1.6;
}

/* --- METRICS BAR --- */
.metrics-bar {
  background: var(--red);
  padding: var(--space-md) 0;
  overflow: hidden;
  position: relative;
}

.metrics-bar::before,
.metrics-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.metrics-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--red), transparent);
}

.metrics-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}

.marquee {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-right: var(--space-lg);
  animation: marquee 25s linear infinite;
}

.metric-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--white);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-right: 0.3em;
}

.metric-separator {
  display: flex;
  align-items: center;
}

.metric-asterisk {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  animation: rotateSlow 6s linear infinite;
}

/* --- CASES --- */
.cases {
  position: relative;
  background: var(--dark);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.cases-texture {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/textures/grunge.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.case-card {
  background: var(--dark-gray);
  border: 1px solid var(--mid-gray);
  padding: var(--space-lg);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 24px 60px rgba(251, 13, 27, 0.08);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.case-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--light);
  opacity: 0.5;
}

.case-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.3em 0.8em;
  opacity: 0.8;
}

.case-brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--mid-gray);
}

.case-metric-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--light);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.3em;
  text-transform: uppercase;
}

.case-metric-row {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.case-from {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--light);
  opacity: 0.5;
  text-decoration: line-through;
}

.case-arrow {
  color: var(--red);
  font-size: 1.2rem;
}

.case-to {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--red);
}

.case-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--light);
  opacity: 0.55;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

/* Mini bar graph */
.case-graph {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.graph-bar {
  flex: 1;
  height: var(--height);
  background: var(--mid-gray);
  border-radius: 2px 2px 0 0;
  transition: background 0.3s ease;
}

.graph-bar-highlight {
  background: var(--red);
}

.case-card:hover .graph-bar {
  background: rgba(251, 13, 27, 0.3);
}

.case-card:hover .graph-bar-highlight {
  background: var(--red);
}

/* --- ABOUT --- */
.about {
  position: relative;
  background: var(--dark-gray);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--light);
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.about-highlight {
  color: var(--white);
  opacity: 0.85;
  font-weight: 400;
  border-left: 3px solid var(--red);
  padding-left: var(--space-md);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.value-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 0.6em 1.2em;
  transition: all 0.3s ease;
}

.value-tag:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(251, 13, 27, 0.05);
}

.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-deco-1 {
  bottom: -40px;
  right: -40px;
  width: 200px;
  opacity: 0.04;
}

/* --- CONTACT --- */
.contact {
  position: relative;
  background: var(--red);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.03;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.contact-asterisk {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  margin: 0 auto var(--space-lg);
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.contact-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.contact-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.5;
  margin-top: var(--space-lg);
}

/* --- FOOTER --- */
.footer {
  background: var(--black);
  padding: var(--space-lg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  color: var(--light);
  opacity: 0.4;
  transition: all 0.3s ease;
  padding: 0.4em;
}

.social-link:hover {
  opacity: 1;
  color: var(--red);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: var(--mid-gray);
  margin: var(--space-md) 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--light);
  opacity: 0.3;
  font-style: italic;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--light);
  opacity: 0.25;
  text-transform: uppercase;
}

/* --- RESPONSIVE --- */

/* Tablet */
@media (max-width: 1024px) {
  .cases-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }

  .navbar {
    padding: 0 var(--space-md);
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    min-height: 100svh;
  }

  .hero-badge-img {
    width: 100px;
  }

  .hero-deco {
    display: none;
  }

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

  .service-card {
    transform: rotate(0deg) !important;
  }

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

  .section-container {
    padding: 0 var(--space-md);
  }

  .footer-top {
    flex-direction: column;
    gap: var(--space-md);
  }

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

  .scroll-indicator {
    bottom: var(--space-md);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-title {
    font-size: 3rem;
  }

  .case-metrics {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
