:root {
  --bg: #f5f4f0;
  --bg-alt: #eceae4;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --green-dark: #1a2e1a;
  --green-mid: #2d4a2d;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-dim: #92400e;
  --white: #ffffff;
  --border: #d6d3cc;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--fg);
}

/* HERO */
.hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.lede {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--fg);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.hero-cta-tg {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 12px 0;
}

.hero-cta-tg:hover { color: var(--amber); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 20px;
  border-radius: 4px;
}

.hero-card--accent {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.hero-card-label {
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.hero-card-main {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}

.hero-card--accent .hero-card-main { color: var(--amber); }

.hero-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* STATSBAR */
.statsbar {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}

.statsbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.statsbar-inner::-webkit-scrollbar { display: none; }

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  gap: 4px;
  min-width: 100px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 16px 0;
}

/* SERVICES */
.services {
  padding: 96px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.svc-card--featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
}

.svc-card--featured .svc-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.svc-card--featured h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-card--featured p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

.svc-card--featured .svc-price {
  color: var(--amber);
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dim);
  margin-bottom: 18px;
}

.svc-card h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-price {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--amber-dim);
}

.svc-card--featured .svc-price { font-size: 20px; }

.services-all {
  margin-top: 36px;
  text-align: center;
}

.services-all a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 2px;
}

/* PROCESS */
.process {
  padding: 96px 0;
  background: var(--bg-alt);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.step {
  padding: 28px 24px;
}

.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
}

.step-body h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--amber);
  padding: 0 8px;
}

/* GUARANTEE */
.guarantee {
  padding: 96px 0;
  background: var(--green-dark);
  color: var(--white);
}

.guarantee-content {
  flex: 1;
}

.guarantee-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.guarantee h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 18px;
  max-width: 480px;
}

.guarantee-content > p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.cert-item svg { color: var(--amber); flex-shrink: 0; }

.guarantee-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.guarantee .section-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: center;
}

.gstat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.gstat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* CLOSING */
.closing {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}

.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.closing-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.closing-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--fg);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.closing-sep {
  font-size: 14px;
  color: var(--fg-muted);
}

.closing-tg {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 2px;
}

/* FOOTER */
footer {
  background: #111;
  padding: 48px 0;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-links a:hover { color: var(--amber); }

/* TESTIMONIALS */
.testimonials {
  padding: 96px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 18px;
  height: 18px;
  color: var(--amber);
}

.t-quote {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.t-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.t-work {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* PORTFOLIO */
.portfolio {
  padding: 96px 0;
  background: var(--bg-alt);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.p-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.p-image {
  height: 180px;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.p-image--wiring {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 50%, #3d5a3d 100%);
}

.p-image--wiring::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(245, 158, 11, 0.08) 20px,
    rgba(245, 158, 11, 0.08) 2px
  ),
  repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(245, 158, 11, 0.08) 20px,
    rgba(245, 158, 11, 0.08) 2px
  );
}

.p-image--wiring::after {
  content: '⚡';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  opacity: 0.3;
}

.p-image--panel {
  background: linear-gradient(135deg, #2d4a2d 0%, #1a2e1a 100%);
}

.p-image--panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 160px;
  border: 3px solid rgba(245, 158, 11, 0.3);
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.05);
}

.p-image--panel::after {
  content: '◉ ◉ ◉ ◉ ◉';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: var(--amber);
  letter-spacing: 8px;
  opacity: 0.5;
}

.p-image--emergency {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
}

.p-image--emergency::after {
  content: '⚠';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  color: var(--amber);
  opacity: 0.5;
}

.p-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.p-work-type {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 2px;
}

.p-body {
  padding: 20px 24px 24px;
}

.p-body h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
}

.p-body p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.p-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.p-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg-alt);
  color: var(--fg-muted);
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 48px;
  }
  .hero-visual {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
  }
  .hero-visual::-webkit-scrollbar { display: none; }
  .hero-card { min-width: 150px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card--featured { grid-column: span 2; grid-template-columns: auto 1fr; }
  .svc-card--featured .svc-price { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .step { border-bottom: 1px solid var(--border); padding: 20px 0; }
  .guarantee .section-inner { grid-template-columns: 1fr; }
  .guarantee-meta { flex-direction: row; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* CRM STYLES */
.topbar {
  background: var(--green-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 56px;
}
.topbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  white-space: nowrap;
}
.topbar-brand:hover { color: var(--amber); }
.topbar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}
.topbar-actions { display: flex; gap: 8px; }

.btn {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-amber { background: var(--amber); color: var(--fg); }
.btn-amber:hover { background: var(--amber-light); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-danger {
  background: transparent;
  color: #e57373;
  border: 1px solid #e57373;
}
.btn-danger:hover { background: #e57373; color: var(--white); }

.kpi-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.kpi-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.kpi-strip-inner::-webkit-scrollbar { display: none; }
.kpi-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  min-width: 100px;
  border-right: 1px solid var(--border);
}
.kpi-card:last-child { border-right: none; }
.kpi-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.kpi-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}
.kpi-accent .kpi-num { color: var(--green-mid); }
.kpi-warn .kpi-num { color: #d32f2f; }

.kanban {
  display: flex;
  gap: 12px;
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  min-height: calc(100vh - 200px);
}
.kanban-col {
  flex: 1;
  min-width: 180px;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 180px);
  overflow: hidden;
}
.kanban-col--win { background: #e8f5e9; }
.kanban-col--lost { background: #ffebee; }
.kanban-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.kanban-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.kanban-count {
  background: var(--border);
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}
.kanban-cards {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kanban-cards::-webkit-scrollbar { width: 4px; }
.kanban-cards::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.lead-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lead-card:hover { border-color: var(--amber); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.lead-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lead-card-phone {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.lead-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lead-card-source {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 2px 6px;
  border-radius: 3px;
}
.lead-card-age {
  font-size: 11px;
  color: var(--fg-muted);
}
.lead-card-age--stale { color: #d32f2f; font-weight: 600; }

.lead-panel {
  position: fixed;
  right: 0;
  top: 56px;
  bottom: 0;
  width: 360px;
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  z-index: 200;
}
.lead-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.lead-panel-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--fg-muted);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.close-btn:hover { color: var(--fg); }
.lead-panel-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.lead-meta-row { display: flex; align-items: center; gap: 8px; }
.source-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--green-dark);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 3px;
}
.lead-days { font-size: 12px; color: var(--fg-muted); }
.lead-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-info-grid > div { display: flex; flex-direction: column; gap: 4px; }
.lead-info-grid label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); font-weight: 600; }
.lead-info-grid a { font-size: 14px; color: var(--green-mid); text-decoration: none; }
.lead-info-grid a:hover { color: var(--amber-dim); }
.lead-status-row { display: flex; flex-direction: column; gap: 6px; }
.lead-status-row label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); font-weight: 600; }
.status-select {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--fg);
}
.lead-notes { display: flex; flex-direction: column; gap: 6px; }
.lead-notes label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); font-weight: 600; }
.lead-notes textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  resize: vertical;
  line-height: 1.5;
}
.lead-panel-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
}
.modal-box {
  background: var(--white);
  border-radius: 8px;
  width: 400px;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
#leadForm { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 4px; }
.form-row label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); }
.form-row input, .form-row select, .form-row textarea {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--fg);
}
.form-actions { display: flex; gap: 8px; margin-top: 4px; }

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  z-index: 400;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .stat-item { min-width: 80px; padding: 20px 12px; }
  .stat-number { font-size: 22px; }
  .statsbar-inner { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .kanban { padding: 16px; }
  .lead-panel { width: 100%; top: 56px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}