:root {
  --bg: #f7faf9;
  --surface: #ffffff;
  --ink: #10201c;
  --muted: #5d6f69;
  --line: #d9e5e1;
  --green: #0f8b57;
  --green-dark: #09623e;
  --teal: #0f7280;
  --amber: #f3b12f;
  --red: #d94141;
  --shadow: 0 24px 70px rgba(16, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  z-index: 20;
  background: var(--header-bg, #10201c);
  border-bottom: 1px solid var(--header-border, rgba(217, 229, 225, 0.15));
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1200px, calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-menu a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--green-dark);
  background: #e6f4ee;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(15, 139, 87, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.btn-outline {
  color: var(--green-dark);
  border: 1px solid #a6d6c1;
  background: #f3fbf7;
}



/* Premium Button Styling */
.packages-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 38px; /* Increased top margin for breathable hierarchy */
  width: 100%;
}

.btn-premium {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  padding: 0 32px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  color: white;
  /* Dark, sleek aesthetic gradient mimicking modern luxury SAAS */
  background: linear-gradient(135deg, #10201c 0%, #1a3a32 100%);
  box-shadow: 0 8px 24px rgba(16, 32, 28, 0.12), 
              0 1px 2px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Hover Effects */
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(16, 32, 28, 0.2), 
              0 1px 2px rgba(255, 255, 255, 0.15) inset;
  background: linear-gradient(135deg, #162d28 0%, #224c42 100%);
}

/* Micro-interaction: nudge the icon slightly on hover */
.btn-premium:hover svg {
  transform: translateX(4px);
}

.btn-premium svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}







.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 22, 18, 0.92), rgba(5, 22, 18, 0.62), rgba(5, 22, 18, 0.16)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 52px;
  padding: 96px 0 76px;
}

.hero-grid-simple {
  grid-template-columns: minmax(0, 820px);
}


.hero .eyebrow,
.contact-cta .eyebrow,
.page-hero .eyebrow {
  color: #dff8ed;
  background: rgba(255, 255, 255, 0.15);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.45rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 590px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  padding: 22px 18px 0 0;
}

.hero-stats strong {
  display: block;
  font-size: 1.75rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 50px 0;
}

.section-muted {
  background: #edf5f2;
}

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

.section-head-center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-title h2,
.coverage-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.45rem);
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.coverage-copy p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.section-head p,
.coverage-layout p,
.cta-box p,
.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}



.split-head {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

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

.feature-card,
.check-form,
.area-list,
.values article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}


.feature-card {
  padding: 26px;
}

.feature-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.feature-card>svg {
  float: left;
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
}

.feature-card svg,
.contact-cards svg {
  color: var(--green);
}

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




.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
}




.page-hero {
  padding: 30px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 22, 18, 0.88), rgba(5, 22, 18, 0.42)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center / cover;
}




.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(5, 22, 18, 0.88), rgba(5, 22, 18, 0.42)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82");
}



.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  border-radius: 999px;
  padding: 8px 12px;
  background: #e6f4ee;
  color: var(--green-dark);
  font-weight: 800;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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



.values {
  display: grid;
  gap: 14px;
}

.values article {
  padding: 26px;
}

.values strong {
  display: block;
  color: var(--green-dark);
  font-size: 2.35rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

@media (max-width: 920px) {
  .nav-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    min-width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
  }

  .site-menu {
    order: 4;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    margin: 0;
  }

  .site-menu.is-open {
    display: grid;
  }

  .hero-grid,
  .coverage-layout,
  .coverage-page-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-head,
  .cta-box {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }


  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 72px 0 48px;
    gap: 28px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1.06rem;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 100%;
    border-top: 0;
    margin-top: 28px;
  }

  .hero-stats div {
    padding: 10px 0 0 0;
  }

  .feature-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .coverage-item {
    padding: 14px 14px;
    min-height: 52px;
  }

  .area-list,
  .check-form {
    padding: 22px;
  }


  .section {
    padding: 64px 0;
  }

  .map-card,
  .map-card img {
    min-height: 330px;
    height: 330px;
  }

  .pin {
    font-size: 0.78rem;
  }

  .page-hero {
    padding: 82px 0;
  }
}


@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, 1160px);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 54px 0;
  }

  .btn {
    width: 100%;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    margin-top: 20px;
  }

  .hero-grid {
    padding: 62px 0 40px;
  }

  input,
  textarea {
    padding: 12px 12px;
  }

  .map-card,
  .map-card img {
    min-height: 290px;
    height: 290px;
  }
}