/* =========================
   TYPOGRAPHY SYSTEM
========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
	--font-primary: 'DM Sans', sans-serif;
	--bg: #F5F3EE;
    --ink: #111110;
    --muted: #888880;
    --accent: #C8FF00;
    --accent-dark: #9FCC00;
    --white: #FFFFFF;
    --border: rgba(17,17,16,0.12);
    --sans: var(--font-primary);

  /* Font sizes (fluid) */
  --h1: clamp(2.5rem, 5vw, 4rem);
  --h2: clamp(2rem, 4vw, 3rem);
  --h3: clamp(1.6rem, 3vw, 2.2rem);
  --h4: clamp(1.3rem, 2.5vw, 1.8rem);
  --h5: 1.1rem;
  --h6: 0.95rem;

  --body: 1rem;
  --small: 0.875rem;

  /* Line heights */
  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* Font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  --container-width: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-padding: 20px;
}

/* Reset */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--body);
  line-height: var(--lh-body);
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  line-height: var(--lh-heading);
  margin: 0 0 10px;
  font-weight: var(--fw-semibold);
}

/* Individual sizes */
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

h1, h2, h3 {
  letter-spacing: -0.02em;
}

p {
  max-width: 65ch;
}
/* Paragraph */
p {
  margin: 0 0 10px;
}
/* Small text */
.small {
  font-size: var(--small);
}
/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-bold { font-weight: var(--fw-bold); }
.text-medium { font-weight: var(--fw-medium); }
.text-muted { color: #777; }
.text-black {
  color: #000000;
}
.text-white {
  color: #ffffff;
}

/* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 48px;
    
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-color: var(--border); }

  .nav-logo {
    width: 90px;
	height: auto;
  }
  .nav-logo span { font-weight: 400; }

  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--muted);
    text-decoration: none;
	text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }

  .nav-cta {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ink);
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-counter {
    position: absolute; top: 50%; left: 48px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--muted);
    display: flex; align-items: center; gap: 12px;
  }
  .hero-counter::before {
    content: '';
    display: block;
    width: 1px; height: 60px;
    background: var(--muted);
  }

  .hero-tag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px; height: 1px;
    background: var(--muted);
  }

  .hero-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(64px, 9vw, 140px);
    font-weight: 400; /* 👈 better for hero impact */
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 900px;
}
  .hero-headline em {
    font-style: italic;
    color: var(--muted);
  }

  .hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 56px;
    gap: 32px;
  }
  .hero-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.7;
  }

  .hero-actions { display: flex; align-items: center; gap: 20px; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: var(--accent);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer; border: none;
  }
  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,255,0,0.35); }
  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translate(2px,-2px); }

  .btn-ghost {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--ink); }

  .hero-scroll {
    position: absolute;
    bottom: 80px; right: 48px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }
  
  
  /* HERO GRID */
.hero-grid {
  padding: 50px;
  padding-top: 100px;
  display: grid;
  place-items: center;
}

/* HERO CARD */
.hero-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 80vh;   /* 🔥 responsive height */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 KEY FIX */
  object-position: center;
}
/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
}

/* OVERLAY */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 40px;
}

/* TEXT */
.hero-top-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 90px);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-subtext {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
}
/* TABLET */
@media (max-width: 768px) {
  .hero-grid {
    padding: 20px;
    padding-top: 80px;
  }

  .hero-card {
    min-height: 70vh;
  }

  .hero-content {
    padding: 20px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .hero-card {
    min-height: 60vh;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(28px, 10vw, 48px);
  }

  .hero-subtext {
    font-size: 14px;
  }
}
  
  /* ── MARQUEE ── */
  .marquee-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    display: inline-flex; align-items: center; gap: 32px;
    padding: 0 32px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .marquee-dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── WORK ── */
  .section { padding: 120px 48px; }

  .section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
  }
  .section-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .section-title {
    
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; color: var(--muted); }
  .section-link {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s, gap 0.2s;
  }
  .section-link:hover { color: var(--ink); gap: 14px; }

  .work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    grid-auto-rows: 1fr;
  }

  .work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
	grid-auto-rows: 500px; /* smaller cards */
	border: 1px solid #eaeaea; /* 👈 consistent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .work-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
  
  .work-card-img {
    width: 100%; height: 100%;
    min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
  }
  .work-card:first-child .work-card-img { min-height: 450px; }
  .work-card:hover .work-card-img { transform: scale(1.01); }

  /* Card color themes */
  .card-1 {
	background: #FBFAF9;
	border-radius: 20px;
	border: 0px solid #eaeaea;
  }

  .card-2 {
   background: #FBFAF9;
   border-radius: 20px;
   border: 1px solid #eaeaea;
  }

  .card-3 {
    background: #331515;
	border-radius: 20px;
    border: 0px solid #ffffff;
  }
  .card-4 {
    background: #19212e;
	border-radius: 20px;
    border: 0px solid #19212e;
  }

  .card-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* important for cropping */
  }
  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* main fix */
    object-position: center; /* keeps focus center */
  }
  .card-visual {
    position: absolute;
	inset: 0;
    display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .card-shape {
    border-radius: 50%;
    opacity: 0.15;
    position: absolute;
  }

  .work-card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    color: inherit; /* IMPORTANT */
    transform: translateY(8px);
    transition: transform 0.3s;
  }
  .work-card:hover .work-card-info { transform: translateY(0); }
  
  .work-card-info.is-white {
  color: #ffffff;
}

.work-card-info.is-dark {
  color: #111110;
}

  .card-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 8px;
  }
  .card-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1;
  }
  .card-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
  }
  .work-card:hover .card-arrow { opacity: 1; transform: scale(1); }

  /* ── SERVICES ── */
  .services-bg { background: var(--ink); color: var(--white); }
  .services-bg .section-label { color: rgba(255,255,255,0.4); }
  .services-bg .section-title { color: var(--white); }
  .services-bg .section-title em { color: rgba(255,255,255,0.35); }
  .services-bg .section-link { color: rgba(255,255,255,0.4); }
  .services-bg .section-link:hover { color: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
  }
  .service-item {
    padding: 48px 40px;
    background: var(--ink);
    transition: background 0.3s;
    cursor: default;
  }
  .service-item:hover { background: #1E1E1C; }

  .service-num {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 32px;
  }
  .service-icon {
    width: 40px; height: 40px;
    background: rgba(200,255,0,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
  }
  .service-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .service-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }
  .service-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8FF00;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #C8FF00;
  transition: 0.3s ease;
}

.service-link:hover::after {
  width: 100%;
}

.service-link:hover {
  opacity: 0.8;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #C8FF00;
}

.service-icon i {
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
  transform: scale(1.1);
}

/* AI Code */
.ai-section { padding: 120px 40px; } .ai-list { display: flex; flex-direction: column; gap: 16px; /* tighter */ } .ai-item { position: relative; display: flex; align-items: center; padding: 22px 26px; border-radius: 14px; border: 1px solid #eaeaea; text-decoration: none; color: #111; overflow: hidden; transition: background 0.3s ease, transform 0.2s ease; } .ai-item:hover { background: #f7f7f7; transform: translateY(-2px); } /* LEFT GROUP */ .ai-left { display: flex; align-items: center; gap: 20px; } /* number */ .ai-num { font-size: 16px; opacity: 0.5; width: 60px; } /* name */ .ai-name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; } /* badges */ .ai-badges { display: flex; gap: 8px; margin-left: 60px; } .badge { font-size: 12px; padding: 4px 8px; border-radius: 20px; background: #eee; } .badge.red { background: #ff4d4d; color: #fff; } .badge.dark { background: #111; color: #fff; } /* TAGS (center push) */ .ai-tags { display: flex; gap: 14px; margin-left: auto; margin-right: 200px; } .ai-tags span { font-size: 14px; padding: 4px 10px; border-radius: 20px; background: #eee; white-space: nowrap; } /* BUTTON */ .ai-btn { font-size: 16px; opacity: 0.7; transition: transform 0.3s ease, opacity 0.3s; } .ai-item:hover .ai-btn { transform: translateX(6px); opacity: 1; } /* PREVIEW IMAGE */ .ai-preview { position: fixed; width: 260px; height: 160px; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.9); transition: opacity 0.2s ease, transform 0.2s ease; z-index: 999; } .ai-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; } /* hover */ .ai-item:hover .ai-preview { opacity: 1; transform: translate(-50%, -50%) scale(1); }


  /* ── STATS ── */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 80px;
  }
  .stat-item {
    padding: 40px 32px;
    background: var(--bg);
    text-align: center;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 560px;
    border-radius: 20px;
    overflow: hidden;
    background: #E0DDD5;
  }
  .about-shapes {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .about-content { padding: 24px 0; }
  .about-lead {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .about-lead em { font-style: italic; color: var(--muted); }
  .about-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 36px;
  }
  .about-tag {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
  }
  .about-tag:hover { border-color: var(--ink); color: var(--ink); }

  /* ── PROCESS ── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 72px;
  }
  .process-step {
    position: relative;
    padding-top: 32px;
  }
  .process-step::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--border);
    transition: background 0.3s;
  }
  .process-step:hover::before { background: var(--accent); }

  .step-num {
    font-size: 11px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  .step-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
  }

  /* ── CLIENTS ── */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 64px;
  }
  .client-cell {
    background: var(--bg);
    padding: 40px 24px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .client-cell:hover { background: #EFECE5; }
  .client-name {
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
  }
  .client-cell:hover .client-name { color: var(--ink); }

  /* ── CTA ── */
  .cta-section {
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif);
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 400;
    color: rgba(17,17,16,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
  }
  .cta-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .cta-headline {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    position: relative;
  }
  .cta-headline em { font-style: italic; color: var(--muted); }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .footer-logo {
    font-family: var(--sans);
    font-weight: 200;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .footer-logo span { font-weight: 400; }
  .footer-copy {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    text-align: center;
    letter-spacing: 0.05em;
  }
  .footer-links {
    display: flex; gap: 28px; justify-content: flex-end;
    list-style: none;
  }
  .footer-links a {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--ink); }

  /* ── CURSOR ── */
  .cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
    mix-blend-mode: multiply;
  }
  .cursor.expanded {
    width: 48px; height: 48px;
    background: var(--accent);
    opacity: 0.7;
  }

  /* ── ANIMATED ENTRANCE ── */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.45s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 20px 32px; }
    .hero { padding: 0 32px 64px; }
    .section { padding: 80px 32px; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card:first-child { grid-row: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 380px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(3,1fr); }
    footer { grid-template-columns: 1fr; text-align: center; }
    .footer-links { justify-content: center; }
    .hero-counter { display: none; }
    .hero-scroll { display: none; }
  }
  @media (max-width: 640px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .hero { padding: 0 24px 48px; }
    .section { padding: 64px 24px; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .process-steps { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2,1fr); }
    .stats-row { grid-template-columns: 1fr 1fr; }
    footer { padding: 32px 24px; }
    .cta-section { padding: 80px 24px; }
  }
  /* DESKTOP (default) */
.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* TABLET */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
