/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --red:   #E10000;
  --red2:  #a00d24;
  --gray:  #7D7D7D;
  --dgray: #2c2c2c;
  --light: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--dgray); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,46px); line-height: 1.15; color: var(--black); }
.section-title span { color: var(--red); }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.7; margin-top: 14px; max-width: 600px; }
.btn-red { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; padding: 13px 30px; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; transition: background .25s, transform .2s; border: none; cursor: pointer; }
.btn-red:hover { background: var(--red2); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--red); padding: 12px 28px; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: 2px solid var(--red); transition: all .25s; cursor: pointer; }
.btn-outline:hover { background: var(--red); color: #fff; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.06); height: var(--nav-h); display: flex; align-items: center; }
nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--black); }
.nav-logo span { color: var(--red); }
.nav-logo-img { width: 85px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--dgray); transition: color .2s; position: relative; padding-bottom: 3px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width .25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta { font-size: 13px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: var(--dgray); transition: all .3s; }
@media(max-width:900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid #eee; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────── */
.page-hero { padding: calc(var(--nav-h) + 72px) 0 72px; background: linear-gradient(135deg,#0a0a0a,#1c1c1c 50%,#2a0a10); position: relative; overflow: hidden; }
.page-hero::after { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); font-family: 'Playfair Display', serif; color: rgba(200,16,46,.06); font-weight: 700; line-height: 1; user-select: none; pointer-events: none; }
.page-about  .page-hero::after { content: 'About';    font-size: clamp(80px,16vw,200px); }
.page-contact  .page-hero::after { content: 'Contact';  font-size: clamp(60px,12vw,160px); }
.page-privacy .page-hero::after { content: 'Privacy'; font-size: clamp(60px,12vw,160px); }
.page-services .page-hero::after { content: 'Services'; font-size: clamp(80px,16vw,200px); }
.page-work     .page-hero::after { content: 'Work';     font-size: clamp(80px,18vw,220px); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,70px); color: #fff; line-height: 1.1; }
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.55); margin-top: 18px; max-width: 560px; line-height: 1.7; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: rgba(255,255,255,.7); }

/* ─── HERO (home) ────────────────────────────────────────────────────────── */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: flex; align-items: center; background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 50%, #2a0a10 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,16,46,.18) 0%, transparent 70%); }
.hero-sweep { position: absolute; right: -100px; top: 0; bottom: 0; width: 55%; background: linear-gradient(160deg, rgba(200,16,46,.12) 0%, rgba(200,16,46,.04) 100%); clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 28px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(42px, 6.5vw, 90px); line-height: 1.05; color: #fff; max-width: 760px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 28px 0 42px; max-width: 520px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 72px; flex-wrap: wrap; }
.hero-stat strong { font-size: 38px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat span { display: block; font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.hero-decor { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: min(520px, 42vw); opacity: .5; display: flex; align-items: center; justify-content: center; }
.hero-wordmark { font-size: clamp(90px, 15vw, 220px); font-family: 'Playfair Display', serif; color: rgba(200,16,46,.08); font-weight: 700; line-height: 1; user-select: none; }

/* ─── INTRO ──────────────────────────────────────────────────────────────── */
.intro { padding: 100px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-img-wrap { position: relative; }
.intro-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.intro-badge { position: absolute; bottom: -24px; right: -24px; background: var(--red); color: #fff; padding: 22px 26px; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; max-width: 180px; line-height: 1.4; }
.intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.intro-feat { display: flex; gap: 12px; align-items: flex-start; }
.intro-feat-icon { width: 36px; height: 36px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.intro-feat-text h4 { font-size: 14px; font-weight: 700; color: var(--black); }
.intro-feat-text p { font-size: 13px; color: var(--gray); margin-top: 3px; line-height: 1.5; }
@media(max-width:800px) { .intro-grid { grid-template-columns: 1fr; gap: 48px; } .intro-badge { position: static; margin-top: 16px; } }

/* ─── SERVICES (home grid) ───────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--light); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 14px auto 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card { background: var(--white); padding: 42px 34px; border-top: 3px solid transparent; transition: border-color .3s, box-shadow .3s, transform .3s; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.svc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,16,46,.03),transparent); opacity: 0; transition: opacity .3s; pointer-events: none; }
.svc-card:hover { border-top-color: var(--red); box-shadow: 0 20px 60px rgba(0,0,0,.08); transform: translateY(-4px); z-index: 1; }
.svc-card:hover::after { opacity: 1; }
.svc-icon { width: 56px; height: 56px; background: rgba(200,16,46,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 26px; }
.svc-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 10px; }
.svc-card h3 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.25; }
.svc-card p { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.svc-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; padding: 10px 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); background: transparent; border: 2px solid var(--red); font-family: inherit; position: relative; z-index: 2; cursor: pointer; align-self: flex-start; transition: background .25s, color .25s, gap .2s; }
.svc-arrow:hover { background: var(--red); color: #fff; gap: 10px; }
@media(max-width:900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── AD OPS ─────────────────────────────────────────────────────────────── */
.adops { padding: 100px 0; background: var(--dgray); }
.adops .section-tag { color: #e57; }
.adops .section-title { color: #fff; }
.adops .section-sub { color: rgba(255,255,255,.55); }
.adops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.adops-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.adops-pillar { border-left: 3px solid var(--red); padding-left: 18px; }
.adops-pillar h4 { color: #fff; font-size: 15px; font-weight: 700; }
.adops-pillar p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; margin-top: 5px; }
.adops-visual { position: relative; }
.adops-screen { background: #1a1a1a; border: 1px solid rgba(255,255,255,.1); padding: 28px; border-radius: 4px; }
.adops-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.adops-bar-label { font-size: 11px; color: rgba(255,255,255,.4); width: 90px; text-align: right; text-transform: uppercase; letter-spacing: 1px; }
.adops-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.adops-bar-fill { height: 100%; background: var(--red); border-radius: 3px; transition: width 1s ease; }
.adops-bar-val { font-size: 11px; color: rgba(255,255,255,.5); width: 36px; }
.adops-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.adops-metric { background: rgba(255,255,255,.04); padding: 14px; text-align: center; }
.adops-metric strong { display: block; font-size: 20px; font-weight: 900; color: var(--red); }
.adops-metric span { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }
@media(max-width:800px) { .adops-grid { grid-template-columns: 1fr; gap: 48px; } .adops-pillars { grid-template-columns: 1fr; } }

/* ─── TARGETING ──────────────────────────────────────────────────────────── */
.targeting { padding: 100px 0; background: var(--white); }
.targeting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.audience-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.chip { padding: 8px 18px; border: 1px solid rgba(200,16,46,.3); font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--red); cursor: default; transition: all .2s; }
.chip:hover { background: var(--red); color: #fff; }
.target-details { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.target-row { display: flex; gap: 14px; align-items: flex-start; }
.target-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.target-row p { font-size: 15px; color: var(--dgray); line-height: 1.6; }
@media(max-width:800px) { .targeting-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── VERTICALS ──────────────────────────────────────────────────────────── */
.verticals { padding: 80px 0; background: var(--light); }
.verticals-header { text-align: center; margin-bottom: 48px; }
.verticals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vert-card { background: var(--white); padding: 28px 24px; display: flex; align-items: center; gap: 16px; transition: box-shadow .25s, transform .25s; }
.vert-card:hover { box-shadow: 0 8px 32px rgba(200,16,46,.12); transform: translateY(-3px); }
.vert-icon { font-size: 28px; flex-shrink: 0; }
.vert-card h4 { font-size: 15px; font-weight: 700; color: var(--black); }
.vert-card p { font-size: 12px; color: var(--gray); margin-top: 3px; }
@media(max-width:750px) { .verticals-grid { grid-template-columns: repeat(2,1fr); } }

/* ─── PROCESS ────────────────────────────────────────────────────────────── */
.process { padding: 100px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, var(--red), rgba(200,16,46,.2)); }
.process-step { text-align: center; padding: 0 24px; }
.process-num { width: 76px; height: 76px; border-radius: 50%; background: var(--red); color: #fff; font-size: 26px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: 'Playfair Display', serif; position: relative; z-index: 1; }
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }
@media(max-width:700px) { .process-steps { grid-template-columns: 1fr; gap: 40px; } .process-steps::before { display: none; } }

/* ─── QUOTE FORM ─────────────────────────────────────────────────────────── */
.quote-section { padding: 100px 0; background: var(--dgray); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.quote-section .section-tag { color: #e57; }
.quote-section .section-title { color: #fff; }
.quote-section .section-sub { color: rgba(255,255,255,.5); }
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form input, .quote-form select, .quote-form textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 14px 18px; color: #fff; font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; transition: border-color .25s; width: 100%; }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255,255,255,.3); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--red); }
.quote-form select option { background: #2c2c2c; color: #fff; }
.quote-form textarea { resize: vertical; min-height: 110px; }
@media(max-width:800px) { .quote-grid { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; } }

/* ─── DASHBOARD ──────────────────────────────────────────────────────────── */
.dashboard-section { padding: 100px 0; background: var(--light); }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.dash-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); padding: 28px; box-shadow: 0 8px 40px rgba(0,0,0,.06); }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-card-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.dash-kpi { background: var(--light); padding: 14px 12px; text-align: center; }
.dash-kpi strong { display: block; font-size: 18px; font-weight: 900; color: var(--black); }
.dash-kpi span { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.channel-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.channel-name { font-size: 12px; font-weight: 600; width: 70px; color: var(--dgray); }
.channel-track { flex: 1; height: 5px; background: var(--light); border-radius: 3px; overflow: hidden; }
.channel-fill { height: 100%; border-radius: 3px; }
.ch-meta { background: #1877f2; }
.ch-tik  { background: #000; }
.ch-snap { background: #f9c300; }
.ch-gads { background: var(--red); }
.channel-val { font-size: 11px; color: var(--gray); width: 40px; text-align: right; }
.dash-channels { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.dash-ch-badge { padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
@media(max-width:800px) { .dash-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--white); }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { padding: 36px; border: 1px solid rgba(0,0,0,.08); position: relative; }
.testi-card::before { content: '"'; font-size: 80px; line-height: .8; font-family: 'Playfair Display', serif; color: rgba(200,16,46,.12); position: absolute; top: 20px; left: 28px; }
.testi-card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-top: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.testi-avatar { width: 46px; height: 46px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--black); }
.testi-role { font-size: 12px; color: var(--gray); }
@media(max-width:900px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px) { .testi-grid { grid-template-columns: 1fr; } }

/* ─── BRANDS ─────────────────────────────────────────────────────────────── */
.brands { padding: 60px 0; background: var(--light); overflow: hidden; }
.brands-title { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 36px; }
.brands-track { display: flex; gap: 60px; align-items: center; animation: marquee 25s linear infinite; width: max-content; }
.brand-logo { font-size: 20px; font-weight: 900; letter-spacing: -1px; color: rgba(0,0,0,.18); text-transform: uppercase; white-space: nowrap; font-family: 'Barlow', sans-serif; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────── */
.who { padding: 100px 0; background: var(--white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-top: 20px; }
.who-nums { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.who-num strong { display: block; font-size: 44px; font-weight: 900; color: var(--red); font-family: 'Playfair Display', serif; }
.who-num span { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); }
.who-img { background: var(--dgray); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 72px; }
@media(max-width:800px) { .who-grid { grid-template-columns: 1fr; gap: 48px; } .who-nums { grid-template-columns: 1fr 1fr; } }

.values { padding: 100px 0; background: var(--light); }
.values-header { text-align: center; margin-bottom: 60px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.val-card { background: var(--white); padding: 40px 32px; border-top: 3px solid transparent; transition: border-color .3s; }
.val-card:hover { border-top-color: var(--red); }
.val-icon { font-size: 36px; margin-bottom: 20px; }
.val-card h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.val-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
@media(max-width:800px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:550px) { .values-grid { grid-template-columns: 1fr; } }

.offices { padding: 100px 0; background: var(--white); }
.offices-header { text-align: center; margin-bottom: 60px; }
.offices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.office-card { padding: 40px 32px; background: var(--dgray); position: relative; overflow: hidden; }
.office-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.office-flag { font-size: 40px; margin-bottom: 20px; }
.office-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.office-card p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
@media(max-width:750px) { .offices-grid { grid-template-columns: 1fr; } }

.team { padding: 100px 0; background: var(--light); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; background: var(--dgray); display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 16px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--black); }
.team-card span { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
@media(max-width:800px) { .team-grid { grid-template-columns: repeat(2,1fr); } }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-main { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--black); }
.contact-info h2 span { color: var(--red); }
.contact-info p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-top: 16px; }
.info-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 48px; height: 48px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-text h4 { font-size: 14px; font-weight: 700; color: var(--black); }
.info-text p { font-size: 14px; color: var(--gray); margin-top: 3px; line-height: 1.6; }
.contact-form-wrap { background: var(--light); padding: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--white); border: 1px solid rgba(0,0,0,.1); padding: 14px 18px; color: var(--dgray); font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; transition: border-color .25s; width: 100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--black); margin-bottom: 28px; }
.form-title span { color: var(--red); }
@media(max-width:800px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } .form-row-2 { grid-template-columns: 1fr; } .contact-form-wrap { padding: 28px; } }

.offices-contact { padding: 80px 0; background: var(--light); }
.offices-contact-header { text-align: center; margin-bottom: 48px; }
.offices-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.office-c { background: var(--white); padding: 32px; border-top: 3px solid var(--red); }
.office-c-flag { font-size: 32px; margin-bottom: 14px; }
.office-c h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.office-c p { font-size: 14px; color: var(--gray); line-height: 1.7; }
@media(max-width:750px) { .offices-cards { grid-template-columns: 1fr; } }

.faq { padding: 100px 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.faq-item { padding: 24px; border: 1px solid rgba(0,0,0,.07); cursor: pointer; transition: border-color .25s; }
.faq-item:hover { border-color: var(--red); }
.faq-q { font-size: 15px; font-weight: 700; color: var(--black); display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.7; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--red); }
.faq-item:focus-visible { border-color: var(--red); outline: 2px solid rgba(225,0,0,.16); outline-offset: 3px; }
@media(max-width:650px) { .faq-grid { grid-template-columns: 1fr; } }

/* ─── SERVICES PAGE ──────────────────────────────────────────────────────── */
/* Privacy policy page */
.policy-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 4px; }
.policy-table th { background: var(--dgray); color: #fff; padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.policy-table td { padding: 11px 14px; border-bottom: 1px solid rgba(0,0,0,.07); color: var(--gray); vertical-align: top; line-height: 1.6; }
.policy-table tr:last-child td { border-bottom: none; }
.policy-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }
.policy-table td strong { color: var(--dgray); }
.policy-meta { display: flex; flex-direction: column; gap: 16px; }
.policy-meta-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.policy-meta-row:last-child { border-bottom: none; }
.policy-meta-label { font-size: 13px; font-weight: 700; color: var(--black); }
.policy-meta-value { font-size: 13px; color: var(--gray); text-align: right; }
.policy-meta-value-highlight { color: var(--red); font-weight: 700; }
.policy-rights-copy { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.policy-rights-copy strong { color: var(--black); }
.policy-rights-list { display: flex; flex-direction: column; gap: 12px; }
.policy-right-card { padding: 12px 16px; border-left: 3px solid var(--red); background: rgba(200,16,46,.03); }
.policy-right-title { display: block; font-size: 13px; color: var(--black); }
.policy-right-card p { font-size: 13px; color: var(--gray); margin-top: 4px; line-height: 1.6; }
.policy-request-btn { width: 100%; justify-content: center; margin-top: 24px; }
@media(max-width:560px) {
  .policy-meta-row { flex-direction: column; gap: 6px; }
  .policy-meta-value { text-align: left; }
}

.svc-full { padding: 100px 0; }
.svc-full:nth-child(odd)  { background: var(--white); }
.svc-full:nth-child(even) { background: var(--light); }
.svc-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-full-grid.reverse .svc-full-text   { order: 2; }
.svc-full-grid.reverse .svc-full-visual { order: 1; }
.svc-full-visual { position: relative; }
.svc-big-num { font-size: 180px; font-family: 'Playfair Display', serif; color: rgba(200,16,46,.06); font-weight: 700; line-height: .8; position: absolute; top: -20px; left: -20px; user-select: none; }
.svc-full-icon-box { width: 100%; aspect-ratio: 4/3; background: var(--dgray); display: flex; align-items: center; justify-content: center; font-size: 80px; position: relative; z-index: 1; }
.svc-full-icon-box.light { background: var(--white); border: 1px solid rgba(0,0,0,.07); }
.svc-sub-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.svc-sub { padding: 16px; background: var(--white); border-left: 3px solid var(--red); }
.svc-sub h5 { font-size: 13px; font-weight: 700; color: var(--black); }
.svc-sub p { font-size: 12px; color: var(--gray); margin-top: 4px; line-height: 1.5; }
.svc-full p.desc { font-size: 16px; color: var(--gray); line-height: 1.8; margin-top: 16px; }
@media(max-width:800px) { .svc-full-grid { grid-template-columns: 1fr; gap: 40px; } .svc-full-grid.reverse .svc-full-text { order: 1; } .svc-full-grid.reverse .svc-full-visual { order: 2; } .svc-sub-items { grid-template-columns: 1fr; } }

/* ─── WORK PAGE ──────────────────────────────────────────────────────────── */
.stats-bar { padding: 48px 0; background: var(--red); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 42px; font-weight: 900; color: #fff; font-family: 'Playfair Display', serif; }
.stat-item span { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media(max-width:700px) { .stats-row { grid-template-columns: repeat(2,1fr); } }

.work-section { padding: 100px 0; background: var(--white); }
.work-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { padding: 8px 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 2px solid rgba(0,0,0,.12); color: var(--gray); cursor: pointer; transition: all .25s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--red); color: var(--red); }
.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); overflow: hidden; transition: box-shadow .3s, transform .3s; cursor: pointer; }
.work-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.work-thumb { aspect-ratio: 16/10; background: var(--dgray); display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; overflow: hidden; }
.work-tag-label { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; }
.work-body { padding: 24px; }
.work-body h3 { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.work-body p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.work-meta { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.work-kpi { font-size: 11px; font-weight: 700; color: var(--red); background: rgba(200,16,46,.06); padding: 4px 10px; }
@media(max-width:900px) { .work-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .work-grid { grid-template-columns: 1fr; } }

.featured-case { padding: 100px 0; background: var(--dgray); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.featured-case .section-tag { color: #e57; }
.featured-case .section-title { color: #fff; }
.featured-case p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.8; margin-top: 16px; }
.result-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.result-chip { background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.3); color: #e57; padding: 8px 16px; font-size: 12px; font-weight: 700; letter-spacing: .5px; }
.featured-screen { background: #1a1a1a; padding: 24px; border: 1px solid rgba(255,255,255,.08); }
.channel-stat-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cs-icon { font-size: 20px; width: 36px; }
.cs-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6); width: 80px; }
.cs-track { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: hidden; }
.cs-fill { height: 100%; border-radius: 3px; }
.cs-meta { background: #1877f2; }
.cs-tik  { background: #fff; }
.cs-snap { background: #f9c300; }
.cs-gads { background: var(--red); }
.cs-prog { background: #4caf50; }
.cs-val { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); width: 36px; text-align: right; }
@media(max-width:800px) { .featured-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer { background: var(--black); color: rgba(255,255,255,.6); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; font-weight: 700; margin-bottom: 18px; }
.footer-logo span { color: var(--red); }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact p { font-size: 14px; line-height: 1.9; }
.footer-contact strong { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--red); }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:580px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1, .rd1 { transition-delay: .1s; }
.reveal-delay-2, .rd2 { transition-delay: .2s; }
.reveal-delay-3, .rd3 { transition-delay: .3s; }
.reveal-delay-4, .rd4 { transition-delay: .4s; }
.rd5 { transition-delay: .42s; }

/* ─── LOGIN PAGE ────────────────────────────────────────────────────────── */
.page-login .page-hero::after { content: 'Login'; font-size: clamp(60px,12vw,160px); }
.login-section { min-height: 100vh; padding: calc(var(--nav-h) + 40px) 24px 40px; background: var(--light); display: flex; align-items: center; justify-content: center; }
.login-section .container { display: flex; justify-content: center; width: 100%; }
.login-card { background: var(--white); max-width: 480px; width: 100%; margin: 0 auto; padding: 56px 48px; box-shadow: 0 16px 64px rgba(0,0,0,.08); border-top: 3px solid var(--red); }
.login-card-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--black); margin-bottom: 8px; }
.login-card-title span { color: var(--red); }
.login-card-sub { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 32px; }
.login-form { display: flex; flex-direction: column; gap: 20px; }
.login-field { display: flex; flex-direction: column; gap: 6px; }
.login-field label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dgray); }
.login-field input { background: var(--white); border: 1px solid rgba(0,0,0,.1); padding: 14px 18px; color: var(--dgray); font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; transition: border-color .25s; width: 100%; }
.login-field input:focus { border-color: var(--red); }
.login-field input::placeholder { color: var(--gray); }
.login-pass-wrap { position: relative; }
.login-pass-wrap input { padding-right: 72px; }
.login-pass-toggle { position: absolute; right: 0; top: 0; bottom: 0; padding: 0 16px; background: none; border: none; border-left: 1px solid rgba(0,0,0,.1); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gray); cursor: pointer; font-family: 'Barlow', sans-serif; transition: color .2s; }
.login-pass-toggle:hover { color: var(--red); }
.login-forgot { text-align: right; margin-top: -8px; }
.login-forgot a { font-size: 12px; font-weight: 600; color: var(--gray); transition: color .2s; }
.login-forgot a:hover { color: var(--red); }
.login-btn { width: 100%; justify-content: center; padding: 16px; margin-top: 4px; }
.login-error { display: none; background: rgba(200,16,46,.06); border-left: 3px solid var(--red); padding: 12px 16px; font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.login-bottom { text-align: center; font-size: 13px; color: var(--gray); margin-top: 28px; }
.login-bottom a { color: var(--red); font-weight: 600; }
.login-bottom a:hover { text-decoration: underline; }
@media(max-width:560px) { .login-card { padding: 36px 24px; } }

/* ─── TEAM PAGE ──────────────────────────────────────────────────────────── */
.page-team .page-hero::after { content: 'Team'; font-size: clamp(80px,18vw,220px); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.team-social a { width: 30px; height: 30px; background: rgba(0,0,0,.07); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--gray); transition: background .2s, color .2s; }
.team-social a:hover { background: var(--red); color: #fff; }
