:root {
  --accord-green: hsl(84, 80%, 44%);
  --accord-green-dark: hsl(84, 70%, 36%);
  --accord-green-light: hsl(84, 55%, 92%);
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --max-width: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 4rem 1rem 3rem;
}

.hero-content {
  width: min(100%, 1120px);
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-stat {
  max-width: 620px;
  margin: 0 auto;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.9rem, 5vw, 3.35rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-stat span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-main {
  max-width: 560px;
  margin: 0 auto;
}

.market-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.hero h1 .accent {
  color: var(--accord-green);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 2rem;
  max-width: 560px;
}

@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 3rem;
  }

  .hero-stat {
    margin: 0;
    text-align: left;
  }

  .hero-main {
    margin: 0;
    text-align: left;
  }

  .hero-sub {
    margin-left: 0;
  }

  .hero-benefits {
    justify-content: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accord-green);
  color: #0a0a0a;
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: var(--accord-green-dark);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accord-green);
  color: var(--text);
  padding: 0.85rem 1.75rem;
}

.btn-outline:hover {
  background: var(--accord-green-light);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.hero-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 140px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  color: var(--accord-green);
  background: rgba(0, 0, 0, 0.2);
}

.hero-benefit span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Comparison cards */
.compare-grid {
  display: grid;
  gap: 1.5rem;
}

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

.compare-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.compare-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
}

.compare-card.muted h3 {
  color: var(--text-muted);
}

.compare-card.highlight {
  border: 2px solid var(--accord-green);
  position: relative;
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 1.25rem;
  background: var(--accord-green);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.compare-card.highlight h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  color: var(--accord-green);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.compare-list li strong {
  display: block;
  margin-bottom: 0.2rem;
}

.compare-list li p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Trust band */
.trust-band {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .trust-band {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-band img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.trust-band-photo {
  object-fit: cover;
  aspect-ratio: 1024 / 278;
}

.trust-band-media {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #111827;
}

.trust-band-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accord-green);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.inc-badge {
  margin-top: 1.5rem;
  max-width: 220px;
  border-radius: 8px;
}

/* Role spotlight */
.spotlight {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .spotlight {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.spotlight-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.spotlight h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.spotlight p {
  color: var(--text-muted);
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.role-tag {
  background: var(--accord-green-light);
  color: var(--accord-green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Markets */
.market-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.market-chip {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
  color: inherit;
}

.market-chip:hover {
  border-color: var(--accord-green);
}

.market-chip.is-active {
  background: var(--accord-green);
  border-color: var(--accord-green);
  color: #0a0a0a;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.5rem;
}

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

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-muted);
}

.faq-item.is-open .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Footer */
.site-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  max-width: 560px;
  margin-inline: auto;
}

.footer-copy {
  margin-top: 1.5rem !important;
  font-size: 0.8rem !important;
  opacity: 0.6;
}

/* Quiz modal */
.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.quiz-modal.is-open {
  display: flex;
}

.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.quiz-dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(100%, 480px);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
}

.quiz-progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin: 0.75rem 0 1.5rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accord-green);
  border-radius: 999px;
  width: 25%;
  transition: width 0.3s ease;
}

#quiz-title {
  text-align: center;
  font-size: 1.35rem;
  margin: 0;
}

#quiz-question {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  text-align: center;
}

.result-lead {
  font-weight: 400 !important;
  text-align: center;
}

#quiz-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.92rem;
}

.quiz-option:has(input:checked) {
  border-color: var(--accord-green);
  background: var(--accord-green-light);
}

.quiz-option input {
  accent-color: var(--accord-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

#quiz-next {
  width: 100%;
}

#quiz-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.result-apply {
  width: 100%;
}
