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

:root {
  --bg: #f4f2ed;
  --bg-2: #ebe8df;
  --paper: #ffffff;
  --ink: #18181b;
  --ink-2: #3f3f46;
  --muted: #71717a;
  --line: #d4d4d8;
  --accent: #ff5f1f;
  --accent-2: #ffb800;
  --green: #00b85a;
  --blue: #0066ff;
  --purple: #7b2dff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Space Grotesk', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.55; -webkit-font-smoothing: antialiased; font-feature-settings: "ss01", "cv11"; }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }
code, .code { font-family: 'JetBrains Mono', monospace; font-size: 0.92em; }

.topbar { background: var(--ink); color: var(--bg); padding: 8px 0; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.5px; }
.topbar-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.topbar-status::before { content: '●'; color: var(--green); margin-right: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.topbar-meta { display: flex; gap: 28px; opacity: 0.7; }
.topbar-meta span::before { content: '> '; color: var(--accent); }

.header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; gap: 36px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.3px; }
.logo-mark { width: 36px; height: 36px; background: var(--ink); display: grid; place-items: center; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 18px; border-radius: 8px; }
.logo-name { line-height: 1.1; }
.logo-name span { display: block; font-family: 'JetBrains Mono', monospace; font-weight: 400; font-size: 10px; color: var(--muted); margin-top: 2px; letter-spacing: 0.5px; }
.header-nav { display: flex; gap: 28px; margin-left: auto; font-size: 14px; }
.header-nav a { padding: 6px 0; color: var(--ink-2); transition: color 0.15s; position: relative; }
.header-nav a:hover, .header-nav a.active { color: var(--ink); }
.header-nav a.active::before { content: '> '; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
.header-cta { display: flex; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 14px; border: 1px solid transparent; cursor: pointer; transition: all 0.15s; border-radius: 8px; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--ink); }
.btn-ghost { color: var(--ink-2); padding: 11px 8px; }
.btn-ghost:hover { color: var(--ink); }

.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black, transparent 70%); }
.hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-status { display: inline-flex; align-items: center; gap: 12px; background: var(--paper); border: 1px solid var(--line); padding: 6px 14px 6px 8px; border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 12px; margin-bottom: 28px; }
.hero-status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(0,184,90,0.2); }
.hero-status .accent { color: var(--accent); }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 92px; line-height: 0.95; letter-spacing: -3.5px; margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero h1 em { font-style: normal; background: linear-gradient(180deg, transparent 60%, var(--accent-2) 60%); padding: 0 4px; }
.hero h1 .mono-tag { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 500; color: var(--muted); vertical-align: super; margin-left: 12px; letter-spacing: 0; }
.hero-sub { font-size: 19px; max-width: 580px; color: var(--ink-2); margin-bottom: 36px; line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-actions .btn { padding: 14px 24px; font-size: 15px; }

.code-window { background: var(--ink); border-radius: 12px; padding: 20px 24px; max-width: 660px; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.25); position: relative; }
.code-window-top { display: flex; align-items: center; gap: 6px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid #27272a; }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.r { background: #ff5f56; }
.code-dot.y { background: #ffbd2e; }
.code-dot.g { background: #28ca42; }
.code-window-title { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #71717a; }
.code-window pre { font-family: 'JetBrains Mono', monospace; font-size: 13px; line-height: 1.7; color: #d4d4d8; }
.code-window pre .kw { color: #ff7b72; }
.code-window pre .fn { color: #d2a8ff; }
.code-window pre .str { color: #a5d6ff; }
.code-window pre .num { color: #79c0ff; }
.code-window pre .com { color: #6e7681; }

.metric-strip { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.metric-strip::before { content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 1px; background: var(--ink); }
.metric { position: relative; }
.metric:not(:last-child)::after { content: ''; position: absolute; right: -16px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.metric-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.metric-label::before { content: '#'; color: var(--accent); font-weight: 600; }
.metric-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 44px; line-height: 1; letter-spacing: -1.5px; }
.metric-value .small { font-size: 24px; color: var(--muted); }
.metric-trend { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--green); }

.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: 28px; border-bottom: 1px solid var(--line); }
.section-eye { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); margin-bottom: 14px; letter-spacing: 1px; text-transform: uppercase; }
.section-eye::before { content: '// '; color: var(--muted); }
.section-head h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 60px; line-height: 1; letter-spacing: -2px; max-width: 600px; }
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-head .head-meta { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); text-align: right; line-height: 1.7; max-width: 400px; }
.section-head .head-meta strong { color: var(--ink); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { padding: 36px 32px; background: var(--paper); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background 0.2s; }
.service:hover { background: var(--bg-2); }
.service-num { position: absolute; top: 24px; right: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.service-icon { width: 56px; height: 56px; background: var(--ink); display: grid; place-items: center; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 20px; border-radius: 12px; margin-bottom: 24px; }
.service h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 24px; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 12px; }
.service p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.service-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 4px 10px; background: var(--bg-2); border-radius: 100px; color: var(--ink-2); }
.service-link { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.process-row { display: grid; grid-template-columns: 80px 1fr 1fr 200px; gap: 32px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-row:last-child { border-bottom: 0; }
.process-num { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 28px; color: var(--accent); }
.process-row h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 26px; line-height: 1.1; letter-spacing: -0.5px; }
.process-row h4 .mono-meta { display: block; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 400; letter-spacing: 0; }
.process-row p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }
.process-stack { display: flex; flex-direction: column; gap: 8px; align-items: end; }
.process-stack-item { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-2); }
.process-stack-item::before { content: '✓ '; color: var(--green); }

.tech-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.tech-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.tech-cat { padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.tech-cat:nth-child(2n) { border-right: 0; }
.tech-cat:nth-last-child(-n+2) { border-bottom: 0; }
.tech-cat-name { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.tech-items { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-pill { font-family: 'JetBrains Mono', monospace; font-size: 12px; padding: 6px 12px; background: var(--bg-2); border-radius: 6px; color: var(--ink); }
.tech-pill.primary { background: var(--ink); color: var(--bg); }

.tech-side { background: var(--ink); color: var(--bg); padding: 36px; border-radius: 14px; position: sticky; top: 80px; }
.tech-side h4 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.5px; }
.tech-side p { font-size: 14px; color: #a1a1aa; line-height: 1.6; margin-bottom: 24px; }
.tech-side-list { list-style: none; }
.tech-side-list li { padding: 12px 0; border-top: 1px solid #27272a; display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.tech-side-list li:first-child { border-top: 0; }
.tech-side-list .v { color: var(--accent); }

.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case { padding: 40px 36px; background: var(--paper); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.case-tag { position: absolute; top: 24px; right: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 4px 10px; background: var(--ink); color: var(--bg); border-radius: 100px; }
.case-tag.live { background: var(--green); }
.case-eye { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); margin-bottom: 16px; }
.case h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 30px; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 8px; }
.case-client { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.case p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 26px; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.case-stat-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.case-stat-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; line-height: 1; }
.case-stat-value.ok { color: var(--green); }
.case-stack { display: flex; flex-wrap: wrap; gap: 6px; }

.team-section { background: var(--ink); color: var(--bg); }
.team-section .section-eye { color: var(--accent-2); }
.team-section .section-head { border-color: #27272a; }
.team-section .section-head h2 { color: var(--bg); }
.team-section .section-head h2 em { color: var(--accent-2); }
.team-section .section-head .head-meta { color: #a1a1aa; }
.team-section .section-head .head-meta strong { color: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { background: #18181b; border: 1px solid #27272a; border-radius: 14px; padding: 24px; transition: all 0.2s; }
.team-card:hover { border-color: var(--accent); }
.team-photo { aspect-ratio: 1; background: #27272a; border-radius: 10px; margin-bottom: 18px; position: relative; overflow: hidden; }
.team-photo svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.team-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.team-role { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent-2); margin-bottom: 12px; }
.team-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #71717a; line-height: 1.6; }

.cta-section { padding: 80px 0; background: var(--bg-2); }
.cta-card { background: var(--ink); color: var(--bg); border-radius: 20px; padding: 60px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: var(--accent); opacity: 0.15; border-radius: 50%; filter: blur(60px); }
.cta-card h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 56px; line-height: 1; letter-spacing: -2px; margin-bottom: 18px; position: relative; }
.cta-card h2 em { font-style: normal; color: var(--accent); }
.cta-card p { font-size: 17px; color: #a1a1aa; max-width: 500px; line-height: 1.5; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.cta-card .btn-primary { background: var(--accent); }
.cta-card .btn-primary:hover { background: var(--bg); color: var(--ink); }
.cta-card .btn-outline { border-color: #52525b; color: var(--bg); }
.cta-card .btn-outline:hover { background: #27272a; }
.cta-side-info { position: relative; }
.cta-info-row { padding: 16px 0; border-top: 1px solid #27272a; display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 13px; }
.cta-info-row:first-child { border-top: 0; }
.cta-info-row .label { color: #71717a; }

.footer { background: var(--ink); color: var(--bg); padding: 70px 0 30px; border-top: 1px solid #27272a; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--bg); }
.footer-brand .logo-mark { background: var(--accent); color: var(--ink); }
.footer-brand p { font-size: 14px; color: #a1a1aa; line-height: 1.7; max-width: 360px; margin: 24px 0 28px; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; padding: 6px 12px; border: 1px solid #27272a; border-radius: 100px; }
.footer-status::before { content: '●'; color: var(--green); animation: pulse 2s infinite; }
.footer h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; color: #a1a1aa; }
.footer a:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid #27272a; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #71717a; }

.page-header { padding: 60px 0 50px; background: var(--bg); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; opacity: 0.5; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent 80%); }
.page-header .crumbs { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); margin-bottom: 16px; position: relative; }
.page-header .crumbs::before { content: '$ '; color: var(--accent); }
.page-header h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 76px; letter-spacing: -3px; line-height: 0.95; position: relative; }
.page-header h1 em { font-style: normal; color: var(--accent); }
.page-header .h1-sub { font-size: 18px; color: var(--ink-2); margin-top: 18px; max-width: 580px; line-height: 1.5; position: relative; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 60px 0; }
.contact-block { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 28px; margin-bottom: 16px; }
.contact-block h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 4px; letter-spacing: -0.3px; }
.contact-block .cb-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 16px; align-items: start; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 40px; height: 40px; background: var(--bg); display: grid; place-items: center; border-radius: 8px; flex-shrink: 0; font-size: 18px; }
.contact-text { flex: 1; }
.contact-text strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 15px; }
.contact-text span { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); }

.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 36px; }
.contact-form h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; letter-spacing: -1px; margin-bottom: 6px; }
.contact-form h3 em { font-style: normal; color: var(--accent); }
.contact-form .cf-sub { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; color: var(--ink); outline: 0; transition: all 0.15s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); background: var(--paper); }
.field textarea { min-height: 110px; resize: vertical; font-family: 'Space Grotesk', sans-serif; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.check-pill { padding: 8px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; font-family: 'JetBrains Mono', monospace; font-size: 12px; cursor: pointer; transition: all 0.15s; }
.check-pill:hover { border-color: var(--ink); }
.check-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.contact-form .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

@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(--line); margin-left: 0; flex-wrap: wrap; }
  .topbar-meta { display: none; }
  .hero h1 { font-size: 56px; letter-spacing: -2px; }
  .metric-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
  .metric:nth-child(2)::after { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2 { font-size: 40px; }
  .section-head .head-meta { text-align: left; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .process-row p, .process-stack { grid-column: 1 / -1; }
  .process-stack { align-items: start; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .tech-grid { grid-template-columns: 1fr; gap: 24px; }
  .tech-side { position: static; }
  .cases-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
  .cta-card h2 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 52px; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .hero h1 { font-size: 40px; }
  .hero h1 .mono-tag { font-size: 14px; }
  .metric-strip { grid-template-columns: 1fr; padding: 24px; }
  .metric::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-list { grid-template-columns: 1fr; }
  .tech-cat { border-right: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 32px; }
  .page-header h1 { font-size: 36px; }
  .cta-card h2 { font-size: 32px; }
}
