:root {
    --red: #CC2200;
    --red-light: #F5E8E6;
    --red-dark: #991A00;
    --charcoal: #111111;
    --charcoal-mid: #333333;
    --gray: #6B6B6B;
    --gray-light: #F5F4F1;
    --gray-border: #E4E2DC;
    --white: #FFFFFF;
    --cream: #FDFCFA;
    --font-head: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 2rem;
  }
  .nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px;
    gap: 1.5rem;
  }
  /* Push the nav links to fill space, CTA stays right */
  #site-nav .nav-links {
    flex: 1 !important;
    justify-content: flex-end !important;
    margin-right: 0 !important;
  }
  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 44px;
    width: auto;
    display: block;
    }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; color: white !important; }
  /* NAV CTA BUTTON — top right, always visible */
  a.nav-cta-btn, .nav-cta-btn {
    display: inline-block !important;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: var(--red) !important;
    color: white !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: 6px !important;
    border: 2px solid var(--red) !important;
    transition: background 0.2s, color 0.2s !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
  a.nav-cta-btn:hover, .nav-cta-btn:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    color: white !important;
  }


  /* SECTIONS */
  section { padding: 5rem 2rem; }
  .container { max-width: 1140px; margin: 0 auto; }
  .container-narrow { max-width: 760px; margin: 0 auto; }

  /* BUTTONS */
  /* BUTTONS — scoped tightly to override theme */
  a.btn, .btn {
    display: inline-block !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    border-radius: 7px !important;
    padding: 0.85rem 1.75rem !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
    background: var(--white) !important;
    color: var(--red) !important;
    border: 2px solid var(--red) !important;
    box-shadow: none !important;
    line-height: 1.4 !important;
  }
  a.btn:hover, .btn:hover {
    background: var(--red) !important;
    color: white !important;
    transform: translateY(-1px);
  }
  /* Ghost: white outline on dark hero bg */
  a.btn-ghost, .btn-ghost {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
  }
  a.btn-ghost:hover, .btn-ghost:hover {
    background: white !important;
    color: var(--red) !important;
    border-color: white !important;
  }

  /* HERO */
  #hero {
    background: var(--charcoal);
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,34,0,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  #hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,34,0,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-block;
    background: rgba(204,34,0,0.2);
    color: #FF8A85;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
  }
  #hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 680px;
  }
  #hero h1 span { color: var(--red); }
  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  /* .hero-trust removed */

  /* LOGOS BAR */
  #logos {
    padding: 2.5rem 2rem;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-border);
  }
  .logos-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    margin-bottom: 1.5rem;
  }
  .logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .logo-pill {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal-mid);
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 5px;
  }

  /* SECTION LABELS */
  .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
  }
  .section-heading {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
  }
  .section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.75;
  }

  /* PROBLEM */
  #problem { background: var(--cream); }
  .problem-intro { margin-bottom: 3rem; }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .problem-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s;
  }
  .problem-card:hover { border-color: rgba(200,48,42,0.3); }
  .problem-icon {
    width: 40px; height: 40px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .problem-card h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--charcoal);
  }
  .problem-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
  .problem-callout {
    margin-top: 3rem;
    background: var(--charcoal);
    border-radius: 14px;
    padding: 2.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .problem-callout strong { color: white; font-weight: 600; }

  /* SOLUTION */
  #solution { background: var(--gray-light); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .step-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    position: relative;
  }
  .step-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red-light);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .step-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
  }
  .step-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }
  .step-bullets {
    margin-top: 0.75rem;
    padding-left: 0;
    list-style: none;
  }
  .step-bullets li {
    font-size: 0.88rem;
    color: var(--gray);
    padding: 0.2rem 0 0.2rem 1.1rem;
    position: relative;
  }
  .step-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.8rem;
  }

  /* RESULTS */
  #results {
    background: var(--red);
    color: white;
  }
  /* Results section text removed per v2 design */

  /* RESULTS — staggered two-row layout */
  .results-grid-top {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 1.25rem !important;
    flex-wrap: wrap !important;
    margin-top: 3rem !important;
  }
  .results-grid-bottom {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 1.25rem !important;
    flex-wrap: wrap !important;
    margin-top: 1.25rem !important;
  }
  .result-card {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    text-align: center !important;
    width: 200px !important;
    max-width: 200px !important;
    flex: 0 0 200px !important;
    box-sizing: border-box !important;
  }
  .result-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
  }
  .result-icon { font-size: 1.6rem; margin-bottom: 0.75rem; display: block; }
  .result-card h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
  }
  .result-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.55; }

  /* TESTIMONIALS */
  #testimonials { background: var(--cream); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 2rem;
  }
  .stars { color: var(--red); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
  .testimonial-text {
    font-size: 0.97rem;
    color: var(--charcoal-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
  }
  .av-1 { background: #3A5A8C; }
  .av-2 { background: #2D7D52; }
  .av-3 { background: #7A3E8C; }
  .author-name {
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--charcoal);
  }
  .author-company { font-size: 0.82rem; color: var(--gray); }

  /* PRICING */
  #pricing { background: var(--gray-light); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }
  .pricing-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .pricing-card.featured {
    border-color: var(--red);
    border-width: 2px;
  }
  .featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .plan-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
  }
  .plan-price {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .plan-price span { font-size: 1rem; font-weight: 500; color: var(--gray); }
  .plan-tagline {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }
  .plan-divider {
    border: none;
    border-top: 1px solid var(--gray-border);
    margin: 0 0 1.25rem;
  }
  .plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.75rem;
  }
  .plan-features li {
    font-size: 0.88rem;
    color: var(--charcoal-mid);
    padding: 0.3rem 0 0.3rem 1.3rem;
    position: relative;
    line-height: 1.5;
  }
  .plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
  }
  .plan-best-for {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.55;
  }
  .plan-best-for strong { color: var(--charcoal-mid); }
  /* Plan CTAs */
  a.plan-cta, .plan-cta {
    display: block !important;
    text-align: center !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    padding: 0.8rem 1rem !important;
    border-radius: 7px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    background: var(--white) !important;
    color: var(--red) !important;
    border: 2px solid var(--red) !important;
    box-shadow: none !important;
  }
  a.plan-cta:hover, .plan-cta:hover {
    background: var(--red) !important;
    color: white !important;
  }

  /* FAQ */
  #faq { background: var(--cream); }
  .faq-list { margin-top: 2.5rem; }
  .faq-item {
    border-top: 1px solid var(--gray-border);
  }
  .faq-item:last-child { border-bottom: 1px solid var(--gray-border); }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
  }
  .faq-icon {
    width: 22px; height: 22px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--red);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    display: none;
    padding-bottom: 1.3rem;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 740px;
  }
  .faq-item.open .faq-answer { display: block; }

  /* REFUND */
  #refund {
    background: var(--charcoal);
    padding: 4rem 2rem;
  }
  .refund-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  .refund-badge {
    display: inline-block;
    background: rgba(204,34,0,0.2);
    color: #FF8A85;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
  }
  #refund h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
  }
  #refund p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
  }

  /* FINAL CTA */
  #final-cta { background: var(--white); text-align: center; }
  #final-cta .section-heading { max-width: 640px; margin: 0 auto 1.25rem; }
  #final-cta .section-sub { margin: 0 auto 2.5rem; }
  .final-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.5);
    padding: 3rem 2rem 2rem;
    font-size: 0.88rem;
  }
  .footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .footer-brand p { margin-top: 0.5rem; max-width: 240px; line-height: 1.65; }
  .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
  .footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: white; }
  .footer-bottom {
    max-width: 1140px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
  }

  /* RESPONSIVE */

  @media(max-width: 768px) {
    a.nav-cta-btn, .nav-cta-btn { display: none !important; }
  }
  @media(max-width: 680px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    section { padding: 3.5rem 1.25rem; }
    #hero { padding: 4rem 1.25rem 3.5rem; }
    .hero-ctas { flex-direction: column; }
    .hero-trust { gap: 1rem; }
    .final-ctas { flex-direction: column; align-items: center; }
  }

/* ── WordPress-specific styles ─────────────────────────────────── */

/* Inner page layout */
.page-content {
  padding: 5rem 2rem;
  min-height: 60vh;
}
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-border);
}
.page-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.page-excerpt {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
}
.page-body {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
}
.page-body h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.page-body h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.page-body p  { margin-bottom: 1.25rem; }
.page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-body li { margin-bottom: 0.4rem; }
.page-body a  { color: var(--red); text-decoration: underline; }

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WordPress nav menu overrides */
#site-nav .nav-links { padding: 0; margin: 0; }
#site-nav .nav-links li { list-style: none; }
#site-nav .nav-links li a { 
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: color 0.2s;
}
#site-nav .nav-links li a:hover { color: var(--red); }
#site-nav .nav-links .nav-cta > a,
#site-nav .nav-links li.menu-item-cta > a {
  background: var(--red);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
#site-nav .nav-links .nav-cta > a:hover,
#site-nav .nav-links li.menu-item-cta > a:hover {
  background: var(--red-dark) !important;
}

/* Footer nav */
.footer-nav .footer-links { padding: 0; margin: 0; display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-nav .footer-links li { list-style: none; }
.footer-nav .footer-links li a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; font-size: 0.88rem; }
.footer-nav .footer-links li a:hover { color: white; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* Ghost button (hero) */
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* WP alignment helpers */
.aligncenter { display: block; margin: 0 auto; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }

/* Mobile nav open state */
@media(max-width:680px) {
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--gray-border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.75rem 2rem; font-size: 1rem; }
}
