/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  color: #e5e7eb;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e5e7eb;
  padding: 0.2rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.16), transparent),
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.18), transparent);
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #dbeafe, #f8fafc);
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 2.8vw + 1.6rem, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #020617;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: #4b5563;
  max-width: 32rem;
}

.lead-form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.lead-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
}

input,
select,
textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  background-color: #f9fafb;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.8);
  background-color: #ffffff;
}

.form-footnote {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-position 0.18s;
  font-family: inherit;
}

.btn-primary {
  color: #f9fafb;
  background-image: linear-gradient(120deg, #22c55e, #16a34a, #2563eb);
  background-size: 180% 100%;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background-position: 100% 0;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.btn-outline {
  border: 1px solid #2563eb;
  color: #1d4ed8;
  background-color: #eff6ff;
}

.btn-outline:hover {
  background-color: #dbeafe;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image-card {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.25);
}

.hero-image-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-stat {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background-color: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-radius: 0.9rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.78rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.85);
}

.stat-label {
  display: block;
  color: #9ca3af;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-badge {
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #0b1120, #111827);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.85rem;
}

.hero-location,
.hero-phone {
  margin: 0.15rem 0;
  color: #d1d5db;
}

.hero-trust {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

.section-alt {
  background-color: #0f172a;
  color: #e5e7eb;
}

.section-alt p {
  color: #cbd5f5;
}

.section-header {
  max-width: 40rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: #6b7280;
}

.section-alt .section-header p {
  color: #9ca3af;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.2rem 1.35rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.section-alt .card {
  background-color: #020617;
  border-color: #1f2937;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.03rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.section-alt .card p {
  color: #9ca3af;
}

.card.highlight {
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
}

.result-metric {
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 0.35rem;
}

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
  background-color: #020617;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid #1f2937;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 25%, #22c55e, #2563eb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.process-steps h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.86rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid #e5e7eb;
  position: relative;
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.price {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d4ed8;
}

.pricing-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-list {
  margin: 0 0 1.1rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #4b5563;
}

.pricing-list li {
  margin-bottom: 0.25rem;
}

.badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #1e293b;
  color: #e5e7eb;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.86rem;
  color: #4b5563;
}

/* Contact */
.section-contact {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  color: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.contact-details {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  font-size: 0.9rem;
}

.contact-details li {
  margin-bottom: 0.3rem;
}

.contact-form {
  background-color: rgba(15, 23, 42, 0.95);
  border-color: #1f2937;
}

.section-contact .section-header p {
  color: #9ca3af;
}

/* Footer */
.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 1.9rem 0 2rem;
  border-top: 1px solid #1f2937;
  font-size: 0.8rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-copy {
  margin-top: 0.6rem;
  max-width: 22rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.8rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-meta p {
  margin: 0 0 0.25rem;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 3rem 0 2.5rem;
}

.legal-header {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.legal-header h1 {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.legal-content {
  max-width: 46rem;
  margin: 0 auto;
  font-size: 0.9rem;
  color: #4b5563;
}

.legal-content h2 {
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #111827;
}

.legal-content p {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-topbar {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 0.8rem 0;
}

.legal-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}

.legal-topbar a {
  color: #e5e7eb;
  text-decoration: underline;
}

/* 404 page */
.error-page-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at top, #0b1120, #020617);
  color: #e5e7eb;
}

.error-card {
  max-width: 420px;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  border-radius: 1.2rem;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid #1f2937;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.error-code {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.error-title {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.error-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.1rem;
}

.error-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.6rem;
}

/* Thank you page */
.thankyou-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #dbeafe, #f9fafb);
  padding: 3rem 1.5rem;
}

.thankyou-card {
  max-width: 420px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.thankyou-title {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.thankyou-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1.1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  border-top: 1px solid #1f2937;
  padding: 0.9rem 0.5rem;
  font-size: 0.78rem;
}

.cookie-hidden {
  display: none;
}

.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cookie-text {
  margin: 0;
  max-width: 40rem;
  line-height: 1.4;
}

.cookie-text a {
  color: #bfdbfe;
  text-decoration: underline;
}

.cookie-accept {
  white-space: nowrap;
  font-size: 0.8rem;
  padding-inline: 1.2rem;
}

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-accept {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-media {
    max-width: 360px;
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .site-header {
    position: static;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-steps li {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .lead-form {
    padding: 1rem 0.9rem 1.1rem;
  }

  .hero {
    padding-inline: 0;
  }

  .error-card,
  .thankyou-card {
    padding-inline: 1.2rem;
  }
}


