:root {
  --bg: #fafaf8;
  --surface: #ffffff;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --accent: #e8720a;
  --accent-light: #fef3e8;
  --border: #e8e6e1;
  --nav-bg: #1a1a1a;
  --nav-fg: #ffffff;
}

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

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

/* NAV */
.nav {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: #aaa;
  font-weight: 300;
}

/* HERO */
.hero {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 80px 0 80px;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero-sub {
  font-size: 17px;
  color: #c4c4c4;
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* HERO CARD */
.hero-card-col { }
.hero-card {
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 16px;
  padding: 28px;
}
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666;
  margin-bottom: 20px;
}
.hero-card-services { display: flex; flex-direction: column; gap: 0; }
.hero-card-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 14px;
  color: #ccc;
}
.hero-card-service:last-child { border-bottom: none; }
.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-epc { background: #4caf50; }
.dot-eicr { background: #2196f3; }
.dot-gas { background: #ff9800; }
.dot-boiler { background: #e91e63; }
.dot-electrical { background: #9c27b0; }
.dot-plumbing { background: #00bcd4; }
.dot-removals { background: #795548; }
.dot-oven { background: #607d8b; }

.hero-card-footer {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* PROOF BAR */
.proofbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.proofbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proofbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  text-align: center;
}
.proofbar-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.proofbar-rating { font-size: 14px; font-weight: 600; color: var(--fg); }
.proofbar-number { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 28px; color: var(--fg); line-height: 1; }
.proofbar-source { font-size: 12px; color: var(--fg-muted); }
.proofbar-divider { width: 1px; height: 48px; background: var(--border); }

/* SERVICES */
.services { padding: 100px 0; }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.services-header { max-width: 600px; margin: 0 auto; text-align: center; margin-bottom: 64px; }
.services-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.services-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.service-tile {
  background: var(--surface);
  padding: 40px;
  position: relative;
}
.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.tile-compliance .tile-icon { background: #e8f5e9; color: #2e7d32; }
.tile-trades .tile-icon { background: #e3f2fd; color: #1565c0; }
.tile-move .tile-icon { background: #fff3e0; color: #e65100; }
.tile-clean .tile-icon { background: #fce4ec; color: #c62828; }

.tile-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.tile-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 16px; }
.tile-services { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--accent); }

/* HOW IT WORKS */
.hiw { background: var(--bg); padding: 100px 0; }
.hiw-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hiw-header { margin-bottom: 64px; }
.hiw-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
}
.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.hiw-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.hiw-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.hiw-step-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.hiw-step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.hiw-arrow { padding: 0 24px; color: var(--border); flex-shrink: 0; }

/* GUARANTEE */
.guarantee { background: var(--surface); border-top: 1px solid var(--border); padding: 100px 0; }
.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.guarantee-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.guarantee-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.guarantee-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 36px; max-width: 480px; }
.guarantee-items { display: flex; flex-direction: column; gap: 12px; }
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.gi-icon {
  width: 24px;
  height: 24px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  flex-shrink: 0;
}
.reviews-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 20px; }
.review-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.review-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--fg-muted); line-height: 1.55; font-style: italic; margin-bottom: 12px; }
.review-author { font-size: 12px; font-weight: 600; color: var(--fg); }

/* CLOSING */
.closing { background: var(--nav-bg); color: white; padding: 80px 0; }
.closing-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; text-align: center; }
.closing-title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub { font-size: 16px; color: #aaa; line-height: 1.6; max-width: 600px; margin: 0 auto; }

/* FOOTER */
.footer { background: #111; color: white; padding: 64px 0 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr auto; gap: 64px; }
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: #666; }
.footer-links { display: flex; gap: 64px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #666; margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: #aaa; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: white; }
.footer-bottom { border-top: 1px solid #222; margin-top: 48px; padding: 24px; }
.footer-copy { max-width: 1100px; margin: 0 auto; font-size: 13px; color: #444; }

/* HERO CTA */
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.hero-cta:hover { background: #d4620a; }
.hero-cta-sub { font-size: 13px; color: #888; margin: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card-col { order: -1; }
  .hero-headline { font-size: 48px; }
  .hero-stats { gap: 24px; }
  .proofbar-inner { flex-wrap: wrap; gap: 16px; }
  .proofbar-item { padding: 0 20px; }
  .proofbar-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; }
  .hiw-arrow { transform: rotate(90deg); padding: 8px 0; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .nav-inner { flex-wrap: wrap; }
}