:root {
  --ink: #111318;
  --muted: #626b78;
  --paper: #f4f6f8;
  --line: #dbe1e8;
  --accent: #b7f34b;
  --accent-dark: #4d7c0f;
  --warm: #ff7a59;
  --blue: #4f8cff;
  --white: #ffffff;
  --panel: #ffffff;
  --deep: #161b22;
  --soft: #eef3f8;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(244, 246, 248, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 -2px 0 rgba(17,19,24,.16);
}
.logo-mark.large {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 27px;
}
.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}
.nav a { white-space: nowrap; }
.nav a:hover { color: var(--ink); }
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
}
.hero-v2 {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}
.btn.primary {
  background: var(--deep);
  color: var(--white);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.hero-panel {
  display: flex;
  justify-content: center;
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.proof-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.product-shot {
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid #2b3440;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--accent), -12px -12px 0 var(--blue);
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 4px 18px;
  color: rgba(255,255,255,.72);
}
.product-top span { font-weight: 850; color: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.product-card {
  min-height: 126px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.product-card.hot {
  background: var(--accent);
  color: var(--ink);
}
.product-card small,
.product-card em {
  display: block;
  color: inherit;
  opacity: .68;
  font-style: normal;
}
.product-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 44px;
  line-height: 1;
}
.lead-preview {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  margin-top: 10px;
}
.lead-preview p { margin: 2px 0 0; color: rgba(255,255,255,.62); }
.lead-preview button {
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  min-height: 38px;
  padding: 0 12px;
  font: inherit;
  font-weight: 850;
}
.lead-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--warm);
}
.lead-dot.blue { background: #7fa7da; }
.window {
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid #1b2a33;
  border-radius: 8px;
  background: #13232b;
  color: var(--white);
  box-shadow: 22px 22px 0 #d9ad73;
}
.dots { display: flex; gap: 8px; margin-bottom: 22px; }
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e96c5c;
}
.dots span:nth-child(2) { background: #e2b93b; }
.dots span:nth-child(3) { background: #52b788; }
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.metric-row span { color: #b9e7dc; }
.pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.pipeline div {
  min-height: 95px;
  padding: 12px;
  border-radius: 8px;
  background: #f6f0e6;
  color: var(--ink);
}
.pipeline b { display: block; font-size: 13px; }
.pipeline span { font-size: 32px; font-weight: 850; }
.code-lines { margin-top: 18px; display: grid; gap: 10px; }
.code-lines i {
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #6cc6b0, #d8c063, transparent);
}
.code-lines i:nth-child(2) { width: 75%; }
.code-lines i:nth-child(3) { width: 58%; }
.code-lines i:nth-child(4) { width: 86%; }
.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: var(--deep);
}
.strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
}
.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}
.section-head { max-width: 760px; margin-bottom: 32px; }
.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-head p:not(.eyebrow), .case-list p { color: var(--muted); font-size: 18px; }
.muted { background: #e9f0f6; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-grid-v2 {
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
}
.card {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.card.featured {
  grid-column: span 2;
  background: var(--deep);
  color: var(--white);
}
.card h3 { margin: 14px 0 10px; font-size: 25px; line-height: 1.12; }
.card p, .card li { color: inherit; opacity: .78; }
.tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(13, 124, 102, .12);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
}
.featured .tag { background: rgba(183,243,75,.16); color: var(--accent); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps div {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.steps span { color: var(--warm); font-weight: 850; }
.split {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 42px;
}
.case-list {
  display: grid;
  gap: 16px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fit-grid div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(16,24,32,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.55);
}
.fit-grid b {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
.fit-grid p { color: var(--muted); margin: 0; }
.process-list p {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact { background: var(--deep); color: var(--white); }
.contact .eyebrow { color: var(--accent); }
.contact .section-head p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.contact .btn.primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1060px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}
input, textarea, select {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.form-status { margin: 8px 0 0; min-height: 24px; color: var(--accent); }
.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px) 24px;
  background: #0f141b;
  color: var(--white);
}
.footer-main {
  max-width: 560px;
}
.footer-main p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 18px;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 170px;
}
.footer-col b { color: var(--accent); }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
}
.admin-body { background: var(--soft); }
.admin-shell { min-height: 100vh; }
.admin-login {
  position: relative;
  max-width: 520px;
  margin: 10vh auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  overflow: hidden;
  box-shadow: 22px 22px 0 var(--accent);
}
.admin-login::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 28px;
  background: var(--blue);
  transform: rotate(18deg);
  opacity: .22;
}
.login-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 950;
}
.admin-login h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 52px;
  line-height: 1;
}
.admin-login p,
.admin-login form { position: relative; z-index: 1; }
.admin-login p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.admin-login input { border-color: rgba(255,255,255,.2); }
.admin-login .btn.primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.admin-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}
.hidden { display: none !important; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background: var(--deep);
  color: var(--white);
}
.admin-sidebar .brand { color: var(--white); }
.side-nav {
  display: grid;
  gap: 8px;
}
.side-nav a {
  padding: 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.68);
  font-weight: 800;
}
.side-nav a.active,
.side-nav a:hover {
  background: rgba(183,243,75,.12);
  color: var(--white);
}
.admin-sidebar .btn {
  margin-top: auto;
  color: var(--white);
  border-color: rgba(255,255,255,.32);
}
.admin-workspace {
  padding: clamp(22px, 3vw, 40px);
  overflow: hidden;
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.admin-head h1 { margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: .95; }
.admin-actions { display: flex; gap: 10px; }
.search-input {
  width: min(42vw, 520px);
  min-height: 48px;
  background: var(--panel);
}
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.stat, .lead-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.stat { padding: 18px; min-height: 118px; }
.stat b { display: block; margin: 4px 0; font-size: 42px; line-height: 1; }
.stat span { color: var(--muted); font-weight: 800; }
.stat small { color: var(--muted); }
.kanban {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}
.column {
  min-height: 520px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.45);
}
.column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.column-head h2 { margin: 0; font-size: 20px; }
.column-head span {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-weight: 850;
}
.column-list { display: grid; gap: 12px; }
.lead-card { padding: 16px; }
.lead-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.lead-card h3 { margin: 0; font-size: 21px; line-height: 1.15; }
.lead-card time { color: var(--muted); font-size: 13px; white-space: nowrap; }
.lead-card p { margin: 8px 0; color: var(--muted); font-size: 15px; overflow-wrap: anywhere; }
.lead-service {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(183, 243, 75, .24);
  color: var(--accent-dark) !important;
  font-weight: 850;
}
.lead-message { color: var(--ink) !important; }
.lead-contact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.lead-contact a,
.lead-table a { color: var(--accent-dark); font-weight: 850; }
.lead-card select, .lead-card textarea { margin-top: 10px; min-height: 42px; font-size: 14px; background: #fff; }
.empty-state {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,.45);
}
.table-section {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.analytics-section {
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.analytics-card {
  min-height: 110px;
  padding: 18px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}
.analytics-card span {
  color: rgba(255,255,255,.65);
  font-weight: 800;
}
.analytics-card b {
  display: block;
  margin-top: 8px;
  font-size: 40px;
  line-height: 1;
}
.analytics-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
}
.analytics-details > div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.analytics-details h3 {
  margin: 0 0 10px;
  font-size: 17px;
}
.mini-row,
.visit-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.visit-row {
  display: grid;
}
.mini-row span,
.visit-row span {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.small-empty { min-height: 82px; }
.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.table-head h2 { margin: 0; font-size: 26px; }
.lead-table { overflow-x: auto; }
.lead-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.lead-table th,
.lead-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.lead-table th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lead-table span { color: var(--muted); }
.status-pill {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(47, 95, 152, .12);
  color: var(--blue) !important;
  font-weight: 850;
}
.table-empty { min-height: 170px; }

.studio-hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 72px);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.hero-metrics div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
}
.hero-metrics b { display: block; margin-bottom: 4px; font-size: 18px; }
.hero-metrics span { color: var(--muted); font-size: 14px; }
.studio-board {
  padding: 18px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--accent), -14px -14px 0 var(--blue);
}
.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 4px 18px;
  color: rgba(255,255,255,.72);
}
.board-top b { color: var(--accent); }
.board-layout { display: grid; grid-template-columns: 54px 1fr; gap: 14px; }
.board-layout aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.board-layout aside span {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}
.board-layout aside span.active { background: var(--accent); }
.board-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.board-cards div {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.board-cards div:first-child { background: var(--accent); color: var(--ink); }
.board-cards small { display: block; opacity: .72; }
.board-cards b { display: block; margin-top: 8px; font-size: 38px; line-height: 1; }
.deal-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  margin-top: 10px;
}
.deal-row i { width: 10px; height: 10px; border-radius: 999px; background: var(--accent); }
.deal-row i.blue { background: var(--blue); }
.deal-row i.orange { background: var(--warm); }
.deal-row p { margin: 0; }
.deal-row span { display: block; color: rgba(255,255,255,.62); }
.deal-row em {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  font-style: normal;
  font-weight: 850;
}
.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-block: 1px solid rgba(255,255,255,.1);
  background: var(--deep);
}
.trust-band span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
}
.wide-head { max-width: 980px; }
.case-grid, .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.case-card.dark { background: var(--deep); color: var(--white); }
.case-card h3 { margin: 18px 0 12px; font-size: 31px; line-height: 1.05; }
.case-card p { color: var(--muted); }
.case-card.dark p { color: rgba(255,255,255,.68); }
.case-card dl { margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.case-card.dark dl { border-color: rgba(255,255,255,.14); }
.case-card dt { color: var(--accent-dark); font-weight: 900; }
.case-card.dark dt { color: var(--accent); }
.case-card dd { margin: 6px 0 0; color: inherit; opacity: .75; }
.services-pro, .faq-section { background: var(--soft); }
.service-stack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-stack div {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.service-stack b { color: var(--blue); }
.service-stack h3 { margin: 18px 0 10px; font-size: 25px; line-height: 1.1; }
.service-stack p { color: var(--muted); }
.process-pro { background: var(--deep); color: var(--white); }
.process-pro .eyebrow { color: var(--accent); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline div {
  min-height: 290px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 950;
}
.timeline h3 { margin: 22px 0 10px; font-size: 26px; }
.timeline p { color: rgba(255,255,255,.68); }
.price-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.price-grid article.featured-price { background: var(--accent); }
.price-grid h3 { margin: 18px 0 10px; font-size: 30px; line-height: 1.05; }
.price-grid p { color: var(--muted); }
.price-grid b { margin-top: auto; font-size: 30px; }
.faq-grid { display: grid; gap: 10px; max-width: 980px; }
.faq-grid details { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 18px 20px; }
.faq-grid summary { cursor: pointer; font-weight: 900; font-size: 20px; }
.faq-grid p { color: var(--muted); margin-bottom: 0; }
.contact-pro { border-top: 1px solid rgba(255,255,255,.1); }

@media (max-width: 980px) {
  .hero, .studio-hero, .split { grid-template-columns: 1fr; }
  .hero-metrics, .case-grid, .price-grid { grid-template-columns: 1fr; }
  .service-stack, .timeline { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .lead-form { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .analytics-details { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .admin-panel { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }
  .side-nav { display: flex; }
  .admin-sidebar .btn { margin-top: 0; margin-left: auto; }
  .search-input { width: 100%; }
  .admin-actions { width: 100%; }
  .kanban { grid-template-columns: repeat(5, minmax(260px, 1fr)); }
}

@media (max-width: 680px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: auto; padding-top: 36px; }
  .window { box-shadow: 10px 10px 0 #d9ad73; }
  .product-shot { box-shadow: 8px 8px 0 #0d7c66; }
  .product-grid { grid-template-columns: 1fr; }
  .board-layout { grid-template-columns: 1fr; }
  .board-layout aside { display: none; }
  .board-cards { grid-template-columns: 1fr; }
  .deal-row { grid-template-columns: 12px 1fr; }
  .deal-row em { grid-column: 2; width: fit-content; }
  .service-stack, .timeline { grid-template-columns: 1fr; }
  .lead-preview { grid-template-columns: 12px 1fr; }
  .lead-preview button { grid-column: 2; }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .card.featured { grid-column: span 1; }
  .admin-head { align-items: flex-start; flex-direction: column; }
  .admin-actions { flex-direction: column; }
  .admin-sidebar { align-items: flex-start; flex-direction: column; }
  .side-nav { width: 100%; overflow-x: auto; }
  .analytics-grid { grid-template-columns: 1fr; }
}
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-weight: 900;
  color: var(--muted);
}

@media (max-width: 760px) {
  html { scroll-padding-top: 116px; }
  body { overflow-x: hidden; }
  .topbar {
    gap: 12px;
    padding: 12px 14px 10px;
  }
  .topbar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 52px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(244,246,248,0), rgba(244,246,248,.96));
  }
  .brand { font-size: 21px; }
  .logo-mark {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }
  .nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    font-size: 14px;
  }
  .studio-hero {
    min-height: auto;
    gap: 28px;
    padding: 34px 14px 46px;
  }
  .hero-logo {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .logo-mark.large {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 23px;
  }
  .eyebrow {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .07em;
  }
  .studio-hero h1,
  .hero h1 {
    font-size: clamp(36px, 12vw, 48px);
    line-height: 1.02;
  }
  .lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .btn {
    width: 100%;
    min-height: 50px;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }
  .hero-metrics div {
    padding: 13px;
  }
  .studio-board {
    padding: 12px;
    box-shadow: 8px 8px 0 var(--accent);
  }
  .board-top {
    padding: 8px 2px 12px;
    font-size: 13px;
  }
  .board-cards div {
    min-height: auto;
    padding: 12px;
  }
  .board-cards b {
    font-size: 34px;
  }
  .deal-row {
    align-items: start;
    padding: 12px;
  }
  .deal-row span {
    font-size: 14px;
  }
  .trust-band {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 14px;
    scrollbar-width: none;
  }
  .trust-band::-webkit-scrollbar { display: none; }
  .trust-band span {
    white-space: nowrap;
  }
  .section {
    padding: 48px 14px;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
  }
  .section-head p:not(.eyebrow),
  .case-list p {
    font-size: 16px;
  }
  .case-card,
  .service-stack div,
  .timeline div,
  .price-grid article {
    min-height: auto;
    padding: 18px;
  }
  .case-card h3,
  .price-grid h3 {
    font-size: 25px;
  }
  .service-stack h3,
  .timeline h3 {
    font-size: 23px;
  }
  .price-grid b {
    font-size: 26px;
  }
  .faq-grid details {
    padding: 16px;
  }
  .faq-grid summary {
    font-size: 18px;
  }
  .lead-form {
    gap: 12px;
  }
  input, textarea, select {
    min-height: 52px;
    font-size: 16px;
  }
  textarea {
    min-height: 150px;
  }
  .footer {
    padding: 38px 14px 22px;
    gap: 24px;
  }
  .footer-main p {
    font-size: 16px;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-bottom {
    gap: 6px;
  }

  .admin-login {
    width: calc(100% - 28px);
    margin: 34px auto;
    padding: 24px;
    box-shadow: 8px 8px 0 var(--accent);
  }
  .login-brand {
    margin-bottom: 24px;
  }
  .admin-login h1 {
    font-size: 40px;
  }
  .admin-panel {
    display: block;
  }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .admin-sidebar .brand {
    flex-shrink: 0;
  }
  .side-nav {
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .side-nav::-webkit-scrollbar { display: none; }
  .side-nav a {
    white-space: nowrap;
    padding: 9px 10px;
    font-size: 14px;
  }
  .admin-sidebar .btn {
    width: 100%;
    min-height: 42px;
  }
  .admin-workspace {
    padding: 22px 14px;
    overflow: visible;
  }
  .admin-head {
    gap: 14px;
  }
  .admin-head h1 {
    font-size: 42px;
  }
  .admin-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search-input {
    width: 100%;
    min-width: 0;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .stat {
    min-height: 105px;
    padding: 13px;
  }
  .stat b {
    font-size: 34px;
  }
  .analytics-section,
  .table-section {
    padding: 14px;
  }
  .table-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .analytics-card {
    min-height: 96px;
    padding: 14px;
  }
  .analytics-card b {
    font-size: 34px;
  }
  .mini-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .kanban {
    grid-template-columns: repeat(5, minmax(250px, 82vw));
    gap: 10px;
    margin-inline: -14px;
    padding-inline: 14px;
    scroll-snap-type: x proximity;
  }
  .column {
    min-height: 430px;
    scroll-snap-align: start;
  }
  .lead-card {
    padding: 14px;
  }
  .lead-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .lead-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .lead-table {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}

@media (max-width: 340px) {
  .studio-hero h1,
  .hero h1 {
    font-size: 34px;
  }
  .admin-actions {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}
