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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #555;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-logo { font-weight: 700; font-size: 22px; letter-spacing: -1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 100px; font-weight: 600 !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
  transition: opacity .2s; font-family: var(--font);
}
.btn-primary:hover { opacity: .8; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--black); color: var(--black);
  padding: 12px 24px; border-radius: 100px; font-size: 14px; font-weight: 600;
  transition: background .2s, color .2s; font-family: var(--font);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 40px 80px;
  max-width: 1400px; margin: 0 auto;
}
.page-hero .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--gray-600);
  border: 1px solid var(--gray-200); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 32px;
}
.page-hero h1 {
  font-size: clamp(48px, 6vw, 88px); font-weight: 700;
  letter-spacing: -2.5px; line-height: 1.05; max-width: 900px; margin-bottom: 24px;
}
.page-hero p {
  font-size: 18px; color: var(--gray-600); max-width: 580px; line-height: 1.7;
}

/* ── SECTION ── */
.section { padding: 80px 40px; max-width: 1400px; margin: 0 auto; }
.section-full { padding: 80px 40px; }
.section-tag { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }

/* ── TAGS ── */
.tag {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  background: var(--gray-100); color: var(--gray-600);
}
.tag-white {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
}

/* ── WORK GRID ── */
.work-grid { columns: 3; column-gap: 20px; }
.work-item { break-inside: avoid; margin-bottom: 20px; position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.work-item img { width: 100%; transition: transform .5s ease; }
.work-item:hover img { transform: scale(1.04); }
.work-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  color: #fff; transform: translateY(8px); transition: transform .3s;
}
.work-item:hover .work-item-info { transform: translateY(0); }
.work-item-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.work-item-desc { font-size: 13px; opacity: .75; margin-bottom: 10px; line-height: 1.5; }
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── CLIENTS TICKER ── */
.ticker-section { padding: 60px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.ticker-label { text-align: center; font-size: 12px; color: var(--gray-400); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 36px; }
.ticker-wrapper { overflow: hidden; position: relative; }
.ticker-wrapper::before, .ticker-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.ticker-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }
.ticker-track { display: flex; gap: 60px; animation: ticker 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 18px; font-weight: 600; color: var(--gray-400); white-space: nowrap; transition: color .2s; cursor: default; }
.ticker-item:hover { color: var(--black); }

/* ── DARK BAND ── */
.dark-band { background: var(--black); color: #fff; padding: 100px 40px; text-align: center; }
.dark-band h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; letter-spacing: -2px; line-height: 1.1; max-width: 800px; margin: 0 auto 20px; }
.dark-band p { font-size: 18px; opacity: .55; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.dark-band .stats { display: flex; justify-content: center; gap: 80px; margin-top: 72px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,.1); }
.stat-num { font-size: 48px; font-weight: 700; letter-spacing: -2px; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; opacity: .45; font-weight: 500; }

/* ── FAQ ── */
.faq-section { background: var(--gray-100); padding: 100px 40px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title { font-size: clamp(36px, 4vw, 52px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 56px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; background: none; border: none; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 600; cursor: pointer; text-align: left; font-family: var(--font); color: var(--black); gap: 20px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--black); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; font-weight: 300; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 15px; color: var(--gray-600); line-height: 1.7; padding-bottom: 26px; }

/* ── FOOTER ── */
footer { background: var(--black); color: #fff; padding: 80px 40px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 72px; }
.footer-brand { font-size: 26px; font-weight: 700; letter-spacing: -1px; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; opacity: .45; line-height: 1.7; max-width: 260px; margin-bottom: 28px; }
.footer-contact a { display: block; font-size: 14px; opacity: .65; margin-bottom: 6px; transition: opacity .2s; }
.footer-contact a:hover { opacity: 1; }
.footer-col h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: .35; margin-bottom: 18px; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 14px; opacity: .6; transition: opacity .2s; }
.footer-col li a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; opacity: .35; flex-wrap: wrap; gap: 12px; }
.footer-locs { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .work-grid { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dark-band .stats { gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero, .section { padding-left: 20px; padding-right: 20px; }
  .work-grid { columns: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .dark-band .stats { flex-direction: column; gap: 32px; }
}
