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

:root {
  --primary: #0f766e;
  --primary-dark: #0b4f4a;
  --dark: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px 0;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 18px;
  color: var(--dark);
}

.brand small {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
  color: #334155;
}

.nav-cta {
  text-decoration: none;
  background: var(--primary);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, .94), rgba(15, 23, 42, .86)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-block;
  color: var(--primary);
  background: rgba(15, 118, 110, .1);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero .badge {
  background: rgba(255,255,255,.16);
  color: white;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 24px;
}

.lead {
  font-size: 21px;
  color: rgba(255,255,255,.88);
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
}

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

.btn-outline {
  border-color: white;
  color: white;
}

.btn-light {
  background: white;
  color: var(--primary-dark);
  margin-top: 20px;
}

.hero-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.quote-card {
  background: white;
  color: var(--text);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  color: var(--dark);
  margin-bottom: 8px;
}

.quote-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.quote-card form,
.contact-form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 16px;
  font-family: inherit;
  background: white;
}

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

button {
  border: none;
  border-radius: 14px;
  padding: 15px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  background: var(--primary);
  color: white;
}

small {
  color: var(--muted);
}

.stats {
  background: var(--light);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
}

.stats-grid span {
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.contact-grid h2,
.why-grid h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-head p,
.contact-grid p,
.why-grid p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: white;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #ecfdf5;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.dark {
  background: var(--dark);
  color: white;
}

.dark .eyebrow {
  color: white;
  background: rgba(255,255,255,.12);
}

.dark h2,
.dark p {
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-list div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 24px;
}

.why-list h3 {
  margin-bottom: 8px;
}

.steps,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
}

.step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 {
  margin-bottom: 8px;
}

.testimonials {
  background: var(--light);
}

.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.testimonial p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #334155;
}

.contact-section {
  background: linear-gradient(180deg, white, var(--light));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.contact-box {
  margin-top: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.contact-box p {
  margin-bottom: 10px;
}

.contact-box a {
  color: var(--primary);
  font-weight: 800;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.footer {
  background: #020617;
  color: white;
  padding: 35px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  color: #cbd5e1;
  margin-top: 8px;
}

.footer a {
  color: white;
  margin-left: 18px;
  text-decoration: none;
}

.legal-page {
  padding: 70px 0;
  max-width: 900px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 22px;
  color: var(--dark);
}

.legal-page h2 {
  font-size: 25px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--dark);
}

.legal-page p {
  margin-bottom: 12px;
}

.back-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 62px 0;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-grid,
  .steps,
  .testimonial-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}
