/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  justify-content: center;
}
.btn-xl { padding: 20px 40px; font-size: 1.2rem; border-radius: 12px; }
.btn-primary { background: #dc2626; color: #fff; border-color: #dc2626; }
.btn-primary:hover { background: #b91c1c; border-color: #b91c1c; }
.btn-outline { background: transparent; color: #1e40af; border-color: #cbd5e1; }
.btn-outline:hover { border-color: #1e40af; }
.btn-white { background: #fff; color: #16a34a; border-color: #fff; }
.btn-white:hover { background: #f0fdf4; }
.btn-green { background: #16a34a; color: #fff; border-color: #16a34a; }
.btn-green:hover { background: #15803d; border-color: #15803d; }
.btn-block { width: 100%; }

.call-btn {
  animation: pulse-shadow 2s ease-in-out infinite;
}
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(22,163,74,0); }
}

/* === Sticky Call Bar (top) === */
.call-bar {
  background: #16a34a;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.call-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.call-bar-btn:hover { opacity: 0.9; }

/* === Urgency Line === */
.urgency-line {
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
  margin-bottom: 24px;
}

/* === Hero Call Button === */
.hero-call-btn {
  font-size: 1.4rem;
  padding: 24px 48px;
  width: 100%;
  border-radius: 14px;
  letter-spacing: 0.5px;
}

/* === Trust Line === */
.trust-line {
  text-align: center;
  color: #15803d;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 12px;
  margin-bottom: 4px;
}
.trust-line::before {
  content: '\2605 ';
  color: #f59e0b;
}

/* === Header === */
.header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-name {
  font-weight: 800;
  font-size: 1.3rem;
  color: #0f172a;
}
.header-cta {
  background: #dc2626;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.header-cta:hover { background: #b91c1c; }

/* === Hero === */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #e0e7ff 100%);
  padding: 60px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 28px;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
}

/* === Lead Form === */
.hero-form-wrap { scroll-margin-top: 100px; }
.lead-form {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #e2e8f0;
  opacity: 0.95;
}
.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: #1e293b;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}
.form-group input::placeholder { color: #94a3b8; }
.lead-form .btn-block {
  margin-top: 8px;
  padding: 14px;
  font-size: 1.05rem;
}
.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 12px;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.section-header p {
  font-size: 1.1rem;
  color: #64748b;
}

/* === How It Works === */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1e40af;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}
.step p {
  color: #64748b;
  font-size: 0.95rem;
}

/* === Services === */
.services {
  padding: 80px 0;
  background: #f8fafc;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}
.service-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* === FAQ === */
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #94a3b8;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  padding-bottom: 20px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Final CTA === */
.final-cta {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}
.final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}
.final-cta p {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 28px;
}

/* === Footer === */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #1e293b;
}
.footer-logo { color: #fff; font-size: 1.2rem; }
.footer-disclaimer {
  margin-top: 12px;
  font-size: 0.82rem;
  max-width: 440px;
  line-height: 1.6;
  color: #94a3b8;
}
.footer-right { text-align: right; }
.footer-right p { font-size: 0.9rem; margin-top: 8px; }
.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
}
.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  text-align: center;
}

/* === Modal === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon { margin-bottom: 16px; }
.modal h2 { font-size: 1.5rem; margin-bottom: 8px; }
.modal p { color: #64748b; margin-bottom: 24px; }

/* === Sticky Mobile CTA === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 99;
}
.sticky-btn { border-radius: 10px; font-size: 1rem; background: #16a34a; border-color: #16a34a; }
.sticky-btn:hover { background: #15803d; border-color: #15803d; }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-form-wrap { max-width: 480px; }
  .hero h1 { font-size: 2.25rem; }
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-right { text-align: left; }
  .hero h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.5rem; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 1.65rem; }
  .btn-xl { padding: 16px 24px; font-size: 1.05rem; }
  .lead-form { padding: 24px; }
}
