/* ============================================
   Business Bottleneck Solutions — Styles
   Colors: Navy #1B3A4B, Green #2D9B4E, Orange #E8712B, White #FFFFFF
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
:focus-visible { outline: 3px solid #E8712B; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-green { color: #2D9B4E; }
.text-orange { color: #E8712B; }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #E8712B; margin-bottom: 8px;
}
.section-heading { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #1B3A4B; margin-bottom: 16px; }
.section-sub { color: #555; max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-cta { text-align: center; margin-top: 40px; }
.center { text-align: center; }

/* Check icons (green checkmarks for lists) */
.check-icon::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #2D9B4E; color: #fff; font-size: 0.7rem; font-weight: 700;
  margin-right: 8px; flex-shrink: 0;
}
.check-green::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #2D9B4E; color: #fff; font-size: 0.65rem; font-weight: 700;
  margin-right: 8px; flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block; font-weight: 600; border-radius: 8px; transition: background 0.2s, transform 0.1s;
  text-align: center; line-height: 1.3;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: #E8712B; color: #fff; padding: 14px 32px; font-size: 1rem; }
.btn-primary:hover { background: #d0621f; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-ghost { color: #1B3A4B; padding: 14px 32px; border: 2px solid #ccc; }
.btn-ghost:hover { border-color: #1B3A4B; }
.btn-ghost-light {
  color: #1B3A4B; padding: 14px 32px; border: 2px solid #1B3A4B; background: transparent;
  border-radius: 8px; font-weight: 600;
}
.btn-ghost-light:hover { background: #1B3A4B; color: #fff; }
.btn-cta-header {
  background: #E8712B; color: #fff; padding: 10px 24px; font-size: 0.9rem;
  border-radius: 8px; font-weight: 600; white-space: nowrap;
  transition: background 0.2s;
}
.btn-cta-header:hover { background: #d0621f; }
.btn-outline { border: 2px solid #1B3A4B; color: #1B3A4B; padding: 10px 24px; font-size: 0.9rem; }
.btn-outline:hover { background: #1B3A4B; color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-arrow { margin-left: 4px; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid #e8e8e8; padding: 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { display: block; height: 83px; width: auto; }
.logo-footer-img { height: 99px; filter: brightness(0) invert(1); }

/* Footer logo & social */
.footer-logo-link { margin-bottom: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: #aaa; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
.nav-list { display: flex; gap: 28px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: #333; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: #2D9B4E; }
.nav-caret { font-size: 0.7em; opacity: 0.6; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -12px; min-width: 200px;
  background: #fff; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0; z-index: 100; margin-top: 8px;
}
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu .nav-link { display: block; padding: 8px 16px; font-size: 0.85rem; white-space: nowrap; }
.nav-dropdown-menu .nav-link:hover { background: #f4f8f5; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger-line { width: 24px; height: 2px; background: #1B3A4B; border-radius: 2px; transition: transform 0.3s; }

@media (max-width: 768px) {
  .header-inner { height: 82px; gap: 12px; }
  .logo { flex: 0 1 auto; min-width: 0; padding: 5px 0; }
  .logo-img {
    height: 72px;
    width: auto;
    max-width: min(68vw, 180px);
    object-fit: contain;
  }
  .mobile-menu-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 82px; left: 0; right: 0; background: #fff;
    padding: 20px; border-bottom: 1px solid #e8e8e8; transform: translateY(-120%);
    visibility: hidden; pointer-events: none;
    transition: transform 0.3s, visibility 0s linear 0.3s; z-index: 99;
  }
  .main-nav.open {
    transform: translateY(0); visibility: visible; pointer-events: auto;
    transition: transform 0.3s, visibility 0s;
  }
  .nav-list { flex-direction: column; gap: 16px; }
  .nav-link { font-size: 1.1rem; }
  .nav-dropdown-menu {
    position: static; box-shadow: none; margin-top: 8px; padding-left: 16px;
    display: none; border-left: 2px solid #e8e8e8;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .btn-cta-header { display: none; }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Hero --- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #143027 0%, #1a4d2e 40%, #0d2a18 100%);
  color: #fff;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 520px; }
.hero-benefits { margin-bottom: 28px; }
.hero-benefits li {
  display: flex; align-items: center; gap: 4px; margin-bottom: 10px;
  font-size: 1rem; color: rgba(255,255,255,0.9);
}
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-micro { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrap { position: relative; }
.hero-photo { display: block; max-width: 100%; height: auto; border-radius: 12px; }

@media (max-width: 768px) {
  .hero { padding: 40px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-benefits li { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-micro { text-align: center; }
  .hero-visual { max-width: 320px; margin: 0 auto; }
}

/* Hero button overrides for dark background */
.hero .btn-ghost-light {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost-light:hover {
  background: rgba(255,255,255,0.15); border-color: #fff; color: #fff;
}

/* --- Bottleneck Strip --- */
.bottleneck-strip { background: #f5f5f5; padding: 40px 0; border-top: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; }
.strip-heading { text-align: center; color: #1B3A4B; font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.strip-items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.strip-item {
  display: flex; align-items: center; gap: 8px;
  color: #333; font-size: 0.85rem; font-weight: 500;
  background: #fff; padding: 10px 18px; border-radius: 40px;
  border: 1px solid #e0e0e0;
}
.strip-icon-wrap {
  width: 32px; height: 32px; border-radius: 50%; background: #f0f5f1;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.strip-icon-wrap svg { stroke: #1B3A4B; }

@media (max-width: 480px) {
  .strip-items { gap: 20px; }
  .strip-item { font-size: 0.75rem; }
}

/* --- Solutions --- */
.solutions { padding: 80px 0; text-align: center; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.solution-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 32px 24px;
  text-align: left; transition: box-shadow 0.2s, transform 0.2s;
}
.solution-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.solution-card-icon {
  width: 48px; height: 48px; background: #f0f5f1; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #2D9B4E;
}
.solution-card h3 { font-size: 1.1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 8px; }
.solution-card p { font-size: 0.9rem; color: #555; margin-bottom: 16px; }
.solution-card-link { font-size: 0.85rem; font-weight: 600; color: #E8712B; }
.solution-card-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

/* --- Pricing --- */
.pricing { padding: 80px 0; background: #f8f9fa; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 40px 28px;
  position: relative;
}
.pricing-card-featured {
  border: 2px solid #2D9B4E; box-shadow: 0 8px 30px rgba(45,155,78,0.12);
}

/* Numbered pricing circles */
.pricing-num {
  width: 48px; height: 48px; border-radius: 50%; background: #1B3A4B;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: #fff; font-size: 1.2rem; font-weight: 800;
}
.featured-num { background: #E8712B; }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #2D9B4E; color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.08em;
}
.pricing-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: #888; text-transform: uppercase; margin-bottom: 8px; }
.pricing-desc { font-size: 1rem; color: #333; margin-bottom: 16px; }
.pricing-amount { font-size: 2.4rem; font-weight: 900; color: #1B3A4B; }
.pricing-amount span { font-size: 1rem; font-weight: 400; color: #888; }
.featured-price { color: #E8712B; }
.pricing-old { text-decoration: line-through; color: #999; font-size: 1rem; margin-bottom: 4px; margin-top: 8px; }
.pricing-savings { color: #2D9B4E; font-weight: 600; font-size: 0.9rem; margin-top: 4px; }
.pricing-note { color: #666; font-size: 0.9rem; margin-top: 16px; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
}

/* --- Assessment Promo --- */
.assessment-promo { padding: 80px 0; background: #fff; color: #1a1a1a; }
.assessment-promo-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.assessment-promo .section-heading { color: #1B3A4B; }

.promo-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #1B3A4B;
  margin-bottom: 16px; line-height: 1.2;
}
.promo-copy {
  font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 24px;
}

.promo-benefits { margin: 20px 0 28px; }
.promo-benefits li {
  padding: 8px 0; display: flex; align-items: center;
  color: #333; font-size: 0.95rem;
}
.assessment-promo .hero-micro { color: #888; margin-top: 12px; }

/* Assessment promo icon row */
.promo-icon-row {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 24px;
}
.promo-icon-circle {
  width: 44px; height: 44px; border-radius: 50%; background: #f0f5f1;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e0e0e0;
}

/* Score Preview Card */
.score-preview {
  background: #fff; border-radius: 16px; padding: 32px; text-align: center; color: #1a1a1a;
  border: 1px solid #e0e0e0; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.score-preview-label {
  font-size: 0.8rem; color: #888; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.score-preview-main { margin-bottom: 8px; }
.score-preview-number { font-size: 4rem; font-weight: 900; color: #E8712B; line-height: 1; }
.score-preview-max { font-size: 1.4rem; font-weight: 400; color: #aaa; }
.score-preview-grade { font-size: 1.1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 20px; }

/* Score preview bottleneck list */
.score-preview-bottlenecks {
  background: #f8f9fa; border-radius: 10px; padding: 16px; text-align: left; margin-bottom: 16px;
}
.spb-title {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: #888; margin-bottom: 10px;
}
.spb-row {
  display: flex; align-items: center; gap: 6px; padding: 6px 0;
  font-size: 0.85rem; color: #333; font-weight: 500;
}
.spb-num { font-weight: 700; color: #1B3A4B; min-width: 20px; }
.spb-badge {
  margin-left: auto; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 2px 8px; border-radius: 4px;
}
.spb-high { background: #fde8e8; color: #dc3545; }
.spb-med { background: #fff3cd; color: #d68910; }
.spb-low { background: #d4edda; color: #2D9B4E; }

.score-preview-bar { height: 8px; background: #e8e8e8; border-radius: 4px; overflow: hidden; }
.score-preview-fill { height: 100%; background: linear-gradient(90deg, #dc3545, #E8712B, #2D9B4E); border-radius: 4px; }
.score-preview-disclaimer { font-size: 0.72rem; color: #aaa; margin-top: 12px; font-style: italic; }

@media (max-width: 768px) {
  .assessment-promo-inner { grid-template-columns: 1fr; }
  .score-preview { max-width: 340px; margin: 0 auto; }
}

/* --- Demos + How It Works Combined --- */
.demos-hiw-combined { padding: 60px 0; background: #f8faf9; border-top: 1px solid #e8e8e8; }
.demos-hiw-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }

.demos-col .section-eyebrow { margin-bottom: 16px; }
.demos-stack { display: flex; flex-direction: column; gap: 16px; }

.demo-card-simple {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; padding: 18px 20px;
  transition: box-shadow 0.2s;
}
.demo-card-simple:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.demo-simple-icon {
  width: 40px; height: 40px; background: #f0f5f1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.demo-simple-text h3 { font-size: 0.95rem; font-weight: 700; color: #1B3A4B; margin-bottom: 4px; }
.demo-simple-text p { font-size: 0.85rem; color: #555; margin-bottom: 6px; line-height: 1.4; }
.demo-simple-link { font-size: 0.85rem; font-weight: 600; color: #E8712B; }
.demo-simple-link:hover { text-decoration: underline; }

/* How It Works column */
.hiw-col { padding: 24px; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; }
.hiw-col-heading { font-size: 1.2rem; font-weight: 800; color: #1B3A4B; margin-bottom: 24px; }
.hiw-steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 8px; align-items: start; }
.hiw-step { text-align: center; }
.hiw-step-icon {
  width: 44px; height: 44px; border-radius: 50%; background: #f0f5f1; border: 2px solid #2D9B4E;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.hiw-step span { display: block; font-size: 0.75rem; font-weight: 600; color: #1B3A4B; line-height: 1.3; }
.hiw-arrow { font-size: 1.1rem; color: #2D9B4E; font-weight: 700; padding-top: 10px; }

@media (max-width: 900px) {
  .demos-hiw-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hiw-steps-row { grid-template-columns: 1fr; gap: 12px; }
  .hiw-arrow { transform: rotate(90deg); justify-self: center; padding: 0; }
}

/* How It Works is now combined with Demos section — see .hiw-col above */

/* --- About --- */
.about { padding: 80px 0; text-align: center; }
.about-inner p { max-width: 640px; margin: 0 auto 32px; color: #555; font-size: 1.05rem; }
.about-method { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.method-step { font-weight: 700; font-size: 1.1rem; color: #1B3A4B; }
.method-arrow { font-size: 1.4rem; color: #2D9B4E; font-weight: 700; }

/* --- Trust --- */
.trust { padding: 60px 0; background: #f0f5f1; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { text-align: center; padding: 20px; }
.trust-item h3 { font-size: 1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 8px; }
.trust-item p { font-size: 0.9rem; color: #555; }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq { padding: 80px 0; text-align: center; }
.faq-list { max-width: 720px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item summary {
  padding: 20px 0; font-weight: 600; color: #1B3A4B; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: #E8712B; font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 20px; color: #555; font-size: 0.95rem; }

/* --- Resources --- */
.resources { padding: 80px 0; background: #f8f9fa; text-align: center; }
.resources-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.resource-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 32px 24px; text-align: left;
}
.resource-card h3 { font-size: 1.1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 8px; }
.resource-card p { font-size: 0.9rem; color: #555; margin-bottom: 20px; }

@media (max-width: 480px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.site-footer { background: #1B3A4B; color: #ccc; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 32px; }
.footer-brand { }
.footer-brand .logo-primary { color: #fff; }
.footer-brand .logo-secondary { color: #2D9B4E; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; color: #aaa; }
.footer-logo { margin-bottom: 8px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: 0.85rem; color: #aaa; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

/* Footer CTA column */
.footer-cta-col p { font-size: 0.85rem; color: #aaa; margin-bottom: 16px; }
.footer-cta-col .btn-primary { font-size: 0.85rem; padding: 10px 20px; }

.footer-bottom { margin-top: 40px; border-top: 1px solid #2a4f5f; padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #777; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #777; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* --- Modal --- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-content {
  background: #fff; border-radius: 16px; padding: 40px 32px; max-width: 600px;
  width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px; font-size: 1.8rem; color: #999;
  line-height: 1; padding: 4px;
}
.modal-close:hover { color: #333; }
#selector-heading { font-size: 1.4rem; font-weight: 800; color: #1B3A4B; margin-bottom: 24px; }

.selector-service {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid #e8e8e8; border-radius: 10px; margin-bottom: 10px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.selector-service:hover { border-color: #2D9B4E; }
.selector-service.selected { border-color: #2D9B4E; background: #f0f9f4; }
.selector-service input { accent-color: #2D9B4E; width: 18px; height: 18px; flex-shrink: 0; }
.selector-service-info { flex: 1; }
.selector-service-name { font-weight: 700; color: #1B3A4B; font-size: 0.95rem; }
.selector-service-desc { font-size: 0.8rem; color: #777; }

.selector-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-top: 1px solid #e8e8e8; margin-top: 8px;
}
.selector-count { font-size: 0.9rem; color: #555; }
.selector-price { font-size: 1.4rem; font-weight: 800; color: #1B3A4B; }

.selector-upsell {
  background: #fff8e1; border: 2px solid #E8712B; border-radius: 12px;
  padding: 20px; text-align: center; margin: 16px 0;
}
.selector-upsell h3 { font-size: 1.1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 8px; }
.selector-upsell p { font-size: 0.9rem; color: #555; margin-bottom: 8px; }
.selector-upsell s { color: #999; }
.selector-upsell strong { color: #2D9B4E; font-size: 1.1rem; }

.selector-checkout { width: 100%; margin-top: 16px; }
.selector-checkout:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- Assessment Page (shared) --- */
.assessment-page { min-height: 100vh; background: #f8f9fa; }
.assessment-header { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 16px 0; }
.assessment-header-inner { display: flex; align-items: center; justify-content: space-between; }
.assessment-container { max-width: 680px; margin: 0 auto; padding: 40px 20px; }
.assessment-progress { margin-bottom: 32px; }
.assessment-progress-bar { height: 6px; background: #e8e8e8; border-radius: 3px; overflow: hidden; }
.assessment-progress-fill { height: 100%; background: #2D9B4E; border-radius: 3px; transition: width 0.3s; }
.assessment-progress-text { font-size: 0.8rem; color: #888; margin-top: 8px; text-align: right; }
.assessment-step { display: none; }
.assessment-step.active { display: block; }
.assessment-step h2 { font-size: 1.3rem; font-weight: 700; color: #1B3A4B; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: #333; margin-bottom: 6px; font-size: 0.95rem; }
.form-group .required::after { content: ' *'; color: #dc3545; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 2px solid #ddd; border-radius: 8px;
  font-size: 1rem; transition: border-color 0.2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #2D9B4E; outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 2px solid #e8e8e8; border-radius: 8px; cursor: pointer; transition: border-color 0.2s;
}
.radio-option:hover { border-color: #2D9B4E; }
.radio-option input { accent-color: #2D9B4E; }
.radio-option.selected { border-color: #2D9B4E; background: #f0f9f4; }
.assessment-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 16px; }
.assessment-nav .btn { min-width: 120px; }

/* Results */
.results-container { max-width: 720px; margin: 0 auto; padding: 40px 20px; }
.results-score-card {
  background: #fff; border-radius: 16px; padding: 40px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 32px;
}
.results-score-number { font-size: 5rem; font-weight: 900; }
.results-score-grade { font-size: 1.3rem; font-weight: 700; margin-top: 8px; }
.results-score-bar { height: 10px; background: #e8e8e8; border-radius: 5px; overflow: hidden; margin: 20px auto; max-width: 300px; }
.results-score-fill { height: 100%; border-radius: 5px; }
.results-categories { margin-bottom: 32px; }
.results-category {
  background: #fff; border-radius: 10px; padding: 16px 20px; margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; justify-content: space-between; align-items: center;
}
.results-category-name { font-weight: 600; color: #1B3A4B; }
.results-category-score { font-weight: 700; }
.results-bottlenecks { margin-bottom: 32px; }
.results-bottleneck {
  background: #fff; border-left: 4px solid #E8712B; border-radius: 0 10px 10px 0;
  padding: 20px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.results-bottleneck-severity { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.results-bottleneck h4 { font-size: 1rem; font-weight: 700; color: #1B3A4B; margin-bottom: 4px; }
.results-bottleneck p { font-size: 0.9rem; color: #555; }
.results-recommendations { margin-bottom: 32px; }
.results-recommendation {
  background: #f0f9f4; border: 1px solid #c3e6cb; border-radius: 10px;
  padding: 20px; margin-bottom: 12px;
}
.results-recommendation h4 { color: #2D9B4E; font-size: 1rem; margin-bottom: 4px; }
.results-recommendation p { font-size: 0.9rem; color: #555; }
.results-cta { text-align: center; margin-top: 24px; }
.results-cta .btn { margin: 0 8px 12px; }

/* Newsletter opt-in */
.newsletter-optin {
  background: #f8f9fa; border-radius: 10px; padding: 20px; margin-top: 24px;
  display: flex; align-items: center; gap: 10px;
}
.newsletter-optin input { accent-color: #2D9B4E; flex-shrink: 0; }
.newsletter-optin label { font-size: 0.9rem; color: #555; cursor: pointer; }
.newsletter-optin a { color: #E8712B; }

/* --- Website Design Section --- */
.website-design {
  padding: 80px 0;
  background: #f8faf9;
}
.wd-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start;
  margin-top: 32px;
}
.wd-pitch {
  font-size: 1.1rem; color: #333; margin-bottom: 24px; line-height: 1.7;
}
.wd-includes {
  list-style: none; margin-bottom: 24px; padding: 0;
}
.wd-includes li {
  position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.95rem; color: #444;
}
.wd-includes li::before {
  content: '✓'; position: absolute; left: 0; color: #2D9B4E; font-weight: 700;
}
.wd-hosting-note {
  font-size: 0.9rem; color: #666; font-style: italic; margin-bottom: 28px;
  padding: 12px 16px; background: #fff; border-left: 3px solid #2D9B4E; border-radius: 0 6px 6px 0;
}
.wd-crosssell {
  background: #fff; border-radius: 10px; padding: 20px; border: 1px solid #e0e0e0;
}
.wd-crosssell-heading {
  font-size: 0.95rem; font-weight: 700; color: #1B3A4B; margin-bottom: 6px;
}
.wd-crosssell p {
  font-size: 0.9rem; color: #555; margin-bottom: 12px;
}
.wd-pricing-card {
  background: #fff; border-radius: 14px; padding: 32px 28px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px solid #E8712B;
  position: sticky; top: 100px;
}
.wd-pricing-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #E8712B; margin-bottom: 8px;
}
.wd-pricing-amount {
  font-size: 2.4rem; font-weight: 900; color: #1B3A4B;
}
.wd-pricing-amount span {
  font-size: 1rem; font-weight: 500; color: #666;
}
.wd-pricing-desc {
  font-size: 0.9rem; color: #555; margin: 12px 0 24px; line-height: 1.6;
}
.wd-cta-primary {
  width: 100%; margin-bottom: 12px;
}
.wd-cta-secondary {
  width: 100%; margin-bottom: 16px;
}
.wd-pricing-note {
  font-size: 0.8rem; color: #888;
}

/* --- Website Preview Form Section --- */
.website-preview-form {
  padding: 80px 0;
  background: #fff;
}
.wpf-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.wpf-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800; color: #1B3A4B;
  margin-bottom: 16px;
}
.wpf-copy p {
  font-size: 1rem; color: #444; line-height: 1.7; margin-bottom: 12px;
}
.wpf-disclaimer {
  font-size: 0.85rem; color: #888; font-style: italic; margin-top: 8px;
}
.wpf-form {
  background: #f8f9fa; border-radius: 12px; padding: 28px; border: 1px solid #e8e8e8;
}
.wpf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.wpf-field label {
  display: block; font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 4px;
}
.wpf-field input, .wpf-field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d0d0d0; border-radius: 6px;
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
}
.wpf-field input:focus, .wpf-field textarea:focus {
  border-color: #2D9B4E; outline: none; box-shadow: 0 0 0 3px rgba(45,155,78,0.12);
}
.wpf-full { margin-bottom: 16px; }
.wpf-checkboxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-top: 6px;
}
.wpf-check {
  font-size: 0.9rem; color: #444; display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.wpf-check input { accent-color: #2D9B4E; flex-shrink: 0; }
.wpf-submit { width: 100%; margin-top: 8px; }
.wpf-micro {
  font-size: 0.8rem; color: #888; text-align: center; margin-top: 10px;
}
.wpf-success {
  background: #f0f9f4; border: 1px solid #c3e6cb; border-radius: 8px; padding: 20px;
  text-align: center; margin-top: 16px;
}
.wpf-success p { color: #2D9B4E; font-weight: 600; }

@media (max-width: 900px) {
  .wd-layout { grid-template-columns: 1fr; }
  .wd-pricing-card { position: static; }
  .wpf-inner { grid-template-columns: 1fr; }
  .wpf-row { grid-template-columns: 1fr; }
  .wpf-checkboxes { grid-template-columns: 1fr; }
}

/* --- Website Design Photo --- */
.wd-image-col { order: -1; }
.wd-section-photo {
  border-radius: 12px; width: 100%; height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 901px) {
  .wd-layout { grid-template-columns: 1fr 380px; }
  .wd-image-col { order: 0; grid-column: 1 / -1; max-width: 480px; margin: 0 auto 24px; }
}

/* Assessment Promo Photo */
.promo-section-photo {
  border-radius: 12px; width: 100%; height: auto; margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- Bundle Section --- */
.bundle-section { padding: 80px 0; background: #fff; }
.bundle-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.bundle-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 12px;
  padding: 36px 28px; position: relative; text-align: center;
  transition: box-shadow 0.2s;
}
.bundle-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.bundle-card-popular {
  border: 2px solid #E8712B; box-shadow: 0 8px 30px rgba(232,113,43,0.12);
}
.bundle-card-best {
  border: 2px solid #2D9B4E; box-shadow: 0 8px 30px rgba(45,155,78,0.12);
}
.bundle-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #E8712B; color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.08em; white-space: nowrap;
}
.bundle-badge-best { background: #2D9B4E; }
.bundle-tier {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #888; margin-bottom: 8px;
}
.bundle-name { font-size: 1.15rem; font-weight: 800; color: #1B3A4B; margin-bottom: 16px; }
.bundle-price-amount {
  font-size: 2rem; font-weight: 900; color: #1B3A4B; margin-bottom: 8px;
}
.bundle-price-amount span { font-size: 0.85rem; font-weight: 400; color: #888; }
.bundle-dual-price { margin-bottom: 16px; }
.bundle-price-line {
  display: flex; justify-content: center; gap: 8px; align-items: baseline;
  margin-bottom: 6px;
}
.bundle-price-label { font-size: 0.85rem; font-weight: 600; color: #555; }
.bundle-price-amount-sm {
  font-size: 1.1rem; font-weight: 800; color: #1B3A4B;
}
.bundle-price-amount-sm span { font-size: 0.8rem; font-weight: 400; color: #888; }
.bundle-desc { font-size: 0.9rem; color: #555; margin-bottom: 24px; line-height: 1.5; }
.bundle-cta { width: 100%; }
.bundle-assessment-cta {
  text-align: center; margin-top: 32px; display: flex; align-items: center;
  justify-content: center; gap: 16px; flex-wrap: wrap;
}
.bundle-assessment-cta p { font-size: 0.95rem; color: #555; margin: 0; }

@media (max-width: 768px) {
  .bundle-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }
}

/* --- Contact Form --- */
.contact { padding: 80px 0; background: #f8f9fa; }
.contact-form { max-width: 640px; margin: 0 auto; }
.contact-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.contact-field label {
  display: block; font-size: 0.85rem; font-weight: 600; color: #333; margin-bottom: 4px;
}
.contact-field input, .contact-field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d0d0d0; border-radius: 6px;
  font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s;
}
.contact-field input:focus, .contact-field textarea:focus {
  border-color: #2D9B4E; outline: none; box-shadow: 0 0 0 3px rgba(45,155,78,0.12);
}
.contact-full { margin-bottom: 16px; }
.contact-submit { width: 100%; margin-top: 8px; }
.contact-micro {
  font-size: 0.8rem; color: #888; text-align: center; margin-top: 10px;
}
.contact-micro a { color: #E8712B; }
.contact-success {
  background: #f0f9f4; border: 1px solid #c3e6cb; border-radius: 8px;
  padding: 20px; text-align: center; margin-top: 16px;
}
.contact-success p { color: #2D9B4E; font-weight: 600; }
.contact-error {
  background: #fde8e8; border: 1px solid #f5c6cb; border-radius: 8px;
  padding: 20px; text-align: center; margin-top: 16px;
}
.contact-error p { color: #dc3545; font-weight: 600; }

@media (max-width: 768px) {
  .contact-row { grid-template-columns: 1fr; }
}

/* --- Selector Website Toggle --- */
.selector-website-toggle {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid #E8712B; border-radius: 10px; margin-bottom: 16px;
  cursor: pointer; transition: background 0.2s; background: #fffaf6;
}
.selector-website-toggle.selected { background: #fff3e8; border-color: #E8712B; }
.selector-website-toggle input { accent-color: #E8712B; width: 18px; height: 18px; flex-shrink: 0; }
.selector-website-name { font-weight: 700; color: #1B3A4B; font-size: 0.95rem; }
.selector-website-desc { font-size: 0.8rem; color: #777; }
.selector-website-label { display: flex; align-items: center; gap: 12px; cursor: pointer; width: 100%; }
.selector-website-info { flex: 1; }

/* Selector divider */
.selector-divider {
  text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: #888; margin: 4px 0 12px; padding: 8px 0;
  border-bottom: 1px solid #e8e8e8;
}

/* Updated selector summary layout */
.selector-summary {
  display: flex; justify-content: space-between; align-items: start;
  padding: 16px 0; border-top: 1px solid #e8e8e8; margin-top: 8px; gap: 16px;
}
.selector-summary-left { flex: 1; }
.selector-summary-right { text-align: right; }
.selector-due-today-row, .selector-monthly-row {
  display: flex; justify-content: flex-end; align-items: baseline; gap: 8px; margin-bottom: 4px;
}
.selector-label { font-size: 0.8rem; color: #888; font-weight: 600; }
.selector-savings {
  font-size: 0.82rem; color: #2D9B4E; font-weight: 600; margin-top: 4px;
}
