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

:root {
  --yellow: #F5C300;
  --yellow-dark: #D4A900;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --dark2: #242424;
  --gray: #888;
  --light: #F8F8F8;
  --white: #FFFFFF;
  --radius: 12px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.6; }

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

/* Header */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2a2a2a;
  padding: 16px 0;
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { color: var(--white); font-weight: 800; font-size: 17px; letter-spacing: -0.3px; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #aaa; text-decoration: none; font-size: 14px; transition: color .2s; }
nav a:hover { color: var(--white); }
.btn-nav {
  background: var(--yellow); color: var(--black) !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--yellow-dark) !important; }

/* Hero */
.hero {
  background: var(--black);
  padding: 100px 0 80px;
  text-align: center;
}
.badge {
  display: inline-block;
  background: rgba(245,195,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(245,195,0,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 20px;
  letter-spacing: -1px;
}
.highlight { color: var(--yellow); }
.hero-sub {
  font-size: 18px; color: #aaa;
  max-width: 640px; margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.btn-primary {
  background: var(--yellow); color: var(--black);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid #444;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: #888; background: rgba(255,255,255,0.05); }
.btn-large { padding: 18px 40px; font-size: 17px; }

.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid #222; padding-top: 40px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 32px; font-weight: 800; color: var(--yellow); }
.stat-label { display: block; font-size: 13px; color: var(--gray); margin-top: 4px; }

/* Sections */
section { padding: 80px 0; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--gray); max-width: 600px; margin-bottom: 48px; }

/* Why */
.why { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid #eee;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-icon { font-size: 32px; margin-bottom: 16px; }
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* Services */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service {
  background: var(--light); border-radius: var(--radius);
  padding: 32px; border: 1px solid #e8e8e8;
  position: relative;
  transition: box-shadow .2s;
}
.service:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service.featured {
  background: var(--black); border-color: var(--yellow);
  color: var(--white);
}
.service.featured p { color: #bbb; }
.service.featured ul li { color: #ccc; }
.service.featured ul li::before { color: var(--yellow); }
.service-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--yellow); color: var(--black);
  padding: 4px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.service-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-icon { font-size: 28px; }
.service h3 { font-size: 20px; font-weight: 700; }
.service p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.service ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service ul li { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.service ul li::before { content: "✓"; color: var(--yellow-dark); font-weight: 700; }

/* Coverage */
.coverage { background: var(--dark); color: var(--white); }
.coverage h2 { color: var(--white); }
.coverage .section-sub { color: #888; }
.coverage-areas {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px;
}
.area { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #ddd; }
.area-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245,195,0,0.5);
}
.area-dot.planned { background: #444; box-shadow: none; }
.area:has(.planned) { color: #666; }
.coverage-note { font-size: 14px; color: #666; margin-top: 24px; }

/* CTA Band */
.cta-band {
  background: var(--yellow); text-align: center; padding: 64px 0;
}
.cta-band h2 { color: var(--black); }
.cta-band p { color: rgba(0,0,0,0.65); font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-primary {
  background: var(--black); color: var(--white);
}
.cta-band .btn-primary:hover { background: #222; }

/* Contact */
.contact { background: var(--light); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray); }
.contact-value { font-size: 16px; font-weight: 500; color: var(--black); text-decoration: none; }
a.contact-value:hover { color: var(--yellow-dark); }

/* Form */
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid #e8e8e8;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #444; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #ddd; border-radius: 8px;
  font-size: 14px; font-family: var(--font);
  transition: border-color .2s;
  outline: none;
  color: var(--black);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow-dark); }
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; padding: 14px; font-size: 15px; }

/* Footer */
footer { background: var(--black); color: var(--white); padding: 48px 0 28px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; margin-bottom: 32px; flex-wrap: wrap;
}
.footer-brand p { color: #555; font-size: 14px; margin-top: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #666; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1f1f1f; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  nav a:not(.btn-nav) { display: none; }
  .hero { padding: 72px 0 56px; }
  .hero-stats { gap: 32px; }
  .stat-num { font-size: 26px; }
}
