/* IR Local — Main Stylesheet */
:root {
  --navy: #0f172a;
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-light: #eff6ff;
  --orange: #ea580c;
  --orange-hover: #c2410c;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(15,23,42,0.10);
  --shadow-lg: 0 8px 40px rgba(15,23,42,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ─── NAV ─── */
nav {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 3px 6px;
  display: block;
}
.nav-logo span {
  font-size: 20px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: -0.5px;
}
.nav-phone {
  color: #93c5fd;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.nav-phone:hover { color: var(--white); text-decoration: none; }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-hover); text-decoration: none; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a:not(.nav-cta) {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  color: var(--white);
  padding: 88px 24px 72px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 780px;
  margin: 0 auto 20px;
}
.hero h1 em { color: #60a5fa; font-style: normal; }
.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-hover); text-decoration: none; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); text-decoration: none; }
.hero-trust {
  margin-top: 40px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span::before { content: "✓ "; color: #4ade80; }

/* ─── SECTIONS ─── */
section { padding: 72px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.55;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── PROBLEM / PAIN SECTION ─── */
.pain-section { background: var(--gray-50); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pain-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid #ef4444;
}
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.pain-card p { font-size: 15px; color: var(--gray-500); line-height: 1.55; }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ─── OFFER / PRICING ─── */
.pricing-section { background: var(--gray-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(29,78,216,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.pricing-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.pricing-price { font-size: 40px; font-weight: 900; color: var(--gray-900); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 500; color: var(--gray-500); }
.pricing-monthly { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 15px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
}
.pricing-features li::before { content: "✓"; color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-outline {
  display: block;
  text-align: center;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--blue); color: var(--white); text-decoration: none; }
.btn-block {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-block:hover { background: var(--orange-hover); text-decoration: none; }

/* ─── TRUST / PROOF ─── */
.proof-section { background: var(--navy); color: var(--white); }
.proof-section .section-title { color: var(--white); }
.proof-section .section-sub { color: #94a3b8; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.proof-card p { font-size: 16px; line-height: 1.65; color: #e2e8f0; font-style: italic; margin-bottom: 16px; }
.proof-card .proof-author { font-size: 13px; color: #94a3b8; font-style: normal; font-weight: 600; }

/* ─── FAQ ─── */
.faq-list { max-width: 740px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}
.faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.faq-item p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
details.faq-item summary {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
details.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; }
details.faq-item[open] summary::after { content: "−"; }
details.faq-item p { font-size: 15px; color: var(--gray-500); line-height: 1.65; margin-top: 14px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-band p { font-size: 18px; color: #bfdbfe; max-width: 520px; margin: 0 auto 36px; }
.cta-band .btn-primary { font-size: 18px; padding: 18px 40px; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: #64748b;
  text-align: center;
  padding: 36px 24px;
  font-size: 13px;
}
footer a { color: #64748b; }
footer a:hover { color: #94a3b8; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-size: 16px; font-weight: 800; color: #94a3b8; margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }

/* ─── FORM ─── */
.form-section { background: var(--gray-50); }
.contact-form {
  max-width: 600px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit,
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover,
.btn-submit:hover { background: var(--orange-hover); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--blue);
  color: var(--white);
  padding: 32px 24px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-num { font-size: 36px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 13px; color: #bfdbfe; margin-top: 4px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links a:not(.nav-cta):not(.nav-phone) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .hero { padding: 60px 20px 52px; }
}
