:root {
  --bg: #eef4ff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #0f172a;
  --dark: #0f172a;
  --muted: #4b5b76;
  --slate: #64748b;
  --line: #cfdbef;
  --line-strong: #b6c7de;
  --primary: #0052cc;
  --primary-dark: #003d99;
  --primary-soft: #e8f0ff;
  --secondary: #0b1220;
  --success: #16a34a;
  --shadow-sm: 0 10px 24px rgb(15 23 42 / 0.08);
  --shadow-md: 0 24px 54px rgb(15 23 42 / 0.12);
  --shadow-lg: 0 36px 80px rgb(15 23 42 / 0.15);
  --glow-primary: 0 22px 44px rgb(0 82 204 / 0.36);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1160px;
  --section-space: clamp(3rem, 5vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(1100px 620px at 5% -10%, #dce9ff 0%, transparent 60%),
    radial-gradient(860px 520px at 95% -5%, #d5fbf0 0%, transparent 58%),
    linear-gradient(180deg, #f4f8ff 0%, #eff5ff 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 0.4rem;
  z-index: 999;
}

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

.section {
  padding: var(--section-space) 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 6.8rem;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.14), transparent 40%);
}

.section-alt {
  background: linear-gradient(180deg, #f9fbff, #f4f8ff);
  border-block: 1px solid rgb(184 199 221 / 0.28);
}

.section-compact {
  padding: 1.35rem 0 0.8rem;
}

.route-section {
  background: linear-gradient(180deg, #f9fbff, #f3f7ff);
  border-block: 1px solid rgb(184 199 221 / 0.28);
}

.announcement-bar {
  background: linear-gradient(92deg, #0a1d3a, #12305c 54%, #194278);
  border-bottom: 1px solid rgb(166 191 232 / 0.28);
  color: #e7f0ff;
}

.announcement-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.25rem 0;
}

.announcement-bar__text {
  margin: 0;
  text-align: center;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.announcement-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgb(214 228 255 / 0.38);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.54rem 0.84rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.announcement-bar__cta:hover,
.announcement-bar__cta:focus-visible {
  background: rgb(255 255 255 / 0.18);
  border-color: rgb(227 237 255 / 0.64);
  transform: translateY(-1px);
}

.announcement-bar__cta:focus-visible {
  outline: 3px solid rgb(255 255 255 / 0.32);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  width: 100%;
  margin-inline: 0;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgb(182 199 222 / 0.5);
  border-radius: 0;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.08);
  background: rgb(247 251 255 / 0.92);
  backdrop-filter: blur(14px) saturate(130%);
  transition:
    top 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 3px 10px rgb(15 23 42 / 0.07);
  background: rgb(247 251 255 / 0.97);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: min-height 0.24s ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 190px;
}

.brand strong,
.footer-brand strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: block;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  white-space: nowrap;
}

.brand-mark {
  width: 132px;
  height: 52px;
  border-radius: 10px;
  display: inline-block;
  background: transparent url("assets/img/passfaster-logo.png") center / contain no-repeat;
  box-shadow: none;
  border: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.site-header .brand > span:not(.brand-mark) {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgb(182 199 222 / 0.72);
  background: rgb(255 255 255 / 0.76);
  box-shadow: 0 8px 18px rgb(15 23 42 / 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgb(37 99 235 / 0.3);
  outline-offset: 2px;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #243a5e;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.nav-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
}

.nav-links a {
  color: #334155;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.2rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions .btn-secondary {
  display: none;
}

.site-header.menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 0.82rem 1.3rem;
  font-weight: 800;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgb(37 99 235 / 0.25);
  outline-offset: 2px;
}

.btn-large {
  padding: 0.98rem 1.55rem;
  font-size: 0.95rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0052cc, #0069ff 60%, #003d99);
  box-shadow: var(--glow-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 35px rgb(29 78 216 / 0.35);
}

.btn-secondary {
  color: #11203a;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
}

.hero {
  padding-top: clamp(2rem, 3.4vw, 2.8rem);
  overflow: clip;
  background-image:
    radial-gradient(at 0% 0%, #f2eeff 0px, transparent 50%),
    radial-gradient(at 100% 0%, #e7f0ff 0px, transparent 50%),
    radial-gradient(at 100% 100%, #e1fff7 0px, transparent 50%),
    radial-gradient(at 0% 100%, #e9ebff 0px, transparent 50%);
  border-radius: 0 0 34px 34px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -110px;
  top: -140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(37 99 235 / 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid,
.split-section,
.form-section,
.footer-grid,
.dark-band-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  background: rgb(255 255 255 / 0.65);
  border: 1px solid rgb(188 206 236 / 0.7);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgb(15 23 42 / 0.1);
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
}

.hero-copy h1,
.section-heading h2,
.dark-band h2 {
  font-family: "Sora", "Manrope", sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 5.2vw, 4.05rem);
  max-width: 13ch;
  background: linear-gradient(130deg, #081b3a, #003d99 60%, #0052cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  max-width: 54ch;
  margin: 1.2rem 0 1.8rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.95rem;
  color: #1849b5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 800;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #c8dafb;
  background: linear-gradient(180deg, #edf3ff, #e5efff);
}

.eyebrow.light {
  color: #9fc1ff;
  background: transparent;
  border: 0;
  padding: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  align-items: center;
}

.hero-trust {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.hero-trust li,
.trust-item {
  background: rgb(255 255 255 / 0.76);
  border: 1px solid rgb(184 199 221 / 0.48);
  border-radius: 18px;
  padding: 0.95rem;
  box-shadow: 0 8px 22px rgb(15 23 42 / 0.07);
}

.hero-trust strong,
.trust-item strong,
.mini-grid strong,
.dark-cards strong {
  display: block;
  font-weight: 800;
}

.hero-trust span,
.trust-item span,
.mini-grid span,
.dark-cards span,
.price-desc,
.panel p,
.panel ol {
  color: var(--muted);
}

.trust-strip {
  padding-top: 1.2rem;
}

.trust-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.84), rgb(247 251 255 / 0.84));
  box-shadow: 0 7px 18px rgb(15 23 42 / 0.06);
}

.trust-item__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e8f0ff, #deebff);
  border: 1px solid #cadcf8;
  font-size: 1rem;
}

.global-trust-proof {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.trust-proof-bar {
  background: linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(246 251 255 / 0.9));
  border: 1px solid rgb(182 199 222 / 0.52);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
  padding: 0.9rem 1rem;
}

.trust-proof-title {
  margin: 0;
  font-weight: 800;
  color: #15366f;
  font-family: "Sora", "Manrope", sans-serif;
}

.trust-proof-list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
}

.trust-proof-list li {
  margin: 0;
  position: relative;
  padding-left: 1.2rem;
  color: #324b71;
  font-size: 0.92rem;
}

.trust-proof-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #16a34a;
  font-weight: 800;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 470px);
}

.main-driver-img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgb(182 199 222 / 0.58);
  box-shadow: 0 24px 52px rgb(15 23 42 / 0.16);
}

.floating-card {
  position: absolute;
  background: rgb(255 255 255 / 0.96);
  border: 1px solid rgb(188 206 236 / 0.75);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.14);
  border-radius: 12px;
  padding: 0.48rem 0.72rem;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.theory-card {
  top: 0.9rem;
  left: -0.65rem;
  color: #0f9f4f;
}

.practical-card {
  bottom: 0.9rem;
  right: -0.65rem;
  color: #0a55cf;
}

.product-card,
.info-card,
.price-card,
.panel,
.lead-form,
.faq-item {
  background: var(--surface);
  border: 1px solid rgb(184 199 221 / 0.52);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.mockup-card {
  max-width: 470px;
  padding: 2.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mockup-card li {
  font-size: 0.95rem;
  margin-bottom: 0.52rem;
}

.mockup-card .price-row {
  margin-top: 1.7rem;
  padding-top: 0.5rem;
}

.mockup-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  right: -92px;
  top: -116px;
  background: radial-gradient(circle, rgb(37 99 235 / 0.3) 0%, transparent 70%);
}

.mockup-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  left: -105px;
  bottom: -130px;
  background: radial-gradient(circle, rgb(34 197 94 / 0.22) 0%, transparent 70%);
}

.mockup-card > * {
  position: relative;
  z-index: 1;
}

.product-card h2,
.price-card h3,
.info-card h3,
.panel h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.panel-title {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.01em;
  font-size: clamp(1.45rem, 2.1vw, 1.8rem);
  line-height: 1.2;
}

.panel-feature-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgb(184 199 221 / 0.56);
  box-shadow: 0 12px 24px rgb(15 23 42 / 0.12);
  margin-bottom: 1rem;
  object-fit: cover;
}

.product-card ul,
.price-card ul,
.tick-list,
.footer-grid ul,
.inline-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.product-card li,
.price-card li,
.tick-list li,
.inline-trust li {
  position: relative;
  margin-bottom: 0.58rem;
  padding-left: 1.46rem;
}

.product-card li::before,
.price-card li::before,
.tick-list li::before,
.inline-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.01rem;
  color: var(--success);
  font-weight: 800;
}

.tick-list.compact li {
  margin-bottom: 0.5rem;
}

.price-row {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-row small {
  display: block;
  color: var(--muted);
}

.price-row strong {
  font-size: 1.72rem;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1544b0;
  background: linear-gradient(180deg, #edf3ff, #dce9ff);
  border: 1px solid #c7dafc;
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  margin-bottom: 0.85rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.6rem, 2.8vw, 2.3rem);
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.section-heading h2 {
  font-size: clamp(1.64rem, 3.3vw, 2.86rem);
}

.card-grid,
.trust-items,
.faq-accordion,
.pricing-grid,
.mini-grid {
  display: grid;
  gap: 1rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 1.2rem;
}

.bento-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid #e9eff9;
  transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.08);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.bento-card:hover,
.bento-card:focus-within {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 38px 80px rgb(15 23 42 / 0.12);
  border-color: var(--primary);
}

.theory-main {
  grid-column: span 2;
}

.practical-main {
  grid-column: span 2;
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blue-glow {
  background: #e0e7ff;
  color: #4338ca;
  box-shadow: 0 0 20px rgb(99 102 241 / 0.22);
}

.green-glow {
  background: #dcfce7;
  color: #15803d;
  box-shadow: 0 0 20px rgb(34 197 94 / 0.22);
}

.orange-glow {
  background: #ffedd5;
  color: #c2410c;
  box-shadow: 0 0 20px rgb(249 115 22 / 0.2);
}

.teal-glow {
  background: #d9f8f4;
  color: #0f766e;
  box-shadow: 0 0 20px rgb(20 184 166 / 0.22);
}

.sky-glow {
  background: #dbeafe;
  color: #1d4ed8;
  box-shadow: 0 0 20px rgb(59 130 246 / 0.22);
}

.badge-new {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.66rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.bento-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.bento-card p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.card-content .arrow-link {
  margin-top: auto;
}

.arrow-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.arrow-link::after {
  content: " →";
}

.mini-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 196px;
  background: linear-gradient(180deg, #f7fbff, #eef4ff);
  border-color: #d4e2f5;
}

.mini-card h3 {
  font-size: 1.2rem;
}

.mini-card .arrow-link {
  font-size: 1.02rem;
}

.info-card,
.price-card,
.panel,
.faq-item {
  padding: 1.42rem;
}

.info-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
  isolation: isolate;
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-10px) scale(1.01);
  border-color: #9bb8e8;
  box-shadow: 0 22px 45px rgb(15 23 42 / 0.14);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgb(37 99 235 / 0.06), transparent 45%);
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: -1;
}

.info-card:hover::before,
.info-card:focus-within::before {
  opacity: 1;
}

.info-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 0.95rem;
  background: linear-gradient(180deg, #f0f5ff, #e6f0ff);
  border: 1px solid #d1def2;
}

.info-card p,
.panel p,
.split-section p {
  color: var(--muted);
}

.info-card a {
  color: var(--primary);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.info-card a:hover,
.info-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-card a::after {
  content: "→";
  font-size: 0.92em;
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card p {
  margin-bottom: 1.25rem;
}

.resource-card__cta {
  margin-top: auto;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #c6d7f1;
  background: linear-gradient(180deg, #f9fbff, #edf4ff);
  color: #133c92;
  padding: 0.42rem 0.74rem;
}

.resource-card__cta:hover,
.resource-card__cta:focus-visible {
  border-color: #9db8e6;
  background: linear-gradient(180deg, #f2f7ff, #e6efff);
  text-decoration: none;
}

.resource-section-action {
  margin: 1.3rem 0 0;
  text-align: center;
}

.trust-items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.highlight-panel {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.price-card .price {
  margin: 0.34rem 0 0.8rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.price-card .btn {
  margin-top: auto;
}

.featured-price {
  border-color: #a6c2f2;
  background: linear-gradient(180deg, #f3f8ff, #ffffff);
}

#pass-pack.section-alt {
  background: linear-gradient(140deg, #0f172a 0%, #1e293b 100%);
  border-radius: 34px;
  margin-inline: min(2vw, 18px);
  border: 1px solid rgb(51 65 85 / 0.45);
}

#pass-pack .section-heading h2,
#pass-pack .section-heading p {
  color: #f8fafc;
}

#pass-pack .section-heading .eyebrow {
  color: #c7d2fe;
  border-color: rgb(129 140 248 / 0.5);
  background: rgb(99 102 241 / 0.2);
}

#pass-pack .price-card {
  background: #1e293b;
  border-color: #334155;
}

#pass-pack .price-card h3,
#pass-pack .price-card .price {
  color: #fff;
}

#pass-pack .price-card .price-desc,
#pass-pack .price-card li {
  color: #cbd5e1;
}

#pass-pack .featured-price {
  border-color: #6366f1;
  box-shadow: 0 20px 40px rgb(99 102 241 / 0.24);
}

#pass-pack .featured-price .pill {
  color: #fff;
  border-color: #818cf8;
  background: linear-gradient(180deg, #6366f1, #4f46e5);
}

.dark-band {
  color: #fff;
  background: linear-gradient(130deg, #09101f 10%, #0f1d37 50%, #12284e 100%);
}

.dark-band-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.dark-cards {
  display: grid;
  gap: 0.9rem;
}

.dark-cards article {
  border-radius: 16px;
  border: 1px solid rgb(179 201 238 / 0.34);
  background: rgb(255 255 255 / 0.08);
  padding: 1.2rem;
}

.dark-card-primary {
  border-color: rgb(121 162 245 / 0.74) !important;
  background: rgb(37 99 235 / 0.2) !important;
}

.form-section {
  grid-template-columns: 0.96fr 1.04fr;
  align-items: start;
}

.passpack-reassure {
  margin-top: 0.45rem !important;
  font-weight: 700;
}

.benefits-lite-wrap {
  padding-top: 0.5rem;
}

.support-ladder {
  padding-bottom: 0.9rem;
}

.benefits-lite {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.benefit-item {
  background: linear-gradient(180deg, rgb(255 255 255 / 0.78), rgb(244 249 255 / 0.78));
  border: 1px solid #dbe6f7;
  border-radius: 16px;
  padding: 0.92rem 1rem;
  position: relative;
  isolation: isolate;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(155deg, rgb(37 99 235 / 0.05), transparent 56%);
  pointer-events: none;
}

.benefit-item__marker {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.58rem;
  font-size: 1rem;
  background: linear-gradient(180deg, #edf4ff, #e1edff);
  border: 1px solid #cddcf5;
}

.benefit-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.lessons-copy .section-heading {
  margin-bottom: 1.4rem;
}

.lessons-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 1.1rem;
}

.lessons-icons span {
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  border: 1px solid #cedcf1;
  background: #f5f9ff;
  font-weight: 700;
  font-size: 0.84rem;
  color: #1e355d;
}

.lessons-panel {
  border-color: #abc3e9;
  background: linear-gradient(180deg, #f7fbff, #eaf2ff);
  box-shadow: 0 24px 50px rgb(15 23 42 / 0.13);
}

.inline-trust {
  margin-top: 1.1rem;
}

.lead-form {
  padding: 1.45rem;
  border-color: #b8cbeb;
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.form-feedback {
  margin: 0 0 0.8rem;
  color: #1d4ed8;
  font-size: 0.88rem;
  font-weight: 700;
}

.helper-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn.is-submitting {
  opacity: 0.75;
  pointer-events: none;
}

.track-pdf-download::before {
  content: "↓ ";
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.05rem;
}

.form-row.single {
  grid-template-columns: 1fr;
}

label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  color: #17263f;
}

input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 12px;
  border: 1px solid #cad8ec;
  padding: 0.9rem 0.96rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:not([type="radio"]):not([type="checkbox"]),
select {
  min-height: 48px;
}

textarea {
  resize: vertical;
}

input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #95b7f3;
  box-shadow: 0 0 0 3px rgb(37 99 235 / 0.16);
}

input:not([type="radio"]):not([type="checkbox"]):user-invalid,
select:user-invalid,
textarea:user-invalid,
input:not([type="radio"]):not([type="checkbox"]):required:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgb(239 68 68 / 0.14);
}

input:not([type="radio"]):not([type="checkbox"]):user-valid,
select:user-valid,
textarea:user-valid {
  border-color: #22c55e;
}

.faq-accordion {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--primary);
  background: #f8faff;
  transform: scale(1.01);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
  font-weight: 800;
  font-family: "Sora", "Manrope", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: #1a4dc7;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  padding: 0 1.2rem 1.15rem;
}

.mock-hero h1 {
  max-width: 16ch;
}

.mock-hero .split-section {
  align-items: start;
}

.mock-hero .highlight-panel {
  justify-self: end;
  width: min(100%, 520px);
}

.mock-hero .panel-feature-image {
  max-height: 260px;
  object-position: center;
}

.trust-items--mock {
  max-width: 1100px;
  margin-inline: auto;
}

.quiz-form {
  margin-top: 1.15rem;
}

.quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.question-card {
  margin: 0;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid #d6e2f4;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 9px 22px rgb(15 23 42 / 0.06);
  min-inline-size: 0;
}

.question-card legend {
  float: left;
  width: 100%;
  display: block;
  margin: 0 0 0.85rem;
  padding: 0;
  font-weight: 800;
  line-height: 1.35;
  color: #11223f;
}

.question-card > *:not(legend) {
  clear: both;
}

.question-card label {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  border: 1px solid #d9e4f6;
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem 0.68rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #20334f;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.question-card label:last-child {
  margin-bottom: 0;
}

.question-card label:hover {
  border-color: #b7ccec;
  background: #f8fbff;
}

.question-card input[type="radio"] {
  margin-top: 0.16rem;
  accent-color: #2563eb;
  width: 1rem;
  height: 1rem;
}

.question-card.is-correct {
  border-color: rgb(34 197 94 / 0.5);
  box-shadow: 0 0 0 2px rgb(34 197 94 / 0.14), 0 9px 22px rgb(15 23 42 / 0.06);
}

.question-card.is-incorrect {
  border-color: rgb(239 68 68 / 0.45);
  box-shadow: 0 0 0 2px rgb(239 68 68 / 0.12), 0 9px 22px rgb(15 23 42 / 0.06);
}

.quiz-submit-wrap {
  max-width: 860px;
}

.quiz-submit-panel h2 {
  margin: 0 0 0.45rem;
  font-family: "Sora", "Manrope", sans-serif;
}

.quiz-validation {
  margin: 0.7rem 0 0;
  min-height: 1.2em;
  font-weight: 700;
  color: #1f3c74;
}

.result-section.is-hidden {
  display: none;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.result-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.result-score {
  margin: 0;
}

.result-score strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.05rem, 4vw, 3rem);
  line-height: 1;
}

.result-status {
  margin: 0.72rem 0 0;
  font-weight: 700;
}

.result-status.is-pass {
  color: #0f9f4f;
}

.result-status.is-progress,
.result-status.is-work {
  color: #b45309;
}

.result-status.is-not-ready {
  color: #b91c1c;
}

.result-list {
  margin: 0;
  padding-left: 1.1rem;
}

.result-list li {
  margin-bottom: 0.42rem;
  color: #233a5f;
}

.btn-submit {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  box-shadow: 0 10px 20px rgb(0 82 204 / 0.2);
}

.btn-submit::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgb(255 255 255 / 0.3);
  transform: rotate(30deg);
  transition: all 0.6s;
}

.btn-submit:hover::after {
  left: 120%;
}

.site-footer {
  padding: 3.8rem 0;
  color: #dbe7ff;
  background: #091121;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1120px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(145 178 244 / 0.7), transparent);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin: 0 0 0.7rem;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.site-footer p,
.site-footer small,
.site-footer li {
  color: #b9cae8;
}

.footer-brand {
  transform: scale(1.04);
  transform-origin: left center;
  margin-bottom: 0.45rem;
}

.site-footer .brand-mark {
  background: transparent url("assets/img/passfaster-logo-footer.png") center / contain no-repeat;
  border-radius: 0;
  box-shadow: none;
}

.site-footer li {
  line-height: 1.45;
  margin-bottom: 0.45rem;
  padding-left: 0;
}

.footer-grid ul {
  margin-top: 0.6rem;
}

.site-footer a {
  color: #dbe7ff;
  text-decoration: underline;
  text-decoration-color: rgb(159 185 230 / 0.35);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

main p a:not(.btn),
main li a:not(.btn):not(.arrow-link):not(.resource-card__cta) {
  color: #1142a8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

main p a:not(.btn):hover,
main li a:not(.btn):not(.arrow-link):not(.resource-card__cta):hover,
main p a:not(.btn):focus-visible,
main li a:not(.btn):not(.arrow-link):not(.resource-card__cta):focus-visible {
  color: #003d99;
  text-decoration-thickness: 2px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f8fbff;
  text-decoration-color: rgb(248 251 255 / 0.9);
}

.site-footer a:focus-visible {
  outline: 3px solid rgb(169 191 232 / 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-trust span {
  border: 1px solid rgb(151 177 221 / 0.4);
  background: rgb(122 161 230 / 0.12);
  color: #d3e1fb;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
}

.footer-meta {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(151 177 221 / 0.26);
}

.footer-meta p {
  margin: 0;
  font-size: 0.82rem;
  color: #9eb3d8;
}

.lead-popup-open {
  overflow: hidden;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lead-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.lead-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgb(9 17 33 / 0.56);
}

.lead-popup__card {
  position: relative;
  width: min(92vw, 560px);
  max-height: min(86vh, 760px);
  overflow: auto;
  margin: min(10vh, 6rem) auto 0;
  padding: 1.4rem;
  border: 1px solid rgb(184 199 221 / 0.6);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.lead-popup__close {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  width: 36px;
  height: 36px;
  border: 1px solid #c9d8ef;
  border-radius: 999px;
  background: #fff;
  color: #14356e;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup__close:hover,
.lead-popup__close:focus-visible {
  border-color: #8fb0df;
}

.lead-popup__card h2 {
  margin: 0.2rem 0 0.55rem;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.16;
}

.lead-popup__card p {
  margin: 0;
}

.download-proof-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 125;
  width: min(92vw, 340px);
  border: 1px solid rgb(59 130 246 / 0.78);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgb(2 78 200 / 0.4);
  background: linear-gradient(145deg, #0a5ae1 0%, #0c74ff 58%, #1a9dff 100%);
  padding: 0.8rem 0.9rem 0.85rem;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.download-proof-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.download-proof-toast__close {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  width: 28px;
  height: 28px;
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.download-proof-toast__kicker {
  margin: 0;
  color: #dbeeff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.download-proof-toast__text {
  margin: 0.45rem 1.8rem 0.5rem 0;
  color: #fff;
  line-height: 1.35;
  font-size: 0.96rem;
}

.download-proof-toast__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 800;
  color: #0b3d9a;
  background: #fff;
  border: 1px solid rgb(255 255 255 / 0.92);
  border-radius: 999px;
  text-decoration: none;
  padding: 0.42rem 0.72rem;
  box-shadow: 0 8px 18px rgb(9 23 52 / 0.28);
}

.download-proof-toast__link::after {
  content: "→";
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .nav-wrap {
    min-height: 62px;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.62rem);
    left: 0;
    right: 0;
    margin-left: 0;
    display: grid;
    gap: 0.88rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgb(182 199 222 / 0.68);
    background: rgb(248 252 255 / 0.95);
    backdrop-filter: blur(14px) saturate(130%);
    box-shadow: 0 18px 36px rgb(15 23 42 / 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-header.menu-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.6rem;
    justify-content: stretch;
  }

  .nav-links a {
    padding: 0.52rem 0.55rem;
    border-radius: 10px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #eef4ff;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-grid,
  .split-section,
  .form-section,
  .dark-band-grid,
  .footer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .quiz-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .four-up,
  .five-up,
  .three-up,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theory-main,
  .practical-main {
    grid-column: span 1;
  }

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

  .mock-hero .highlight-panel {
    justify-self: stretch;
    width: 100%;
  }

  .trust-items--mock {
    max-width: none;
  }

  .hero-image-wrap {
    width: min(100%, 560px);
  }

  .benefits-lite {
    grid-template-columns: 1fr;
  }

  .download-proof-toast {
    right: 0.7rem;
    left: 0.7rem;
    bottom: 0.7rem;
    width: auto;
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    padding: 0;
  }

  .announcement-bar__inner {
    min-height: 0;
    gap: 0.4rem;
    padding: 0.54rem 0;
  }

  .announcement-bar__text {
    max-width: 40ch;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .nav-wrap {
    min-height: 58px;
    padding: 0.5rem 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 112px;
    height: 44px;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .nav-panel {
    padding: 0.9rem;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .hero-trust,
  .four-up,
  .five-up,
  .three-up,
  .trust-items,
  .mini-grid,
  .form-row,
  .trust-proof-list {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card {
    padding: 1.4rem;
    border-radius: 22px;
    min-height: 0;
  }

  .bento-card h3 {
    font-size: 1.3rem;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .floating-card {
    font-size: 0.76rem;
    padding: 0.4rem 0.55rem;
  }

  .theory-card {
    left: 0.5rem;
  }

  .practical-card {
    right: 0.5rem;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 3.35rem 0;
  }

  .question-card {
    padding: 1rem;
  }

}
