
: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; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  background: var(--off-white);
  color: var(--text);
  padding-top: 80px;
}

/* Header: light state by default on this page */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.header-logo { height: 120px; display: flex; align-items: center; }
.header-logo-img { height: 120px; width: 120px; display: block; object-fit: contain; }

.header-nav { display: flex; align-items: center; gap: 40px; }
.header-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--navy); }
.header-nav .nav-cta {
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
}
.header-nav .nav-cta:hover { background: var(--navy); color: var(--white); }

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

/* Main */
.pl-review-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.pl-review-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.pl-review-lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 24px;
}

.pl-review-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pl-review-problems {
  list-style: decimal;
  margin: 0 0 24px 1.25em;
  padding: 0;
}
.pl-review-problems li {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
}
.pl-review-problems strong { font-weight: 700; }

.pl-review-rule {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
}

.pl-review-close {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
}

.pl-review-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
  margin-bottom: 48px;
}
.pl-review-hero-cta:hover {
  background: #d94600;
  transform: translateY(-2px);
}

.pl-review-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 40px;
}
.pl-review-testimonial-quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 16px;
}
.pl-review-testimonial-credit {
  font-size: 14px;
  font-weight: 600;
  color: var(--stone);
  line-height: 1.5;
}
.pl-review-testimonial-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.pl-review-privacy {
  font-size: 13px;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.55;
  text-align: center;
  margin-top: 16px;
}

.pl-review-callout {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.pl-review-callout-block {
  margin-bottom: 32px;
}
.pl-review-callout-block:last-child { margin-bottom: 0; }
.pl-review-callout-title {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pl-review-callout-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.65;
}
.pl-review-callout-body strong {
  font-weight: 600;
  color: var(--navy);
}

.pl-review-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 48px;
  margin-bottom: 48px;
}

.pl-review-form .form-field { margin-bottom: 24px; }
.pl-review-form .form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}

.pl-review-form .form-input,
.pl-review-form .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.pl-review-form .form-input:focus,
.pl-review-form .form-textarea:focus {
  border-color: var(--orange);
}
.pl-review-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.pl-review-submit {
  width: 100%;
  padding: 12px 24px;
  background: #F05001;
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 8px;
}
.pl-review-submit:hover { background: #d94600; }

.pl-review-steps {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.pl-review-steps-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.pl-review-steps ol {
  list-style: none;
  counter-reset: step;
}
.pl-review-steps li {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.6;
}
.pl-review-steps li::before {
  counter-increment: step;
  content: counter(step) '.';
  display: inline-block;
  font-weight: 700;
  color: var(--orange);
  margin-right: 8px;
}
.pl-review-steps-close {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: #080E18;
  padding: 60px 64px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-logo-img { width: 120px; height: 120px; display: block; 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: 20px;
}
.footer-about {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  max-width: 260px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  max-width: 500px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .pl-review-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { padding-top: 72px; }
  .pl-review-page { padding: 48px 20px 80px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding: 48px 20px; }
}

/* 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;
}
