@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Mono:wght@400;500&display=swap');

:root {
  --bg: #faf6ed;
  --bg-2: #f3edd9;
  --paper: #ffffff;
  --ink: #0c0c0c;
  --ink-2: #1c1c1c;
  --muted: #6b6b6b;
  --line: #1c1c1c;
  --pop: #ff3d00;
  --pop-2: #ffd60a;
  --lime: #c4e000;
  --pink: #ff5a8c;
  --blue: #2440ff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Archivo', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.anton { font-family: 'Anton', sans-serif; letter-spacing: -1px; text-transform: uppercase; }
.mono { font-family: 'Archivo Mono', monospace; }

.marquee { background: var(--ink); color: var(--bg); padding: 11px 0; overflow: hidden; border-bottom: 2px solid var(--ink); }
.marquee-track { display: flex; gap: 50px; white-space: nowrap; animation: scroll 30s linear infinite; font-family: 'Archivo Mono', monospace; font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; }
.marquee-track span::before { content: '✦'; color: var(--pop-2); margin-right: 14px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.header { background: var(--bg); border-bottom: 2px solid var(--line); padding: 18px 0; position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark { width: 52px; height: 52px; background: var(--pop); border: 3px solid var(--ink); border-radius: 50%; display: grid; place-items: center; color: var(--ink); font-family: 'Anton', sans-serif; font-size: 28px; transform: rotate(-8deg); transition: transform 0.3s; }
.logo:hover .logo-mark { transform: rotate(8deg); }
.logo-name { font-family: 'Anton', sans-serif; font-size: 30px; line-height: 1; letter-spacing: -0.5px; }
.logo-name span { color: var(--pop); }
.logo-sub { display: block; font-family: 'Archivo Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.header-nav { display: flex; gap: 30px; margin-left: auto; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15px; }
.header-nav a { color: var(--ink-2); transition: color 0.15s; position: relative; padding: 6px 0; }
.header-nav a:hover, .header-nav a.active { color: var(--pop); }
.header-nav a.active::after, .header-nav a:hover::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 3px; background: var(--pop); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; border: 2px solid var(--ink); cursor: pointer; transition: all 0.15s; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--pop); color: var(--ink); }
.btn-pop { background: var(--pop); color: var(--ink); }
.btn-pop:hover { background: var(--ink); color: var(--pop); }
.btn-yellow { background: var(--pop-2); color: var(--ink); }
.btn-yellow:hover { background: var(--ink); color: var(--pop-2); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.hero { padding: 70px 0 60px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.hero-eye { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: var(--ink); color: var(--pop-2); font-family: 'Archivo Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 32px; transform: rotate(-1deg); }
.hero-eye::before { content: '✦'; color: var(--pop); }
.hero h1 { font-family: 'Anton', sans-serif; font-size: 168px; line-height: 0.85; letter-spacing: -5px; text-transform: uppercase; }
.hero h1 .word-1 { display: block; }
.hero h1 .word-2 { display: block; color: var(--pop); padding-left: 200px; position: relative; }
.hero h1 .word-2::before { content: '→'; position: absolute; left: 70px; top: 50%; transform: translateY(-50%); font-size: 60px; color: var(--ink); -webkit-text-stroke: 0; font-family: 'Archivo', sans-serif; font-weight: 900; }
.hero h1 .word-3 { display: block; padding-left: 100px; position: relative; }
.hero h1 .word-3 .underline { position: relative; display: inline-block; }
.hero h1 .word-3 .underline::after { content: ''; position: absolute; bottom: 5%; left: -10px; right: -10px; height: 24%; background: var(--pop-2); z-index: -1; transform: rotate(-1deg); }
.hero-meta { display: flex; gap: 60px; margin-top: 50px; padding-top: 32px; border-top: 2px solid var(--ink); flex-wrap: wrap; align-items: end; }
.hero-meta-tagline { font-size: 19px; max-width: 480px; line-height: 1.4; font-weight: 500; }
.hero-meta-tagline strong { background: var(--ink); color: var(--bg); padding: 0 6px; }
.hero-meta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-stat-num { font-family: 'Anton', sans-serif; font-size: 56px; line-height: 1; color: var(--ink); }
.hero-meta-stat-label { font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-shape { position: absolute; pointer-events: none; }
.hero-shape-1 { top: 80px; right: 5%; width: 180px; height: 180px; background: var(--pop); border: 4px solid var(--ink); border-radius: 50%; transform: rotate(-15deg); z-index: 1; }
.hero-shape-1::before { content: 'BIG'; position: absolute; inset: 0; display: grid; place-items: center; font-family: 'Anton', sans-serif; font-size: 80px; color: var(--ink); }
.hero-shape-1::after { content: 'IDEAS'; position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-family: 'Archivo Mono', monospace; font-size: 14px; color: var(--ink); font-weight: 700; }
.hero-shape-2 { top: 280px; right: 18%; padding: 12px 20px; background: var(--lime); border: 3px solid var(--ink); transform: rotate(8deg); font-family: 'Archivo', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 14px; z-index: 1; }
.hero-shape-2::before { content: '⚡'; margin-right: 6px; }

.client-strip { padding: 32px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--paper); overflow: hidden; }
.client-strip-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.client-strip-eye { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px; }
.client-strip-eye::before { content: '╱╱ '; color: var(--pop); }
.clients-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; }
.client-logo { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--ink-2); opacity: 0.6; transition: all 0.15s; text-align: center; padding: 14px; border: 2px solid transparent; }
.client-logo:hover { opacity: 1; border-color: var(--ink); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.client-logo .accent { color: var(--pop); }

.section { padding: 100px 0; position: relative; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section-head { display: grid; grid-template-columns: auto 1fr; gap: 60px; align-items: end; margin-bottom: 60px; padding-bottom: 26px; border-bottom: 2px solid var(--ink); }
.section-eye { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--pop); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-eye::before { content: '✦ '; }
.section-head h2 { font-family: 'Anton', sans-serif; font-size: 96px; line-height: 0.9; letter-spacing: -2px; text-transform: uppercase; max-width: 780px; }
.section-head h2 em { font-style: normal; color: var(--pop); }
.section-head h2 .strike { text-decoration: line-through; color: var(--muted); text-decoration-thickness: 6px; text-decoration-color: var(--pop); }
.section-head .head-meta { font-family: 'Archivo Mono', monospace; font-size: 13px; color: var(--ink-2); text-align: right; line-height: 1.7; max-width: 320px; padding-bottom: 8px; }
.section-head .head-meta strong { color: var(--ink); display: block; font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0; text-transform: none; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.service { padding: 50px 40px; background: var(--paper); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); position: relative; transition: all 0.2s; min-height: 320px; display: flex; flex-direction: column; }
.service:hover { background: var(--pop-2); }
.service:nth-child(2):hover { background: var(--lime); }
.service:nth-child(3):hover { background: var(--pink); color: var(--paper); }
.service:nth-child(4):hover { background: var(--blue); color: var(--paper); }
.service-num { font-family: 'Archivo Mono', monospace; font-size: 14px; font-weight: 700; color: var(--pop); margin-bottom: 24px; letter-spacing: 1px; }
.service h3 { font-family: 'Anton', sans-serif; font-size: 64px; line-height: 0.9; text-transform: uppercase; letter-spacing: -1.5px; margin-bottom: 24px; }
.service p { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin-bottom: 22px; max-width: 520px; }
.service:hover p { color: inherit; opacity: 0.9; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.service-tag { font-family: 'Archivo Mono', monospace; font-size: 11px; padding: 6px 12px; background: var(--ink); color: var(--paper); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.service:hover .service-tag { background: var(--paper); color: var(--ink); }
.service:nth-child(3):hover .service-tag, .service:nth-child(4):hover .service-tag { background: var(--paper); color: var(--ink); }
.service-link { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; padding: 4px 0; border-bottom: 2px solid currentColor; align-self: start; margin-top: 18px; letter-spacing: 0.5px; }

.work-section { background: var(--ink); color: var(--bg); }
.work-section .section-head { border-color: var(--bg); }
.work-section .section-eye { color: var(--pop-2); }
.work-section .section-head h2 em { color: var(--pop); }
.work-section .section-head .head-meta { color: rgba(255,255,255,0.7); }
.work-section .section-head .head-meta strong { color: var(--bg); }
.work-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.work-card { border: 2px solid var(--bg); padding: 40px; transition: all 0.2s; cursor: pointer; position: relative; overflow: hidden; }
.work-card.featured { grid-row: span 2; min-height: 600px; display: flex; flex-direction: column; justify-content: space-between; }
.work-card-img { aspect-ratio: 4/3; background: var(--bg-2); margin: -40px -40px 30px; border-bottom: 2px solid var(--bg); position: relative; overflow: hidden; }
.work-card.featured .work-card-img { aspect-ratio: 16/10; }
.work-card-img svg { width: 100%; height: 100%; }
.work-card-meta { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--pop-2); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.work-card h3 { font-family: 'Anton', sans-serif; font-size: 48px; line-height: 0.95; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 14px; }
.work-card.featured h3 { font-size: 72px; }
.work-card p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 20px; }
.work-card-stats { display: flex; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); }
.work-card-stat-num { font-family: 'Anton', sans-serif; font-size: 42px; line-height: 1; color: var(--pop); }
.work-card-stat-label { font-family: 'Archivo Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.process-section { background: var(--bg-2); }
.process-grid { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.process-row { display: grid; grid-template-columns: 100px 1fr 1fr 200px; gap: 40px; padding: 36px 0; border-bottom: 2px solid var(--ink); align-items: center; transition: background 0.15s; }
.process-row:hover { background: var(--paper); }
.process-num { font-family: 'Anton', sans-serif; font-size: 80px; line-height: 1; color: var(--pop); }
.process-row h4 { font-family: 'Anton', sans-serif; font-size: 38px; line-height: 1; text-transform: uppercase; letter-spacing: -1px; }
.process-row p { font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 460px; }
.process-time { font-family: 'Archivo Mono', monospace; font-size: 13px; padding: 10px 14px; background: var(--ink); color: var(--bg); text-align: center; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.team-section { padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.team-card { background: var(--paper); padding: 30px 26px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transition: all 0.2s; }
.team-card:hover { background: var(--pop-2); }
.team-photo { aspect-ratio: 1; background: var(--bg-2); margin-bottom: 20px; position: relative; overflow: hidden; border: 2px solid var(--ink); }
.team-photo svg { width: 100%; height: 100%; }
.team-name { font-family: 'Anton', sans-serif; font-size: 28px; line-height: 1; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 4px; }
.team-role { font-family: 'Archivo Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pop); margin-bottom: 14px; font-weight: 600; }
.team-bio { font-size: 12px; color: var(--ink-2); line-height: 1.55; }

.cta-section { padding: 100px 0; background: var(--pop); position: relative; overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.cta-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.cta-section::before { content: '★'; position: absolute; top: 30px; right: 5%; font-size: 280px; line-height: 1; color: var(--ink); opacity: 0.06; transform: rotate(-15deg); }
.cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.cta-grid h2 { font-family: 'Anton', sans-serif; font-size: 120px; line-height: 0.85; letter-spacing: -3px; text-transform: uppercase; color: var(--ink); }
.cta-grid h2 em { font-style: normal; -webkit-text-stroke: 3px var(--ink); color: transparent; }
.cta-grid p { font-size: 18px; color: var(--ink); margin-top: 20px; line-height: 1.5; max-width: 520px; font-weight: 500; }
.cta-side { background: var(--ink); color: var(--bg); padding: 40px; }
.cta-side-eye { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--pop-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.cta-side h4 { font-family: 'Anton', sans-serif; font-size: 38px; line-height: 0.95; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 22px; }
.cta-side ul { list-style: none; }
.cta-side li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.15); font-family: 'Archivo Mono', monospace; font-size: 13px; display: flex; justify-content: space-between; }
.cta-side li:first-child { border-top: 0; }
.cta-side li .v { color: var(--pop-2); }
.cta-side .btn { width: 100%; justify-content: center; margin-top: 20px; background: var(--pop-2); color: var(--ink); border-color: var(--pop-2); }

.footer { background: var(--ink); color: var(--bg); padding: 70px 0 30px; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--bg); }
.footer-brand .logo-name { color: var(--bg); }
.footer-brand .logo-name span { color: var(--pop); }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 24px 0 24px; max-width: 380px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 44px; height: 44px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); display: grid; place-items: center; transition: all 0.2s; font-family: 'Anton', sans-serif; font-size: 18px; }
.footer-social:hover { background: var(--pop); color: var(--ink); border-color: var(--pop); }
.footer h5 { font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--pop-2); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 2px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--pop); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-family: 'Archivo Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; text-transform: uppercase; letter-spacing: 1px; }

.page-header { padding: 60px 0 50px; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.page-header .crumbs { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.page-header .crumbs::before { content: '╱╱ '; color: var(--pop); }
.page-header h1 { font-family: 'Anton', sans-serif; font-size: 140px; line-height: 0.9; text-transform: uppercase; letter-spacing: -3px; }
.page-header h1 em { font-style: normal; color: var(--pop); }
.page-header h1 .strike { text-decoration: line-through; text-decoration-color: var(--pop); text-decoration-thickness: 8px; }
.page-header .h1-sub { font-size: 18px; max-width: 600px; margin-top: 22px; line-height: 1.5; font-weight: 500; }

.services-detail { padding: 60px 0 100px; }
.services-detail .service-detailed { display: grid; grid-template-columns: 100px 1.4fr 1fr 200px; gap: 40px; padding: 50px 0; border-bottom: 2px solid var(--ink); align-items: start; }
.services-detail .service-detailed:last-child { border-bottom: 0; }
.service-detailed-num { font-family: 'Anton', sans-serif; font-size: 90px; line-height: 1; color: var(--pop); }
.service-detailed-info h3 { font-family: 'Anton', sans-serif; font-size: 56px; line-height: 0.95; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 14px; }
.service-detailed-info p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 18px; }
.service-detailed-info ul { list-style: none; padding-left: 0; display: grid; gap: 8px; }
.service-detailed-info li { padding-left: 28px; position: relative; font-size: 14px; }
.service-detailed-info li::before { content: '→'; position: absolute; left: 0; color: var(--pop); font-weight: 700; }
.service-detailed-stack { display: grid; gap: 8px; align-content: start; }
.service-detailed-stack .label { font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.service-detailed-stack .v { font-family: 'Anton', sans-serif; font-size: 28px; line-height: 1; color: var(--ink); margin-bottom: 14px; }
.service-detailed-side { background: var(--ink); color: var(--bg); padding: 24px; }
.service-detailed-side .label { font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--pop-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.service-detailed-side .v { font-family: 'Anton', sans-serif; font-size: 36px; line-height: 1; }
.service-detailed-side .desc { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 10px; line-height: 1.5; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 50px 0 80px; }
.contact-block { background: var(--paper); border: 2px solid var(--ink); padding: 32px; margin-bottom: 18px; position: relative; transition: all 0.2s; }
.contact-block:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.contact-block h3 { font-family: 'Anton', sans-serif; font-size: 32px; line-height: 1; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 4px; }
.contact-block .cb-sub { font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--pop); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 22px; font-weight: 600; }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 16px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--bg-2); }
.contact-row:last-child { border-bottom: 0; }
.contact-icon { width: 44px; height: 44px; background: var(--bg); border: 2px solid var(--ink); display: grid; place-items: center; flex-shrink: 0; font-family: 'Anton', sans-serif; font-size: 16px; color: var(--ink); }
.contact-text strong { display: block; font-family: 'Anton', sans-serif; font-size: 18px; text-transform: uppercase; letter-spacing: -0.3px; }
.contact-text span { font-family: 'Archivo Mono', monospace; font-size: 12px; color: var(--muted); }

.contact-form { background: var(--ink); color: var(--bg); padding: 40px; }
.contact-form h3 { font-family: 'Anton', sans-serif; font-size: 56px; line-height: 0.95; text-transform: uppercase; letter-spacing: -1.5px; margin-bottom: 6px; }
.contact-form h3 em { font-style: normal; color: var(--pop); }
.contact-form .cf-sub { font-family: 'Archivo Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Archivo Mono', monospace; font-size: 11px; color: var(--pop-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.15); font-family: 'Archivo', sans-serif; font-size: 15px; color: var(--bg); outline: 0; transition: all 0.15s; font-weight: 500; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pop); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.budget-row { display: flex; flex-wrap: wrap; gap: 8px; }
.budget-pill { padding: 10px 16px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.15); font-family: 'Anton', sans-serif; font-size: 16px; cursor: pointer; transition: all 0.15s; text-transform: uppercase; letter-spacing: 0.5px; }
.budget-pill:hover { border-color: var(--pop-2); }
.budget-pill.active { background: var(--pop); color: var(--ink); border-color: var(--pop); }
.contact-form .btn { width: 100%; justify-content: center; padding: 18px; font-size: 16px; background: var(--pop); color: var(--ink); border-color: var(--pop); }
.contact-form .btn:hover { background: var(--pop-2); border-color: var(--pop-2); }

@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; }
  .header-nav { order: 3; width: 100%; gap: 16px; padding-top: 14px; border-top: 1px solid var(--ink); margin-left: 0; flex-wrap: wrap; }
  .hero h1 { font-size: 96px; letter-spacing: -2px; }
  .hero h1 .word-2 { padding-left: 100px; }
  .hero h1 .word-2::before { font-size: 36px; left: 30px; }
  .hero h1 .word-3 { padding-left: 50px; }
  .hero-shape-1 { display: none; }
  .hero-shape-2 { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2 { font-size: 60px; }
  .section-head .head-meta { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.featured { grid-row: span 1; min-height: 400px; }
  .process-row { grid-template-columns: 60px 1fr; gap: 18px; }
  .process-row p, .process-time { grid-column: 1 / -1; }
  .process-time { justify-self: start; }
  .process-num { font-size: 52px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid h2 { font-size: 64px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-header h1 { font-size: 72px; }
  .services-detail .service-detailed { grid-template-columns: 1fr; gap: 18px; }
  .service-detailed-num { font-size: 60px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .clients-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .hero h1 { font-size: 56px; letter-spacing: -1px; }
  .hero h1 .word-2 { padding-left: 0; }
  .hero h1 .word-2::before { display: none; }
  .hero h1 .word-3 { padding-left: 0; }
  .section-head h2 { font-size: 40px; }
  .service h3 { font-size: 40px; }
  .work-card h3 { font-size: 32px; }
  .work-card.featured h3 { font-size: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-grid h2 { font-size: 44px; }
  .footer-top { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 48px; }
  .field-row { grid-template-columns: 1fr; }
  .clients-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .client-logo { font-size: 16px; padding: 10px; }
  .contact-form h3 { font-size: 36px; }
}
