/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #023a51;
  --navy-deep: #011e2b;
  --green: #2cbc63;
  --green-dark: #1a9a4a;
  --green-glow: rgba(44,188,99,0.15);
  --red: #eb4962;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --grey-bg: #f0f3f7;
  --grey-border: #e2e8f0;
  --grey-text: #5a6a7e;
  --text: #1a1a2e;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }

/* ── Top Bar ── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 22px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 10px 20px; border-radius: 8px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: background 0.2s;
}
.btn-call:hover { background: var(--green-dark); }

/* ── Hero ── */
.hero {
  background: var(--white);
  padding: 56px 0 72px;
  position: relative;
  border-bottom: 4px solid var(--green);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start;
}
.urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-glow); color: var(--green-dark);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(44,188,99,0.3);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-left h1 {
  color: var(--navy); font-size: 40px; font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-sub {
  color: var(--grey-text); font-size: 17px; line-height: 1.65; margin-bottom: 28px;
}
.hero-sub strong { color: var(--text); }
.badge-row {
  display: flex; gap: 20px; align-items: center; justify-content: flex-start;
  margin-bottom: 28px; flex-wrap: wrap;
}
.trust-badge { height: 44px; width: auto; display: block; }
.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.point {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 14px;
}
.point strong { color: var(--navy); }

/* ── Form Card ── */
.form-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
}
.form-header {
  background: var(--green); padding: 22px 24px; text-align: center;
}
.form-header h2 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.form-header p { color: rgba(255,255,255,0.9); font-size: 13px; }
form { padding: 24px; }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--grey-border); border-radius: 8px;
  font-size: 15px; font-family: var(--font); color: var(--text);
  background: var(--off-white); transition: all 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; padding: 15px 24px;
  background: var(--green); color: var(--white); border: none; border-radius: 8px;
  font-size: 16px; font-weight: 800; font-family: var(--font);
  cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-note { text-align: center; font-size: 12px; color: var(--grey-text); margin-top: 10px; }

/* ── Proof Bar ── */
.proof-bar { background: var(--off-white); padding: 32px 0; border-bottom: 1px solid var(--grey-border); }
.proof-grid {
  display: flex; justify-content: center; align-items: center; gap: 0;
}
.proof-item { text-align: center; flex: 1; }
.proof-num { display: block; font-size: 30px; font-weight: 800; color: var(--navy); }
.proof-label { display: block; font-size: 13px; color: var(--grey-text); margin-top: 2px; font-weight: 500; }
.proof-divider { width: 1px; height: 48px; background: var(--grey-border); flex-shrink: 0; }

/* ── Section styling ── */
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-size: 32px; font-weight: 800; color: var(--navy);
  text-align: center; margin-bottom: 48px; letter-spacing: -0.3px;
}

/* ── About Owen ── */
.about { padding: 80px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center;
}
.about-image img {
  width: 280px; height: 280px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.about-content h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.about-content p { font-size: 16px; color: var(--grey-text); margin-bottom: 16px; line-height: 1.7; }
.about-stats { display: flex; gap: 32px; margin-top: 24px; }
.about-stat {
  text-align: center; padding: 16px 24px;
  background: var(--off-white); border-radius: 10px; border: 1px solid var(--grey-border);
}
.about-stat strong { display: block; font-size: 24px; color: var(--green); font-weight: 800; }
.about-stat span { font-size: 12px; color: var(--grey-text); font-weight: 500; }

/* ── Process ── */
.process { padding: 80px 0; background: var(--off-white); }
.steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.step-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--grey-border); box-shadow: var(--shadow-sm);
  flex: 1; max-width: 320px; text-align: center;
  transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }
.step-arrow {
  display: flex; align-items: center; padding: 0 8px; flex-shrink: 0; margin-top: 48px;
}

/* ── Reviews ── */
.reviews { padding: 80px 0; background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--grey-border);
  display: flex; flex-direction: column;
}
.review-stars { color: #f59e0b; font-size: 20px; margin-bottom: 14px; letter-spacing: 3px; }
.review-text {
  font-size: 15px; color: var(--text); line-height: 1.65;
  font-style: italic; flex-grow: 1; margin-bottom: 18px;
}
.review-author strong { display: block; font-size: 14px; color: var(--navy); }
.review-author span { font-size: 12px; color: var(--grey-text); }

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 10px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px; font-size: 16px; font-weight: 700; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.15s;
}
.faq-item summary:hover { background: var(--off-white); }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--green); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 18px; font-size: 15px; color: var(--grey-text); line-height: 1.65;
}

/* ── Final CTA ── */
.final-cta { padding: 60px 0; background: var(--navy); }
.final-cta-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
}
.cta-left h2 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-left p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.6; }
.cta-right { text-align: center; flex-shrink: 0; }
.btn-cta-large { padding: 18px 40px; font-size: 17px; border-radius: 10px; }
.cta-phone {
  display: block; margin-top: 14px;
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--white); }

/* ── Footer ── */
.footer {
  background: var(--navy-deep); padding: 40px 0;
  border-top: 3px solid var(--green);
}
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 18px; margin-bottom: 12px; filter: brightness(10); }
.footer p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer strong { color: rgba(255,255,255,0.8); }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 14px 24px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 20px rgba(44,188,99,0.4);
  transition: all 0.2s;
  font-family: var(--font);
}
.floating-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(44,188,99,0.5); }

/* ── Popup form overlay ── */
.popup-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
  align-items: center; justify-content: center;
  padding: 24px;
}
.popup-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  max-width: 440px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupIn 0.25s ease-out;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-card .form-header { background: var(--green); padding: 22px 24px; text-align: center; }
.popup-card .form-header h2 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.popup-card .form-header p { color: rgba(255,255,255,0.9); font-size: 13px; }
.popup-card form { padding: 24px; }
.popup-close {
  position: absolute; top: 12px; right: 16px; z-index: 10;
  background: none; border: none; color: var(--white); font-size: 28px;
  cursor: pointer; line-height: 1; font-weight: 300;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { opacity: 0.7; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-left h1 { font-size: 30px; }
  .hero-points { grid-template-columns: 1fr; }
  .badge-row { gap: 12px; justify-content: center; }
  .trust-badge { height: 36px; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
  .proof-grid { flex-wrap: wrap; gap: 20px; }
  .proof-divider { display: none; }
  .proof-item { min-width: 140px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image img { width: 200px; height: 200px; margin: 0 auto; }
  .about-stats { justify-content: center; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; margin-top: 0; }
  .step-card { max-width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .cta-left p { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .section-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 0 48px; }
  .hero-left h1 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .proof-num { font-size: 24px; }
  .about-stats { flex-direction: column; gap: 12px; }
}
