:root {
  --teal: #0F9B8E;
  --teal-dark: #0b7a70;
  --coral: #F4A261;
  --coral-dark: #e08b3f;
  --offwhite: #F7FAF9;
  --white: #FFFFFF;
  --charcoal: #333333;
  --gray: #6b7674;
  --border: #e2e8e7;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: var(--teal); text-decoration: none; }

section { padding: 4rem 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s ease, transform 0.1s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: var(--coral-dark); }

.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: var(--white); color: var(--teal); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-large { padding: 1.1rem 2.2rem; font-size: 1.1rem; }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }

.logo-text {
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.logo-text small {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--teal); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone-link {
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}

/* Hero */
.hero {
  background: var(--offwhite);
  padding: 4rem 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 420px; }
.hero-copy h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-contact-line {
  font-size: 0.95rem;
  color: var(--gray);
}
.hero-media { flex: 1 1 380px; }
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Trust bar */
.trust-bar {
  background: var(--teal);
  padding: 1.5rem 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
}
.trust-icon { font-size: 1.3rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
}
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* How it works */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.step { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--gray); font-size: 0.95rem; }
.section-cta { text-align: center; }

/* Why us */
.why-us { background: var(--offwhite); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.why-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--coral);
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-item p { color: var(--gray); font-size: 0.95rem; }

/* Testimonials */
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--offwhite);
  border-radius: 12px;
  padding: 2.5rem;
}
.testimonial-card .quote {
  font-size: 1.25rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-card .attribution {
  font-weight: 700;
  color: var(--teal);
}

/* Service area */
.service-area { text-align: center; background: var(--white); }
.area-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.area-pill {
  background: var(--teal);
  color: var(--white);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
}

/* FAQ */
.faq { background: var(--offwhite); max-width: 800px; margin: 0 auto; }
.faq h2 { margin-bottom: 2rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--teal);
}
.faq-item p {
  margin-top: 0.75rem;
  color: var(--gray);
}

/* Final CTA */
.final-cta {
  background: var(--teal);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 0.5rem; }
.final-cta p { color: var(--white); font-size: 1.1rem; margin-bottom: 2rem; }
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: #0a2e2a;
  color: #cfe6e3;
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo-text { color: var(--white); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: #cfe6e3; }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-contact a { color: #cfe6e3; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  text-align: center;
  color: #9ec4c0;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero-copy h1 { font-size: 1.9rem; }
}
