:root {
  --navy: #071d35;
  --navy-2: #0d2f52;
  --gold: #d6a13d;
  --gold-2: #f2c464;
  --red: #b6121b;
  --red-dark: #8f0d15;
  --ink: #172033;
  --muted: #667085;
  --soft: #f7f8fa;
  --white: #ffffff;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #ffffff;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
  letter-spacing: -0.02em;
}

.brand-mark {
  color: var(--navy);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.35rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 0;
  color: #211704;
  box-shadow: 0 12px 24px rgba(214, 161, 61, 0.3);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-gold:hover {
  color: #000000;
  transform: translateY(-1px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 140px;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 161, 61, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(7, 29, 53, 0.96), rgba(10, 45, 80, 0.92)),
    url("../img/hero-placeholder.jpg");
  background-size: cover;
  background-position: center;
}

.hero-section h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.hero-copy {
  font-size: 1.25rem;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 850;
  color: var(--gold-2);
  margin-bottom: 0.9rem;
}

.eyebrow.dark {
  color: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
}

.proof-grid div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.proof-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.proof-grid strong {
  display: block;
  font-size: 1.55rem;
  color: #ffffff;
}

.proof-grid span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2rem;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.form-card.large {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.form-card h2 {
  font-weight: 850;
  letter-spacing: -0.04em;
}

.form-card h3 {
  font-size: 1.15rem;
  font-weight: 850;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid #d0d5dd;
  padding: 0.78rem 0.9rem;
}

.form-label {
  font-weight: 750;
  font-size: 0.9rem;
}

.section-padding {
  padding: 90px 0;
}

.bg-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.section-padding h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.section-heading p,
.section-padding p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-card,
.stat-card,
.info-panel {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.feature-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}


.feature-card h3,
.stat-card h3,
.info-panel h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.stat-card strong {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  margin-bottom: 1rem;
}

.info-panel {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.info-panel.warning {
  border-color: #f1d6a0;
}

.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: 900;
}

.x-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #b42318;
  font-weight: 900;
}

.image-placeholder {
  min-height: 420px;
  border-radius: 32px;
  background: linear-gradient(135deg, #e8edf5, #ffffff);
  border: 2px dashed #bcc6d5;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.image-placeholder i {
  display: block;
  font-size: 3rem;
  color: var(--gold);
}

.image-placeholder strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
}

.image-placeholder span {
  display: block;
}

.image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.image-card-content {
  padding: 1.25rem 0.5rem 0;
  text-align: center;
}

.image-card-content h3 {
  margin-bottom: 0.75rem;
}

.image-card-content p {
  margin-bottom: 0;
  opacity: 0.9;
}

.candidate-hero-image img,
.hero-cover-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-subtext {
  max-width: 850px;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 1.25rem;
}

.cta-band {
  padding: 70px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

.page-hero {
  padding: 150px 0 85px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(214, 161, 61, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.page-hero p {
  max-width: 760px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 28px 0;
  background: #07111f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.thank-you h1 {
  font-weight: 850;
  letter-spacing: -0.05em;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.thank-you p {
  max-width: 650px;
  margin: 1rem auto 2rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.text-gold {
  color: var(--gold);
}

.floating-infokit-cta {
  position: fixed;
  right: 24px;
  bottom: 34px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px 14px 78px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  line-height: 1.1;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-infokit-cta:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.floating-infokit-cta img {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 105px;
  height: auto;
  max-width: none;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  pointer-events: none;
}

.floating-infokit-cta span {
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .form-card {
    padding: 1.35rem;
  }

  .section-padding {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .candidate-hero-image img,
  .hero-cover-image {
    height: 360px;
  }

  .floating-infokit-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding-left: 88px;
  }

  .floating-infokit-cta img {
    width: 88px;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .floating-infokit-cta span {
    font-size: 0.9rem;
  }
}