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

:root {
  --orange:       #c0392b;
  --orange-dark:  #a93226;
  --orange-light: #f7f4f4;
  --navy:         #1a1f3c;
  --navy-mid:     #252b50;
  --crimson:      #e0185e;
  --red:          #cc2200;
  --green:        #16a34a;
  --cream:        #fef9f4;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ─── STICKY NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.nav-logo-text {
  color: var(--white); font-size: 1.15rem; font-weight: 900;
  letter-spacing: -0.5px; text-decoration: none;
}
.nav-logo-text em { font-style: normal; color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-link {
  color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600;
  text-decoration: none; padding: 7px 12px; border-radius: 6px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-nav-call {
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: .88rem; padding: 9px 20px;
  border-radius: 6px; text-decoration: none; white-space: nowrap;
  transition: background .2s;
}
.btn-nav-call:hover { background: var(--orange-dark); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 11px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner {
  max-width: 1000px; margin: 0 auto;
  font-size: .78rem; color: var(--gray-600);
  display: flex; flex-wrap: wrap; align-items: center; gap: 2px;
}
.breadcrumb-inner a { color: var(--gray-600); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--orange); text-decoration: underline; }
.breadcrumb-sep { margin: 0 5px; color: var(--gray-400); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
}
.hero-content {
  padding: 64px 48px 64px 40px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(224,124,26,.18);
  border: 1px solid rgba(224,124,26,.4);
  color: #fbbf24;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.8);
  margin-bottom: 36px; max-width: 440px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: var(--orange); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 14px 28px;
  border-radius: 8px; text-decoration: none;
  transition: background .2s, transform .1s; display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem; padding: 14px 28px;
  border-radius: 8px; text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.hero-stats { display: flex; flex-direction: column; gap: 12px; }
.hero-stat {
  display: flex; align-items: center; gap: 14px;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.hero-stat-num {
  font-size: 1.3rem; font-weight: 900; color: #fbbf24;
  white-space: nowrap; min-width: 80px;
}
.hero-image {
  position: relative; height: 100%; min-height: 560px; overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 25%);
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #eef1f8;
  border-top: 3px solid var(--navy);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 14px 36px;
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; color: var(--navy);
}
.trust-dot {
  width: 22px; height: 22px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .72rem; font-weight: 700; flex-shrink: 0;
}

/* ─── SHARED SECTION ─── */
.section { padding: 72px 24px; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); }
.section-gray { background: var(--gray-50); }
.container { max-width: 1000px; margin: 0 auto; }
.section-eyebrow {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.4px; color: var(--navy); margin-bottom: 10px;
}
.section-eyebrow.white { color: rgba(255,255,255,.6); }
.section-eyebrow.orange { color: var(--orange); }
.section-title {
  font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 14px; color: var(--gray-900);
}
.section-title.white { color: var(--white); }
.section-sub {
  font-size: 1rem; color: var(--gray-600); max-width: 560px; line-height: 1.65;
}
.section-sub.white { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 48px; }

/* ─── PAIN SECTION ─── */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin: 40px 0;
}
.pain-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 32px 24px; text-align: center;
}
.pain-card-num {
  font-size: 2.5rem; font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 10px;
}
.pain-card-label {
  font-size: .92rem; color: rgba(255,255,255,.8); line-height: 1.55; font-weight: 500;
}
.pain-closing {
  text-align: center; font-size: 1rem; color: rgba(255,255,255,.7);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
  font-style: italic;
}
.pain-cta { text-align: center; }

/* ─── WHO IS THIS FOR ─── */
.avatar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.avatar-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.avatar-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.avatar-icon {
  width: 52px; height: 52px; background: var(--cream);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.avatar-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--gray-900); }
.avatar-card p { font-size: .87rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.avatar-link {
  font-size: .82rem; font-weight: 800; color: var(--orange); text-decoration: none;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px; padding: 36px 30px;
  position: relative;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-lg);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.course-photo {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 10px; margin-bottom: 20px;
}
.course-eyebrow {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--navy); margin-bottom: 6px;
}
.course-title {
  font-size: 1.15rem; font-weight: 800; margin-bottom: 16px; color: var(--gray-900);
}
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amt {
  font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1;
}
.price-sym { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.per-group { font-size: .82rem; color: var(--gray-600); margin-bottom: 20px; }
.include-list { list-style: none; margin-bottom: 16px; }
.include-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--gray-700); margin-bottom: 9px;
}
.include-list li::before {
  content: '✓'; color: var(--green); font-weight: 800;
  font-size: .85rem; flex-shrink: 0; margin-top: 2px;
}
.btn-card {
  display: block; width: 100%; text-align: center;
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: .93rem; padding: 13px;
  border-radius: 8px; text-decoration: none; transition: background .2s;
}
.btn-card:hover { background: var(--navy-mid); }
.price-card.featured .btn-card { background: var(--orange); }
.price-card.featured .btn-card:hover { background: var(--orange-dark); }
.price-note {
  margin-top: 32px; text-align: center;
  font-size: .85rem; color: var(--gray-600);
}
.price-note a { color: var(--orange); font-weight: 600; text-decoration: none; }
.price-note a:hover { text-decoration: underline; }

/* ─── PHOTO + TEXT SPLIT ─── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.split-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; display: block; }
.why-list { list-style: none; margin-top: 28px; }
.why-item {
  display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: #eef1f8; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.why-item h3 { font-size: .97rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: .87rem; color: var(--gray-600); line-height: 1.55; }

/* ─── GUARANTEE ─── */
.guarantee-section {
  padding: 64px 24px; background: var(--cream);
  border-top: 1px solid var(--gray-200); text-align: center;
}
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #dcfce7; color: #15803d;
  border-radius: 100px; padding: 6px 20px;
  font-size: .77rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 24px;
}
.guarantee-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 900;
  margin-bottom: 16px; color: var(--gray-900);
}
.guarantee-section p {
  font-size: 1rem; color: var(--gray-600); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

/* ─── PROCESS ─── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; counter-reset: step;
}
.step {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.step:last-child { border-right: none; }
.step-num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--white);
}
.step h3 { font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.testi {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 28px 24px;
}
.testi-stars { color: #f59e0b; letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.testi-before {
  font-size: .82rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .4px;
  margin-bottom: 8px;
}
.testi blockquote {
  font-size: .92rem; color: var(--gray-700); font-style: italic;
  line-height: 1.65; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--gray-600); }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--orange);
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 900;
  color: var(--white); margin-bottom: 12px;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--orange);
  font-weight: 800; font-size: 1rem; padding: 14px 30px;
  border-radius: 8px; text-decoration: none; transition: background .2s; display: inline-block;
}
.btn-white:hover { background: #fff7ee; }
.btn-dark {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 14px 30px;
  border-radius: 8px; text-decoration: none; transition: background .2s; display: inline-block;
}
.btn-dark:hover { background: var(--navy-mid); }

/* ─── COMPARISON TABLE ─── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 14px; overflow: hidden;
}
.compare-table thead th {
  padding: 16px 20px; font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
}
.compare-table thead .col-label { background: transparent; }
.compare-table thead .col-us {
  background: var(--orange); color: var(--white); text-align: center;
}
.compare-table thead .col-them {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); text-align: center;
}
.compare-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,.04); }
.compare-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.08); }
.compare-table tbody td {
  padding: 14px 20px; font-size: .9rem; border-top: 1px solid rgba(255,255,255,.07);
}
.compare-table tbody .col-label { color: rgba(255,255,255,.75); font-weight: 500; }
.compare-table tbody .col-us { text-align: center; font-weight: 700; color: #ffffff; }
.compare-table tbody .col-them { text-align: center; color: rgba(255,255,255,.45); font-size: .85rem; }
.tick-yes { color: #4ade80; font-size: 1rem; }
.tick-no { color: rgba(255,255,255,.3); }
.save-pill {
  display: inline-block; background: #4ade80; color: #052e16;
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .5px; padding: 2px 9px; border-radius: 100px; margin-left: 6px;
  vertical-align: middle;
}
.compare-cta { text-align: center; margin-top: 32px; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: 10px; margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; background: var(--white); border: none; cursor: pointer;
  text-align: left; padding: 18px 20px;
  font-size: .93rem; font-weight: 700; color: var(--gray-900);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit; transition: background .15s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-plus {
  width: 24px; height: 24px; border-radius: 50%;
  background: #eef1f8; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: .9rem; color: var(--gray-700); line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-detail { margin-bottom: 24px; display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: #eef1f8;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.contact-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-600); }
.contact-value { font-size: .97rem; font-weight: 700; color: var(--gray-900); }
.contact-value a { color: var(--orange); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* ─── MEET LENKA ─── */
.lenka-quals { list-style: none; margin-top: 24px; }
.lenka-quals li {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--gray-700); margin-bottom: 12px; font-weight: 500;
}
.lenka-quals li::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--orange); color: var(--white);
  border-radius: 50%; font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lenka-quote {
  margin-top: 28px; padding: 20px 24px;
  background: #eef1f8; border-left: 4px solid var(--navy);
  border-radius: 0 10px 10px 0;
  font-size: .93rem; font-style: italic; color: var(--gray-700); line-height: 1.6;
}

/* ─── RISK CALCULATOR ─── */
.calc-section { background: var(--cream); }
.calc-box {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.calc-box h3 {
  font-size: 1.25rem; font-weight: 900; color: var(--gray-900);
  margin-bottom: 6px;
}
.calc-box .calc-intro {
  font-size: .9rem; color: var(--gray-600); margin-bottom: 32px; line-height: 1.55;
}
.calc-inputs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px;
}
.calc-field label {
  display: block; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--gray-700); margin-bottom: 6px;
}
.calc-field input, .calc-field select {
  width: 100%; border: 2px solid var(--gray-200);
  border-radius: 10px; padding: 11px 14px;
  font-size: .97rem; font-family: inherit; font-weight: 600;
  color: var(--gray-900); outline: none;
  transition: border-color .2s; background: var(--white);
}
.calc-field input:focus, .calc-field select:focus { border-color: var(--orange); }
.calc-field.full { grid-column: 1 / -1; }
.calc-btn {
  width: 100%; background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 1rem; padding: 15px;
  border-radius: 10px; border: none; cursor: pointer;
  font-family: inherit; transition: background .2s;
  margin-bottom: 0;
}
.calc-btn:hover { background: var(--orange-dark); }
.calc-results {
  display: none; margin-top: 28px;
  border-top: 2px solid var(--gray-100); padding-top: 28px;
}
.calc-results.visible { display: block; }
.calc-results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.calc-result-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 18px 16px; text-align: center;
}
.calc-result-card.highlight { background: var(--navy); border-color: var(--navy); }
.calc-result-card.good { background: #f0fdf4; border-color: #bbf7d0; }
.calc-result-num {
  font-size: 1.8rem; font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 6px;
}
.calc-result-card.highlight .calc-result-num { color: #fbbf24; }
.calc-result-card.good .calc-result-num { color: var(--green); }
.calc-result-label {
  font-size: .78rem; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.4;
}
.calc-result-card.highlight .calc-result-label { color: rgba(255,255,255,.7); }
.calc-result-card.good .calc-result-label { color: #15803d; }
.calc-compliance {
  background: var(--orange-light); border: 1.5px solid var(--orange);
  border-radius: 10px; padding: 16px 20px; margin-bottom: 20px;
  font-size: .9rem; line-height: 1.55;
}
.calc-compliance strong { color: var(--orange); }
.calc-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.calc-risk-level {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-radius: 12px; margin-bottom: 20px;
  font-size: .95rem; font-weight: 700;
}
.calc-risk-level.low    { background: #f0fdf4; color: #15803d; border: 1.5px solid #bbf7d0; }
.calc-risk-level.medium { background: #fffbeb; color: #92400e; border: 1.5px solid #fde68a; }
.calc-risk-level.high   { background: #fff7ed; color: #c2410c; border: 1.5px solid #fed7aa; }
.calc-risk-level.very-high { background: #fef2f2; color: #991b1b; border: 1.5px solid #fecaca; }
.risk-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.low .risk-dot    { background: #16a34a; }
.medium .risk-dot { background: #d97706; }
.high .risk-dot   { background: #ea580c; }
.very-high .risk-dot { background: #dc2626; }
.calc-source {
  font-size: .72rem; color: var(--gray-400); margin-top: 16px; text-align: center;
}

/* ─── NEARBY AREAS ─── */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-pill {
  background: #eef1f8; color: var(--navy);
  font-size: .82rem; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  text-decoration: none; transition: background .15s, color .15s;
}
.area-pill:hover { background: var(--navy); color: var(--white); }

/* ─── OTHER LOCATIONS FOOTER STRIP ─── */
.loc-footer-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 32px 24px;
}
.loc-footer-strip .container {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  align-items: center; justify-content: center;
}
.loc-footer-strip-label {
  font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .8px; color: var(--gray-600);
  margin-right: 4px; white-space: nowrap;
}
.loc-footer-strip a {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  text-decoration: none; padding: 5px 12px;
  border: 1px solid var(--gray-200); border-radius: 100px;
  transition: border-color .15s, color .15s;
}
.loc-footer-strip a:hover { border-color: var(--orange); color: var(--orange); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,.5);
  padding: 48px 24px 28px; font-size: .8rem;
}
.footer-inner {
  max-width: 1000px; margin: 0 auto;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 0;
  justify-content: center; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 24px;
}
.footer-links a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: .82rem; font-weight: 600; padding: 4px 14px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color .15s; white-space: nowrap;
}
.footer-links a:last-child { border-right: none; }
.footer-links a:hover { color: var(--white); }
.footer-copy {
  text-align: center; color: rgba(255,255,255,.35);
  font-size: .75rem; line-height: 1.8;
}
.footer-copy a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-copy a:hover { color: var(--white); }
@media (max-width: 480px) {
  .footer-links { gap: 4px 0; }
  .footer-links a { font-size: .78rem; padding: 4px 10px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 52px 16px; }
  .section-header { margin-bottom: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 44px 20px 36px; }
  .hero-image { min-height: 220px; order: -1; }
  .hero-image::after { background: linear-gradient(to bottom, transparent 50%, var(--navy) 100%); }
  .hero-stats { gap: 10px; }
  .hero-stat-num { font-size: 1.1rem; min-width: 64px; }
  .trust-inner { gap: 10px 20px; }
  .trust-item { font-size: .78rem; }
  .founder-quote-inner { flex-direction: column; gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .avatar-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-img { order: -1; }
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results-grid { grid-template-columns: 1fr 1fr !important; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .compare-wrap { -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > div:first-child { position: static !important; }
  .cta-band { padding: 48px 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-white, .btn-dark { width: 100%; max-width: 320px; text-align: center; }
  .guarantee-section { padding: 44px 16px; }
  .nav-links { display: none; }
  .hero-ctas .btn-ghost { width: 100%; max-width: 100%; text-align: center; }
  .faq-q { font-size: .88rem; padding: 16px 16px; }
  .section-title { font-size: clamp(1.45rem, 5vw, 1.9rem); }
  .price-amt { font-size: 2.4rem; }
  .loc-footer-strip { padding: 24px 16px; }
}

@media (max-width: 600px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-box { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .nav { padding: 10px 16px; }
  .nav-logo-text { font-size: .95rem; }
  .btn-nav-call { font-size: .8rem; padding: 8px 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; max-width: 100%; }
  .avatar-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-bottom: 1px solid rgba(255,255,255,.1); border-right: none; }
  .calc-results-grid { grid-template-columns: 1fr !important; }
  .pricing-grid { max-width: 100%; }
  .price-card { padding: 28px 20px; }
  .calc-risk-level { flex-direction: column; gap: 8px; text-align: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .compare-table tbody td,
  .compare-table thead th { font-size: .78rem; padding: 10px 12px; }
  .form-box { padding: 24px 16px; }
  footer { font-size: .75rem; line-height: 1.8; }
}
