:root {
  --blue-900: #0a1628;
  --blue-800: #0f2040;
  --blue-700: #1a3a6b;
  --blue-600: #1e4d8c;
  --blue-500: #2d6bb3;
  --blue-400: #4d8fd4;
  --blue-100: #d0e8f8;
  --blue-50:  #eef6fd;

  --silver-600: #7a8a9a;
  --silver-400: #a8b5c4;
  --silver-200: #d4dce6;
  --silver-100: #eef1f5;

  --white:     #ffffff;
  --off-white: #f4f6f9;

  --text-primary:   #0f2040;
  --text-secondary: #3a5070;
  --text-muted:     #7a8a9a;

  --accent:     #2d6bb3;
  --accent-hover: #1e4d8c;
  --accent-light: #4d8fd4;

  --green:      #1a7a4a;
  --green-bg:   #e8f5ee;
  --red:        #c0392b;
  --red-bg:     #fdeae8;

  --border:     #d4dce6;
  --border-light: #eef1f5;

  --bg-dark:    #0a1628;
  --bg-card:    #ffffff;
  --bg-section: #f4f6f9;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;

  --radius: 8px;
  --shadow-card: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-hover: 0 4px 20px rgba(10, 22, 40, 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.app-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 1px 4px rgba(10,22,40,0.06);
}
.app-nav .nav-brand { display: flex; align-items: center; text-decoration: none; }
.app-nav .nav-logo { height: 44px; width: auto; }
.app-nav .nav-links { display: flex; align-items: center; gap: 20px; }
.app-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.app-nav .nav-link:hover { color: var(--accent); }
.app-nav .nav-cta {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.app-nav .nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(45,107,179,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45,107,179,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: var(--white);
}
.hero-line1 {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 660px;
  line-height: 1.7;
}
.hero-line2 {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-disclaimer {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* ===== PROGRAM OVERVIEW ===== */
.program-overview {
  padding: 100px 24px;
  background: var(--white);
}
.program-overview-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.program-overview p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 20px;
}
.program-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  text-align: left;
}
.program-feature {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.program-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.program-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.program-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-section);
}
.how-it-works-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.hiw-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}
.hiw-step::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--silver-400);
}
.hiw-step:last-child::after { display: none; }
.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  border-radius: 50%;
  margin-bottom: 16px;
}
.hiw-step h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.hiw-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 24px;
  background: var(--white);
}
.pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.plan-card {
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 36px 28px;
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(45,107,179,0.12);
}
.plan-headline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.plan-description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}
.plan-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plan-price strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 24px 0;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.plan-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.plan-x {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.plan-best-for {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--bg-section);
  border-radius: var(--radius);
}
.plan-card .btn-primary, .plan-card .btn-outline {
  width: 100%;
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 24px;
  background: var(--off-white);
}
.testimonials-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.testimonials-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  font-family: var(--font-body);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.1);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.testimonial-stars {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.2;
}
.placeholder-badge {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  padding: 3px 8px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonial-footer { flex-wrap: wrap; }
  .placeholder-badge { margin-left: 0; margin-top: 4px; }
}

/* ===== MAINTENANCE ===== */
.maintenance {
  padding: 100px 24px;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_131715/images/a51de286-3178-4a1b-866b-45fbb3ed6ed5.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--white);
}
.maintenance::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  pointer-events: none;
}
.maintenance-inner {
  position: relative;
  z-index: 1;
}
.maintenance-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.maintenance .section-title { color: var(--white); }
.maintenance .section-subtitle { color: rgba(255,255,255,0.7); }
.maintenance-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.maint-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
}
.maint-feature-icon { font-size: 1.5rem; margin-bottom: 10px; }
.maint-feature h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}
.maint-feature p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 24px;
  background: var(--bg-section);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: none;
  padding-top: 4px;
}
.faq-item.open .faq-a { display: block; }

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 100px 24px;
  background: var(--white);
}
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,107,179,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ===== WHO IT'S FOR ===== */
.who-is-for {
  padding: 80px 24px;
  background: var(--blue-800);
  text-align: center;
  color: var(--white);
}
.who-is-for .section-label { color: var(--blue-400); }
.who-is-for .section-title { color: var(--white); }
.who-is-for p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  padding: 60px 24px;
  background: var(--bg-section);
}
.disclaimer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.disclaimer .section-title { font-size: 1.6rem; }
.disclaimer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.disclaimer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.disclaimer-list li::before {
  content: '•';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45,107,179,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 40px;
}
.final-cta .hero-cta { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-step::after { display: none; }
  .maintenance-features { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .app-nav { padding: 0 16px; }
  .hero { min-height: 100svh; }
  .hero-inner { padding: 80px 20px 60px; gap: 16px; }
  .hero-inner h1 { font-size: 2.2rem; }
  .hero-line1, .hero-line2 { font-size: 0.88rem; }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; justify-content: center; }
  .hiw-steps { grid-template-columns: 1fr; }
  .program-overview-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .section-title { font-size: 1.8rem; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 16px 24px;
  border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200);
  background: var(--off-white);
}
.trust-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'IBM Plex Sans', sans-serif;
}

/* ===== ASSESSMENT CTA ===== */
.assessment-cta {
  padding: 80px 24px;
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}
.assessment-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45,107,179,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.assessment-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.assessment-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  opacity: 0.9;
}
.assessment-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.assessment-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}
.assessment-form { width: 100%; }
.assessment-fields {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.assessment-group { flex: 1; min-width: 180px; }
.assessment-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
  outline: none;
}
.assessment-group input::placeholder { color: rgba(255,255,255,0.5); }
.assessment-group input:focus {
  border-color: var(--accent-light);
  background: rgba(255,255,255,0.12);
}
.assessment-btn {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(45,107,179,0.4);
}
.assessment-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.assessment-btn:active { transform: translateY(0); }
.assessment-privacy {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 640px) {
  .assessment-cta { padding: 60px 16px; }
  .assessment-fields { flex-direction: column; }
  .assessment-group { min-width: 100%; }
  .assessment-btn { width: 100%; }
}