/* Barnes and Press — B&N Press–inspired blue theme */

:root {
  --bn-blue: #3b6fb6;
  --bn-blue-dark: #2d5690;
  --orange: #3b6fb6;
  --orange-dark: #2d5690;
  --orange-light: #e8f0fa;
  --navy: #0a1628;
  --navy-light: #12203a;
  --white: #fff;
  --cream: #f7f9fc;
  --g50: #f8fafb;
  --g100: #f0f2f5;
  --g200: #e2e6eb;
  --g400: #8b95a5;
  --g600: #5a6577;
  --g800: #2d3748;
  --green: #10b981;
  --gold: #c9a227;
  --red: #ef4444;
  --fd: "Libre Baskerville", Georgia, serif;
  --fb: "Outfit", system-ui, sans-serif;
  --r: 16px;
  --rl: 24px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  color: var(--g800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.container.narrow {
  max-width: 900px;
}

.block {
  display: block;
}

.center {
  text-align: center;
}

.center-block {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

@keyframes gradFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.65;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Header (compact sticky: logo left, nav / menu right) —— */
.site-header-bn {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--g200);
}

.site-header-compact .header-bar {
  border-bottom: 1px solid var(--g200);
}

.header-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  min-height: 52px;
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-link:hover {
  opacity: 0.88;
  text-decoration: none;
}

.site-header-compact .header-logo-img {
  width: min(340px, 44vw);
  height: auto;
  display: block;
}

.header-nav-inline {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2px 8px;
}

.header-nav-left {
  justify-content: flex-start;
  min-width: 0;
}

.header-logo-center {
  justify-self: center;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.header-actions .btn {
  white-space: nowrap;
}

.header-nav-inline a {
  color: var(--g800);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.header-nav-inline a:hover {
  color: var(--bn-blue);
  background: var(--orange-light);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-right: -8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--g800);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 1rem 20px;
  background: var(--g50);
  border-top: 1px solid var(--g200);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 10px 0;
  font-weight: 600;
  color: var(--g800);
}

.mobile-nav .btn {
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .header-nav-inline {
    display: flex;
    justify-content: flex-start;
  }

  .site-header-bn .nav-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-grid {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .header-nav-inline {
    display: none;
  }

  .header-actions .header-chat {
    display: none;
  }

  .header-actions .header-cta {
    display: none;
  }
}

/* Legacy header classes (footer logo, etc.) */
.logo {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1rem;
  color: var(--g800);
}

.logo:hover {
  color: var(--bn-blue);
  text-decoration: none;
}

/* —— Home: image hero + CTA strip + intro (B&N Press style) —— */
.hero-banner {
  margin: 0;
  padding: 0;
  line-height: normal;
  background: var(--bn-blue);
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-banner__media {
  position: relative;
  min-height: 220px;
  line-height: 0;
}

.hero-banner__img {
  width: 100%;
  height: auto;
  min-height: 220px;
  max-height: 52vh;
  object-fit: cover;
  display: block;
}

.hero-banner__form-shell {
  line-height: normal;
  position: relative;
  z-index: 2;
  padding: 20px 0 24px;
}

.hero-banner__container {
  display: flex;
  justify-content: center;
}

.hero-banner__form-wrap {
  line-height: normal;
  width: 100%;
  max-width: 300px;
  margin: 0;
}

.hero-banner-form.lead-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 14px 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 40px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
  backdrop-filter: blur(22px) saturate(165%);
}

.hero-banner-form__eyebrow {
  margin: 0;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g500);
}

.hero-banner-form__title {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(1rem, 1.85vw, 1.2rem);
  font-weight: 700;
  color: var(--g800);
  line-height: 1.2;
}

.hero-banner-form.lead-form label {
  font-size: 10px;
}

.hero-banner-form.lead-form input,
.hero-banner-form.lead-form select,
.hero-banner-form.lead-form textarea {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 9px;
}

.hero-banner-form.lead-form textarea {
  min-height: 3.75rem;
  max-height: 8rem;
  resize: vertical;
}

.hero-banner-form.lead-form .btn-block,
.hero-banner-form.lead-form .hero-banner-form__submit {
  margin-top: 2px;
  padding: 10px 14px;
  font-size: 13px;
}

@media (min-width: 960px) {
  /* Tall enough for overlay form + header offset (absolute img doesn't set height) */
  .hero-banner__media {
    min-height: clamp(580px, 76vh, 860px);
  }

  .hero-banner__media .hero-banner__img {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: 40% center;
    overflow: hidden;
  }

  .hero-banner__form-shell {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4.75rem, 10vh, 6rem) 0 clamp(2rem, 4vh, 3rem);
    box-sizing: border-box;
    pointer-events: none;
  }

  .hero-banner__container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    padding-right: max(1.5rem, calc(var(--rl) + env(safe-area-inset-right, 0px)));
    padding-left: 0;
  }

  .hero-banner__form-wrap {
    pointer-events: auto;
    width: min(272px, 100%);
    max-width: 272px;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }

  .hero-banner-form.lead-form {
    background: rgba(255, 255, 255, 0.78);
  }
}

.hero-cta-strip {
  background: var(--bn-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0px 0;
  margin-top: 30px;
}

.hero-cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-cta-strip__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
  }

  .hero-cta-strip__copy {
    flex: 1;
    min-width: 200px;
  }

  .hero-cta-strip__action {
    flex-shrink: 0;
  }
}

.hero-cta-strip__visual {
  flex-shrink: 0;
}

.hero-cta-strip__badge {
  display: block;
  width: 100%;
  max-width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.hero-cta-strip__title {
  margin: 0 0 6px;
  font-family: var(--fd);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.hero-cta-strip__sub {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
}

.btn-cta-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.btn-cta-strip::after {
  display: none;
}

.btn-cta-strip:hover {
  background: var(--white);
  color: var(--bn-blue);
  text-decoration: none;
}

/* Lead form modal */
.lead-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: none;
  border-radius: var(--rl, 12px);
  padding: 0;
  max-width: calc(100vw - 24px);
  width: 480px;
  max-height: calc(100vh - 24px);
  overflow: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  background: transparent;
}

@media (max-width: 480px) {
  .lead-modal {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .lead-form {
    padding: 14px 16px 16px;
    gap: 10px;
  }

  .hero-card h2 {
    font-size: 19px;
    margin: 20px 16px 4px;
  }

  .hero-card .sub {
    margin: 0 16px 0;
  }

  .hf-urg {
    margin: 10px 16px 0;
  }
}

@media (max-height: 820px) {
  .lead-modal .hero-card h2 {
    font-size: 18px;
    margin: 18px 16px 4px;
  }

  .lead-modal .hero-card .sub {
    font-size: 13px;
  }

  .lead-modal .hf-urg {
    display: none;
  }

  .lead-modal .lead-form {
    padding: 14px 16px 16px;
    gap: 10px;
  }

  .lead-modal .lead-form label {
    font-size: 11px;
  }

  .lead-modal .lead-form input,
  .lead-modal .lead-form select,
  .lead-modal .lead-form textarea {
    padding: 10px 14px;
    border-radius: 10px;
  }

  .lead-modal .btn.btn-primary.btn-block {
    padding: 14px 18px;
  }

  .lead-modal .form-foot {
    display: none;
  }
}

@media (max-height: 720px) {
  .lead-modal {
    width: min(440px, calc(100vw - 16px));
  }

  .lead-modal .hero-card h2 {
    font-size: 17px;
  }
}

.lead-modal::backdrop {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--g600);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-modal__close:hover {
  background: var(--g100);
  color: var(--g800);
}

.lead-modal__card {
  margin: 0;
  max-width: none;
}

.lead-modal .hero-card-inner {
  padding-top: 36px;
}

.intro-bn {
  padding: 48px 0 40px;
  background: var(--white);
  text-align: center;
}

.intro-bn h1 {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: var(--g800);
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.intro-bn .intro-lead {
  font-size: 1.05rem;
  color: var(--g600);
  max-width: 34rem;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.intro-bn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-secondary-outline {
  background: var(--white);
  color: var(--bn-blue);
  border: 2px solid var(--bn-blue);
  box-shadow: none;
}

.btn-secondary-outline::after {
  display: none;
}

.btn-secondary-outline:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.lead-form-section {
  padding: 0 0 56px;
  background: var(--white);
}

.lead-form-section .hero-card {
  max-width: 480px;
  margin: 0 auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 60px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.3s, color 0.3s;
}

.btn svg {
  flex-shrink: 0;
}

.btn:hover {
  text-decoration: none;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #7ea8d9);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(59, 111, 182, 0.4);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease infinite;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(59, 111, 182, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--g200);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-glass {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.btn-glass:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(59, 111, 182, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 10% 90%, rgba(59, 111, 182, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(59, 111, 182, 0.06) 0%, transparent 50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ho1 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: rgba(59, 111, 182, 0.15);
  top: -100px;
  right: -100px;
  animation: glow 6s ease infinite;
}

.ho2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 111, 182, 0.08);
  bottom: -80px;
  left: -80px;
  animation: glow 8s ease 2s infinite;
}

.hero-gp {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: start;
}

.hero-copy {
  color: var(--white);
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-pre-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulse 3s ease infinite;
}

.hero-pre span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4.8vw, 3.65rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 16px;
}

.hero h1 .hl {
  background: linear-gradient(135deg, var(--orange), #b8d0ef);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.fast-track {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
}

.fast-track svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}

.lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 0 20px;
}

.lead-strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero-sp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-avs {
  display: flex;
}

.hero-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--navy);
  margin-left: -10px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.hero-av:first-child {
  margin-left: 0;
}

.hero-av-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), #7ea8d9);
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}

.hero-spt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.hero-spt strong {
  color: var(--white);
}

.hero-spt .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 2px;
}

/* —— Lead form card —— */
.hero-card {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  background: var(--white);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #b8d0ef, var(--orange));
  background-size: 200% 100%;
  animation: gradFlow 3s ease infinite;
  z-index: 2;
}

.hero-card-inner {
  padding: 0;
}

.hero-card h2 {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin: 28px 24px 4px;
}

.hero-card .sub {
  text-align: center;
  color: var(--g600);
  font-size: 14px;
  margin: 0 24px 0;
}

.hf-urg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 24px 0;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
}

.hf-urg svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.lead-form {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req {
  color: var(--orange-dark);
}

.field-row {
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--g200);
  border-radius: 12px;
  font-family: var(--fb);
  font-size: 14px;
  background: var(--g50);
  color: var(--g800);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(59, 111, 182, 0.12);
}

.form-foot {
  text-align: center;
  font-size: 12px;
  color: var(--g400);
  margin: 0 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* —— Trust strip —— */
.trust-strip {
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  padding: 20px 0;
  position: relative;
  z-index: 5;
}

.trust-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: trustScroll 22s linear infinite;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.trust-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-light);
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--orange);
  font-weight: 800;
}

.trust-tx {
  font-size: 13px;
  color: var(--g600);
  line-height: 1.3;
}

.trust-tx strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  font-weight: 800;
}

/* —— Sections —— */
.section {
  padding: 80px 0;
  position: relative;
}

.section-kicker {
  display: table;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(59, 111, 182, 0.15);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin: 0 auto 25px;
}

.section-title {
  font-family: var(--fd);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 14px;
}

.section-intro {
  font-size: 17px;
  color: var(--g600);
  max-width: 580px;
  margin: 0 0 48px;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hiw {
  background: var(--cream);
  overflow: hidden;
}

.hiw::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 111, 182, 0.06), transparent 70%);
  pointer-events: none;
}

.hiw .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hiw .section-kicker,
.hiw .section-title {
  text-align: center;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.steps-wrap {
  position: relative;
}

.steps-line {
  display: none;
  position: absolute;
  top: 56px;
  left: 16.5%;
  right: 16.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(59, 111, 182, 0.2), var(--orange));
  border-radius: 2px;
  z-index: 0;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.steps li {
  text-align: center;
  padding: 0 12px;
}

.step-nw {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(59, 111, 182, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.step-nw::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 111, 182, 0.25);
  animation: spin 20s linear infinite;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #7ea8d9);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(59, 111, 182, 0.3);
}

.steps h3 {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.steps p {
  color: var(--g600);
  font-size: 15px;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* —— Why us (dark) —— */
.section-why {
  background: var(--navy);
  overflow: hidden;
}

.section-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(59, 111, 182, 0.08), transparent 60%);
  pointer-events: none;
}

.section-why .container {
  position: relative;
  z-index: 1;
}

.section-why .section-kicker {
  background: rgba(59, 111, 182, 0.12);
  border-color: rgba(59, 111, 182, 0.2);
  color: #b8d0ef;
}

.section-why .section-title {
  color: var(--white);
  text-align: center;
}

.section-why .section-intro {
  color: rgba(255, 255, 255, 0.55);
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 111, 182, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(59, 111, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* —— Case studies —— */
.section-white {
  background: var(--white);
}

.case-grid {
  display: grid;
  gap: 24px;
}

.case-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 28px;
  border: 1px solid var(--g200);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s, box-shadow 0.4s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.case-tag--violet {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.case-tag--rose {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.case-headline {
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}

.case-card blockquote {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--g800);
}

.case-card > p {
  font-size: 14px;
  color: var(--g600);
  margin: 0 0 18px;
  line-height: 1.65;
}

.case-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.case-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.case-card:last-child .case-initial {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.case-author strong {
  display: block;
  color: var(--navy);
}

.case-author span {
  font-size: 13px;
  color: var(--g400);
}

.case-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.case-stats li {
  background: var(--g50);
  padding: 12px 6px;
  border-radius: var(--r);
  border: 1px solid var(--g100);
}

.case-stats strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
}

.case-stats span {
  font-size: 10px;
  color: var(--g400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* —— Fit section —— */
.section-fit {
  background: var(--navy);
  overflow: hidden;
}

.section-fit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(16, 185, 129, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(239, 68, 68, 0.04), transparent 60%);
  pointer-events: none;
}

.section-fit .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-fit .section-kicker {
  background: rgba(59, 111, 182, 0.12);
  border-color: rgba(59, 111, 182, 0.2);
  color: #b8d0ef;
  display: inline-flex;
}

.section-fit .section-title {
  color: var(--white);
  text-align: center;
}

.section-fit .section-intro {
  color: rgba(255, 255, 255, 0.55);
}

.fit2-grid {
  display: grid;
  gap: 24px;
  text-align: left;
}

.fit2-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 28px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.fit2-card:hover {
  transform: translateY(-6px);
}

.fit2-yes:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 24px 60px rgba(16, 185, 129, 0.08);
}

.fit2-no:hover {
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 24px 60px rgba(239, 68, 68, 0.05);
}

.fit2-glow-yes {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
  pointer-events: none;
}

.fit2-glow-no {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1), transparent 70%);
  pointer-events: none;
}

.fit2-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fit2-icon-yes {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.fit2-icon-no {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.fit2-card h4 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.fit2-sub {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0 0 20px;
}

.fit2-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fit2-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.55;
}

.fit2-bullet {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.fit2-bullet-yes {
  background: #10b981;
}

.fit2-bullet-no {
  background: #ef4444;
}

.fit2-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.fit2-item span {
  color: rgba(255, 255, 255, 0.5);
}

.fit2-no .fit2-item strong {
  color: rgba(255, 255, 255, 0.7);
}

.fit2-no .fit2-item span {
  color: rgba(255, 255, 255, 0.35);
}

/* —— Portfolio —— */
.section-port {
  position: relative;
  background: #6290ca;
  padding: 80px 0;
  overflow: visible;
}

.section-port::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 111, 182, 0.06), transparent 60%);
  pointer-events: none;
}

.section-port .container {
  position: relative;
  z-index: 1;
}

.section-port .section-kicker {
  background: rgba(59, 111, 182, 0.12);
  border-color: rgba(59, 111, 182, 0.2);
  color: #b8d0ef;
}

.section-port .section-title {
  color: var(--white);
}

.section-port .section-intro {
  color: rgba(255, 255, 255, 0.55);
  margin-left: auto;
  margin-right: auto;
}

.portfolio-slider-wrap {
  width: 100%;
  margin-top: 28px;
}

.section-port .portfolio-port-cta {
  margin-top: 40px;
}

.portfolio-slider {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.portfolio-slider__viewport {
  overflow: hidden;
  border-radius: 0;
}

.portfolio-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.portfolio-slider__slide {
  flex: 0 0 clamp(200px, 72vw, 280px);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

@media (min-width: 768px) {
  .portfolio-slider__slide {
    flex: 0 0 clamp(220px, 38vw, 260px);
  }
}

@media (min-width: 1024px) {
  .portfolio-slider__slide {
    flex: 0 0 240px;
  }
}

/* —— Book shelf rows (Bestsellers-style) —— */
.book-shelf {
  background: var(--white);
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--g200);
}

.book-shelf__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.book-shelf__title {
  margin: 0;
  font-family: var(--fd);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--g800);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.book-shelf__see-all {
  flex-shrink: 0;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--g800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.book-shelf__see-all:hover {
  color: var(--orange-dark);
}

.book-shelf__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.book-shelf__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.book-shelf__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.book-shelf__nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--g500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.book-shelf__nav:hover {
  background: var(--g50);
  color: var(--g800);
}

.book-shelf__nav:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.book-card {
  flex: 0 0 132px;
  width: 132px;
  text-align: center;
}

.book-card__cover {
  display: block;
  margin-bottom: 12px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.book-card__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.book-card__title {
  margin: 0 0 6px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--g800);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-card__title a {
  color: inherit;
  text-decoration: none;
}

.book-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.book-card__byline {
  margin: 0 0 8px;
  font-family: var(--fb);
  font-size: 12px;
  line-height: 1.3;
}

.book-card__byline a {
  color: var(--g500);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.book-card__byline a:hover {
  color: var(--g800);
}

.book-card__rating {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1px;
  font-size: 13px;
  line-height: 1;
}

.book-card__star {
  color: var(--g200);
}

.book-card__star--on {
  color: #e8b923;
}

@media (min-width: 480px) {
  .book-card {
    flex: 0 0 148px;
    width: 148px;
  }
}

@media (min-width: 768px) {
  .book-card {
    flex: 0 0 158px;
    width: 158px;
  }

  .book-shelf__track {
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .book-card {
    flex: 0 0 168px;
    width: 168px;
  }
}

/* —— Testimonials —— */
.section-muted {
  background: var(--g50);
}

.testimonial-grid {
  display: grid;
  gap: 24px;
}

.testimonial {
  margin: 0;
  padding: 32px;
  background: var(--white);
  border-radius: var(--rl);
  border: 1px solid var(--g200);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--fd);
  font-size: 80px;
  color: rgba(59, 111, 182, 0.08);
  line-height: 1;
  font-weight: 800;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.testimonial > p {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--g600);
  line-height: 1.7;
}

.testimonial footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.t-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.t-initial--violet {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.t-initial--rose {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.t-initial--teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.testimonial footer > div span {
  font-size: 13px;
  color: var(--g400);
}

.verified {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

/* —— Compare table —— */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--rl);
  border: 1px solid var(--g200);
  background: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}

.compare-table th {
  padding: 16px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--g200);
  background: var(--g50);
}

.compare-table th:first-child {
  background: var(--g50);
}

.compare-table th:nth-child(2) {
  background: var(--orange-light);
  color: var(--orange-dark);
  border-bottom-color: var(--orange);
}

.compare-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--g100);
  color: var(--g600);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  background: var(--g50);
}

.compare-table td:nth-child(2) {
  background: rgba(59, 111, 182, 0.03);
  color: var(--navy);
  font-weight: 600;
}

.compare-table tbody tr:hover td {
  background: rgba(59, 111, 182, 0.02);
}

.compare-table tbody tr:hover td:nth-child(2) {
  background: rgba(59, 111, 182, 0.06);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* —— Pricing —— */
.section-pricing {
  background: var(--navy);
  overflow: hidden;
}

.section-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 25% 20%, rgba(59, 111, 182, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 75% 80%, rgba(59, 111, 182, 0.04), transparent 60%);
  pointer-events: none;
}

.section-pricing .container {
  position: relative;
  z-index: 1;
}

.section-pricing .section-kicker {
  background: rgba(59, 111, 182, 0.12);
  border-color: rgba(59, 111, 182, 0.2);
  color: #b8d0ef;
}

.section-pricing .section-title {
  color: var(--white);
  text-align: center;
}

.section-pricing .section-intro {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 12px;
  padding: 10px 24px;
  border-radius: 60px;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, rgba(59, 111, 182, 0.15), rgba(59, 111, 182, 0.05));
  border: 1px solid rgba(59, 111, 182, 0.25);
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: #b8d0ef;
}

.pricing-lead {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin: 0 0 40px;
}

.pricing-grid {
  display: grid;
  gap: 24px;
}

.price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 36px 26px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s;
  display: flex;
  flex-direction: column;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 111, 182, 0.08), transparent 60%);
  transition: opacity 0.5s;
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 111, 182, 0.2);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card-popular {
  background: rgba(59, 111, 182, 0.06);
  border-color: rgba(59, 111, 182, 0.3);
  box-shadow: 0 0 60px rgba(59, 111, 182, 0.1);
  transform: scale(1.02);
}

.price-card-popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), #7ea8d9);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-card h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 12px 0 16px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 10px;
  text-align: center;
  margin: 0 0 8px;
}

.price .was {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.price .now {
  font-family: var(--fd);
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), #b8d0ef);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price .usd {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--fb);
  font-weight: 500;
}

.price-desc {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.price-card li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.card-tagline {
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 16px;
}

.card-foot {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 12px 0 0;
}

.chooser {
  margin-top: 48px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rl);
  text-align: center;
}

.chooser h3 {
  font-family: var(--fd);
  color: var(--white);
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.chooser > p {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 24px;
}

.chooser-grid {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-bottom: 24px;
}

.chooser-item {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
}

.chooser-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.chooser-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.chooser-item p {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.chooser-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* —— Guarantee —— */
.section-cream {
  background: var(--cream);
}

.guarantee-grid {
  display: grid;
  gap: 20px;
}

.guarantee-grid article {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--rl);
  border: 1px solid var(--g200);
}

.guarantee-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--fd);
}

.guarantee-grid p {
  margin: 0;
  font-size: 15px;
  color: var(--g600);
  line-height: 1.65;
}

/* —— FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 16px;
  padding: 0 4px 0 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(59, 111, 182, 0.2);
}

.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(59, 111, 182, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 20px;
  list-style: none;
  color: var(--navy);
  font-size: 16px;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--orange);
}

.faq-item[open] summary {
  color: var(--orange);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 20px 18px;
  padding-top: 0;
  color: var(--g600);
  font-size: 15px;
  line-height: 1.7;
}

/* —— Final CTA —— */
.section-fcta {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}

.section-fcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59, 111, 182, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(59, 111, 182, 0.05), transparent 50%);
  pointer-events: none;
}

.section-fcta .container {
  position: relative;
  z-index: 1;
}

.section-fcta h2 {
  font-family: var(--fd);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 16px;
}

.section-fcta .hl {
  background: linear-gradient(135deg, var(--orange), #b8d0ef);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-fcta > .container > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  margin: 0 0 32px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.cta-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-badges li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* —— Footer —— */
.site-footer {
  background: #060e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 24px;
  font-size: 14px;
  color: var(--g400);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-link:hover {
  opacity: 0.9;
  text-decoration: none;
}

.footer-logo-img {
  width: min(260px, 90vw);
  height: auto;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #e2e8f0;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* —— Dialog —— */
.toast {
  border: none;
  border-radius: var(--rl);
  padding: 24px;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  font-family: var(--fb);
}

.toast::backdrop {
  background: rgba(10, 22, 40, 0.5);
}

.toast p {
  margin: 0 0 16px;
  color: var(--g800);
}

/* —— Section header centering on colored bands —— */
.section-white .section-kicker,
.section-white .section-title,
.section-muted .section-kicker,
.section-muted .section-title,
.section-cream .section-kicker,
.section-cream .section-title {
  text-align: center;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section-white .section-intro.center,
.section-muted .section-intro.center,
.section-cream .section-intro.center {
  margin-bottom: 40px;
}
a.btn.btn-cta-strip {
  border: 1px solid white;
}
.section-pricing a.btn {
  font-size: 10px;
}

/* —— Responsive —— */
@media (max-width: 767px) {
  .price-card-popular {
    transform: none;
  }

  .price-card-popular:hover {
    transform: translateY(-10px);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .link-phone {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .steps-line {
    display: block;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .trust-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn-primary::after,
  .hero-card::before {
    animation: none;
  }

  .step-nw::before {
    animation: none;
  }
}

/* —— Legal pages (Privacy / Terms) —— */
.page-legal {
  background: var(--g50);
}

.legal-page {
  padding: 48px 0 80px;
}

.legal-page .container.narrow {
  max-width: 760px;
}

.legal-page h1 {
  font-family: var(--fd);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.2;
}

.legal-meta {
  font-size: 14px;
  color: var(--g600);
  margin: 0 0 32px;
}

.legal-page h2 {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--g800);
  line-height: 1.7;
}

.legal-page ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-dark);
}

.legal-back:hover {
  text-decoration: none;
  color: var(--orange);
}
