/* FixIT BG — Design Tokens */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --accent: #16a34a;
  --accent-hover: #15803d;
  --accent-light: #f0fdf4;
  --border: #e2e4e9;
  --radius: 6px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'JetBrains Mono', monospace;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.logo img {
  height: 20px;
  width: auto;
  display: block;
}

.logo span { color: var(--accent); }

.nav a {
  margin-left: var(--space-md);
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.hero-cta:hover { background: var(--accent-hover); }

/* Section */
.section { padding: var(--space-lg) 0; }
.section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  text-align: center;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--space-md) 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.service-card:hover {
  border-left-color: var(--accent-hover);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.service-card::after {
  content: '→';
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--accent);
  margin-top: auto;
  padding-top: var(--space-sm);
  opacity: 0.6;
  transition: opacity 0.15s;
}

.service-card:hover::after { opacity: 1; }

/* Services Page — Detail Sections */
.service-section { padding: var(--space-lg) 0; }
.service-section + .service-section { border-top: 1px solid var(--border); }

.service-section-label {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.service-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.service-section .lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.service-list strong {
  font-weight: 600;
}

/* Service Subsections Grid */
.service-subsections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-subsections--two {
  grid-template-columns: repeat(2, 1fr);
}

.service-sub h3 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--accent);
}

.service-list--benefits li::before {
  background: var(--accent);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 8px;
}

/* Process Steps */
.steps {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 260px;
  text-align: left;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-label {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
}

/* Audience */
.audience-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  justify-content: center;
}

.audience-list li {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

/* Credibility */
.credibility {
  text-align: center;
  padding: var(--space-md) 0;
  color: var(--muted);
  font-size: 14px;
}

.credibility-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Process Intro */
.process-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Audience Section */
.audience-section { text-align: center; }

/* Bottom CTA */
.bottom-cta {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.bottom-cta p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.bottom-cta-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: var(--space-md);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group { margin-bottom: var(--space-sm); }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
}

.form-consent label {
  display: inline !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.form-consent a {
  text-decoration: underline;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.honeypot { position: absolute; left: -9999px; }

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s;
}

.form-submit:hover { background: var(--accent-hover); }

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-info p {
  color: var(--muted);
  margin-bottom: var(--space-xs);
  font-size: 15px;
}

.contact-info a { color: var(--accent); }
.contact-info a:hover { color: var(--accent-hover); }

.map-embed {
  margin-top: var(--space-md);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; }

/* Status Messages */
.status-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: var(--space-md);
  display: none;
}

.status-msg.success {
  display: block;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.status-msg.error {
  display: block;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #dc2626;
}

/* Page Intro */
.page-intro {
  text-align: center;
  padding: var(--space-lg) 0 0;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.page-intro h1 .accent { color: var(--accent); }

.page-intro p {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-intro-supporting {
  font-size: 15px;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
}

.page-intro .hero-cta { margin-bottom: var(--space-sm); }

.trust-line {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: var(--space-sm);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
  margin-top: var(--space-lg);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-display);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer a { color: var(--muted); transition: color 0.15s; }
.footer a:hover { color: var(--text); }
.footer a.footer-accent { color: var(--accent); }
.footer a.footer-accent:hover { color: var(--accent-hover); }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) var(--space-md);
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .nav a { margin: 0; padding: var(--space-xs) 0; }

  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 15px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-subsections,
  .service-subsections--two { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; gap: var(--space-xs); text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Cookie consent banner */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--text,#1a1a1a);color:#fff;padding:1rem 1.5rem;display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap;z-index:1000;font-size:.875rem}
.cookie-banner[hidden]{display:none}
.cookie-banner p{margin:0}
.cookie-banner a{color:var(--accent,#2563eb);text-decoration:underline}
.cookie-buttons{display:flex;gap:.5rem}
.cookie-accept,.cookie-reject{padding:.4rem 1rem;border:none;border-radius:4px;cursor:pointer;font-size:.875rem;font-family:inherit}
.cookie-accept{background:var(--accent,#2563eb);color:#fff}
.cookie-reject{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.3)}
