:root {
  --ink: #10201d;
  --muted: #5a6864;
  --peacock: #007f79;
  --peacock-dark: #005c58;
  --gold: #f4b740;
  --coral: #ea6b58;
  --mist: #eef7f5;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(16, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(16, 32, 29, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

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

.main-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--peacock-dark);
}

.header-phone,
.header-cta,
.primary-button,
.secondary-button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.primary-button,
.lead-form button {
  color: var(--white);
  background: var(--peacock);
}

.header-phone {
  color: var(--peacock-dark);
  border: 1px solid var(--line);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 30, 27, 0.88), rgba(5, 30, 27, 0.48)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: radial-gradient(circle at 18% 28%, rgba(244, 183, 64, 0.28), transparent 28%),
    linear-gradient(180deg, transparent 78%, var(--paper));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.64fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  min-height: 760px;
  margin: 0 auto;
  padding: 80px 22px 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--peacock-dark);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: 5.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.lead-form {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.form-kicker,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.progress {
  height: 8px;
  margin: 12px 0 20px;
  overflow: hidden;
  background: #dce8e5;
  border-radius: 999px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 4px;
}

.contact-options button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--peacock-dark);
  background: var(--mist);
  border: 1px solid #cbd9d5;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.contact-options button.is-active {
  color: var(--white);
  background: var(--peacock-dark);
  border-color: var(--peacock-dark);
}

.progress span {
  display: block;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, var(--peacock), var(--gold));
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
  color: #32413e;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd9d5;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 14px;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid #cbd9d5;
  border-radius: 6px;
}

.form-status.is-visible {
  display: grid;
  gap: 10px;
}

.form-status strong,
.form-status span {
  display: block;
}

.form-status p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-status-actions a,
.form-status-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--peacock-dark);
  background: var(--white);
  border: 1px solid #cbd9d5;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -64px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.proof-band div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 280px;
  perspective: 1200px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: transform 650ms ease;
}

.service-card:hover .service-card-inner,
.service-card:focus .service-card-inner,
.service-card:focus-within .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-face {
  position: absolute;
  inset: 0;
  min-height: 280px;
  overflow: hidden;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card-front {
  padding: 24px;
  background: var(--white);
}

.service-card-front span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--coral);
  font-weight: 900;
}

.service-card-front p,
.metric-grid p {
  color: var(--muted);
}

.service-card-back {
  display: grid;
  place-items: end start;
  color: var(--white);
  background: var(--ink);
  transform: rotateY(180deg);
}

.service-card-back::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 32, 29, 0.08), rgba(16, 32, 29, 0.82));
}

.service-card-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms ease;
}

.service-card:hover .service-card-back img,
.service-card:focus .service-card-back img,
.service-card:focus-within .service-card-back img {
  transform: scale(1.12);
}

.service-card-back-copy {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.service-card-back-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.service-card-back-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .service-card-inner {
    transition: none;
  }

  .service-card-back img {
    transition: none;
  }
}

.image-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.image-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #020b11;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(16, 32, 29, 0.16);
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.packages-section {
  padding-top: 44px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 740px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--peacock);
  border-radius: 8px;
}

.package-card.featured {
  border-top-color: var(--gold);
  box-shadow: 0 24px 60px rgba(16, 32, 29, 0.14);
}

.package-card.domination {
  border-top-color: var(--coral);
}

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.package-label {
  margin-bottom: 8px;
  color: var(--peacock-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.package-card h4 {
  margin: 18px 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.package-fit,
.package-promise,
.package-card li {
  color: var(--muted);
}

.package-promise {
  min-height: 72px;
  padding: 14px;
  background: var(--mist);
  border-radius: 8px;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.package-price {
  margin: auto 0 18px;
  padding-top: 24px;
  font-size: 1.05rem;
}

.package-price strong {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
}

.package-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.primary-package {
  color: var(--white);
  background: var(--peacock);
  border-color: var(--peacock);
}

.sales-line {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
}

.results {
  padding-top: 40px;
}

.centered {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

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

.metric-grid article {
  min-height: 220px;
  background: var(--mist);
}

.metric-grid strong {
  display: block;
  margin-bottom: 48px;
  font-size: 1.4rem;
}

.local-search {
  padding-top: 38px;
}

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

.local-grid article,
.industry-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-grid p,
.industry-grid p,
.faq-list p {
  color: var(--muted);
}

.industry-grid a,
.local-link-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--peacock-dark);
  font-weight: 900;
}

.industries-section {
  padding-top: 40px;
}

.service-area-strip {
  margin-top: 24px;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-area-strip p:last-of-type {
  margin-bottom: 10px;
  color: var(--muted);
}

.service-area-strip a {
  color: var(--peacock-dark);
  font-weight: 900;
}

.subpage-hero {
  padding: 98px 22px 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 30, 27, 0.92), rgba(5, 30, 27, 0.6)),
    url("https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.subpage-hero-inner,
.subpage-section {
  max-width: 1180px;
  margin: 0 auto;
}

.subpage-hero h1 {
  max-width: 880px;
  font-size: 4.6rem;
}

.subpage-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
}

.subpage-section {
  padding: 72px 22px;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.content-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-panel p,
.content-panel li,
.subpage-section p {
  color: var(--muted);
}

.content-panel ul,
.local-link-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.local-link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.subpage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 74px;
  padding: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.subpage-cta h2 {
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.subpage-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 46px;
  padding: 96px max(22px, calc((100vw - 1180px) / 2 + 22px));
  color: var(--white);
  background: #10201d;
}

.testimonial-copy h2 {
  max-width: 560px;
}

.testimonials {
  display: grid;
  gap: 16px;
}

figure {
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

blockquote {
  margin: 0 0 18px;
  font-size: 1.2rem;
}

figcaption {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px 22px;
}

.final-cta h2 {
  margin-bottom: 0;
}

.dark-button {
  background: var(--ink);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.form-success {
  display: grid;
  min-height: 320px;
  place-items: center;
  text-align: center;
}

.form-success strong {
  display: block;
  margin-bottom: 10px;
  color: var(--peacock-dark);
  font-size: 1.45rem;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-inner,
  .split,
  .image-feature,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 54px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .lead-form {
    max-width: 620px;
  }

  .proof-band,
  .package-grid,
  .local-grid,
  .industry-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .subpage-grid,
  .subpage-cta {
    grid-template-columns: 1fr;
  }

  .subpage-cta {
    display: grid;
  }

  .image-feature img {
    height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-bottom: 92px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .subpage-hero h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-stats,
  .proof-band,
  .service-grid,
  .package-grid,
  .local-grid,
  .industry-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .proof-band {
    margin-top: -42px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .image-feature img {
    height: auto;
  }

  .final-cta,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-link-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
