
:root {
  --orange: #F05001;
  --navy: #0E1B2E;
  --white: #FFFFFF;
  --off-white: #F5F3F0;
  --stone: #8A8278;
  --border: rgba(0,0,0,0.1);
  --text: #1C1C1C;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Mulish', sans-serif; background: var(--off-white); color: var(--text); }

.site-header {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-logo { height: 80px; display: flex; align-items: center; }
.header-logo-img { height: 80px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
}
.header-nav a:hover { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav-cta-cold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.35;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFFFFF !important;
  padding: 16px 28px;
  background: #F05001;
  text-decoration: none;
  border: none;
  transition: all 0.25s;
}
.nav-cta-cold:hover { background: #d94600; color: #FFFFFF !important; }

.success-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 100px;
  text-align: center;
}
.success-block {
  max-width: 560px;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  background: rgba(240, 80, 1, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--orange);
}
.success-block h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.success-block p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 16px;
}
.success-block .what-next {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--stone);
}
.success-ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.success-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.success-ctas a:hover { background: #d94600; transform: translateY(-2px); }
.success-ctas a.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.success-ctas a.secondary:hover { background: var(--navy); color: var(--white); }

.site-footer {
  background: #080E18;
  padding: 48px 48px 32px;
  text-align: center;
}
.footer-logo-img { width: 80px; height: 80px; margin-bottom: 12px; object-fit: contain; }
.footer-tagline { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-about { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); max-width: 400px; margin: 0 auto 24px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* FAQ CTA bar */
.faq-cta-bar {
  background: var(--orange);
  padding: 64px 64px;
  text-align: center;
}
.faq-cta-bar-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.faq-cta-bar-sub {
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}
.faq-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-cta-bar-links {
  margin-top: 28px;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.faq-cta-bar-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-cta-bar-links a:hover {
  color: var(--orange);
}
.faq-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 4px;
  transition: all 0.25s;
}
.faq-cta-primary:hover { background: transparent; color: var(--white); }
.faq-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  transition: all 0.25s;
}
.faq-cta-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
@media (max-width: 768px) {
  .faq-section { padding: 72px 24px; }
  .faq-cta-bar { padding: 56px 24px; }
  .faq-cta-btns { flex-direction: column; align-items: stretch; }
  .faq-cta-primary, .faq-cta-secondary { justify-content: center; }
}


/* Phase 5 accessibility: visible focus */
:focus-visible {
  outline: 3px solid var(--orange, #F05001);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.pl-review-problems-heading,
.pl-review-form-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy, #0E1B2E);
  margin: 32px 0 16px;
}
