@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #05070D;
  --foreground: #E8F0E8;
  --card: #0B1A0B;
  --primary: #2ECC2E;
  --primary-dark: #1A7A1A;
  --secondary: #0F1F0F;
  --muted-foreground: #7A9A7A;
  --border: rgba(46, 204, 46, 0.18);
  --glow: rgba(46, 204, 46, 0.35);
  --glow-soft: rgba(46, 204, 46, 0.16);
  --radius: 0.5rem;
  --shadow-elev: 0 10px 30px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 160px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--foreground);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-intro p {
  margin-top: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 0 24px var(--glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--foreground);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--background);
  box-shadow: 0 0 20px var(--glow-soft);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 26, 11, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--glow-soft);
}

.navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem 0.75rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 120px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.navbar-nav a:hover {
  color: var(--foreground);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--foreground);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.nav-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.nav-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.nav-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 420px;
  background: radial-gradient(ellipse at center, var(--glow-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(46, 204, 46, 0.1);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero-sub {
  margin: 1.25rem auto 0;
  max-width: 560px;
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-phone {
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 24px var(--glow-soft);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
}

.trust-item:not(:first-child) {
  border-left: 1px solid var(--border);
}

.trust-check {
  color: var(--primary);
  font-weight: 700;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4.5rem 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 28px var(--glow-soft), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: var(--card);
  border-bottom: 1px dashed var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-img span {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-name {
  margin: 0;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step-connector {
  flex: 0 0 48px;
  align-self: center;
  height: 0;
  border-top: 2px dashed var(--primary);
  opacity: 0.5;
  margin-top: 1.5rem;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-section .section-intro {
  margin-bottom: 2rem;
}

.phone-display {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 32px var(--glow);
  margin: 1.5rem 0;
  letter-spacing: -0.02em;
}

.cta-actions {
  margin-top: 1.5rem;
}

/* ===== COVERAGE ===== */
.coverage-statement {
  margin: 2rem auto;
  max-width: 640px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--foreground);
  text-align: center;
}

.coverage-actions {
  text-align: center;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px var(--glow-soft);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-powered {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== QR MODAL ===== */
.qr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.qr-modal.active {
  display: flex;
}

.qr-modal-inner {
  background: #0B1A0B;
  border: 1px solid rgba(46, 204, 46, 0.35);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  max-width: 320px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 40px rgba(46, 204, 46, 0.2);
}

.qr-modal-inner h3 {
  color: #E8F0E8;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.qr-modal-inner img {
  border-radius: 0.5rem;
  border: 3px solid rgba(46, 204, 46, 0.5);
  margin: 0 auto 1.25rem;
}

.qr-modal-inner p {
  color: #7A9A7A;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.qr-modal-inner strong {
  color: #2ECC2E;
}

.qr-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #7A9A7A;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.qr-close:hover {
  color: #E8F0E8;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }

  body {
    padding-top: 100px;
  }

  .navbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem 0.5rem;
    position: relative;
  }

  .navbar-brand {
    width: 100%;
    justify-content: center;
  }

  .navbar-brand img {
    height: 80px;
    max-height: 80px;
  }

  .nav-hamburger {
    display: flex;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
  }

  .navbar-nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-elev);
  }

  .navbar-nav.nav-open {
    display: flex !important;
  }

  .navbar-nav li a {
    display: block;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .hero h1 {
    font-size: min(2rem, clamp(1.75rem, 6vw, 2rem));
    line-height: 1.15;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-item {
    border-left: none !important;
    justify-content: center;
    padding: 0.5rem;
    white-space: normal;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-img {
    height: 140px;
  }

  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step {
    text-align: center;
  }

  .step-number {
    margin-left: auto;
    margin-right: auto;
  }

  .step-connector {
    display: none;
  }

  .section,
  .cta-section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo img {
    height: 64px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 120px;
  }

  .section,
  .cta-section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .section,
  .cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .trust-bar-inner {
    gap: 0.5rem;
  }

  .trust-item {
    font-size: 0.8125rem;
    padding: 0.375rem;
  }

  .phone-display {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    word-break: break-word;
  }

  .coverage-statement {
    font-size: 1.125rem;
  }
}
