/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --gold: #c8963e;
  --gold-light: #e8b85a;
  --off-white: #f8f6f1;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #d4d4d4;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #1a1a1a;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: #121820;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
}

/* ===== SECTION SHARED ===== */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 56px;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: #0f1218;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.service-card {
  background: #1a2030;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
  border-top: 3px solid var(--gold);
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 150, 62, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== WHY US ===== */
.why-us {
  padding: 96px 0;
  background: #121820;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-eyebrow { text-align: left; }
.why-us-text .section-title { text-align: left; margin-bottom: 20px; }

.why-us-text > p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-us-list li {
  font-size: 1rem;
  color: var(--gray-900);
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}

.why-us-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
}

.image-placeholder {
  background: #1a2030;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

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

.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
}

.stars {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
  background: #0f1218;
  text-align: center;
}

.contact-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.contact-info {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.contact-item strong {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold); }

.contact-item span {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
}

.contact-cta-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
}

/* ===== LEAD FORM ===== */
.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--white);
  background: #1a2030;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

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

.lead-form textarea {
  resize: vertical;
  min-height: 100px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.lead-form .btn {
  width: 100%;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 32px 0;
  text-align: center;
}

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

.footer-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #0a0f15;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 140px;
  line-height: 1.3;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { padding: 72px 0 64px; }
  .services, .why-us, .testimonials, .contact { padding: 64px 0; }

  .contact-info { gap: 28px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; text-align: center; }

  .stats-bar { padding: 36px 0; }
  .stat-item { padding: 0 24px; }
  .stat-number { font-size: 1.625rem; }
  .stat-divider { height: 40px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-inner { gap: 24px; }
  .stat-item { padding: 0 16px; }
  .stat-divider { display: none; }
}
/* ===== ESTIMATE TEASER ===== */
.estimate-teaser {
  background: #0d1117;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.estimate-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.estimate-teaser-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.estimate-teaser-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.estimate-teaser-btn {
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}

.estimate-teaser-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ===== MAINTENANCE PLANS ===== */
.maintenance-plans {
  padding: 80px 0;
  background: #0a0f15;
}

.section-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: -24px auto 48px;
  line-height: 1.6;
}

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

.plan-card {
  background: #161d2a;
  border-radius: 16px;
  padding: 36px 28px;
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(232, 160, 32, 0.15);
  position: relative;
}

.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.plan-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
}

.plan-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s;
  margin-top: auto;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(200, 150, 62, 0.6);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(200, 150, 62, 0.12);
  border-color: var(--gold);
}

