:root {
  --ivory: #faf8f4;
  --ivory2: #f3f0ea;
  --ivory3: #ede9e0;
  --white: #ffffff;
  --ink: #1a1a2e;
  --ink2: #2c2c45;
  --navy: #0e2148;
  --gold: #b8922a;
  --gold2: #d4a843;
  --gold-lt: #f5e6c0;
  --gold-bg: rgba(184, 146, 42, 0.08);
  --muted: #7a7888;
  --border: #e2ddd4;
  --border2: rgba(184, 146, 42, 0.25);
  --shadow: 0 2px 24px rgba(26, 26, 46, 0.07);
  --shadow-lg: 0 12px 56px rgba(26, 26, 46, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(184, 146, 42, 0.06), transparent),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(14, 33, 72, 0.05), transparent);
}

section,
nav,
footer {
  position: relative;
  z-index: 1;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 72px;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 32px rgba(26, 26, 46, 0.08);
}

.logo {
  font-family: "Libre Baskerville", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-ghost {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink2);
  background: none;
  border: 1.5px solid var(--border);
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

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

.btn-primary {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(14, 33, 72, 0.2);
}

.btn-primary:hover {
  background: var(--ink2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(14, 33, 72, 0.28);
}

.hero {
  padding: 100px 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(14, 33, 72, 0.24);
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--ink2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(14, 33, 72, 0.32);
}

.btn-hero-outline {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--ivory3), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: -8px;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-text strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-main {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.check-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.check-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.check-company {
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.check-company-sub {
  font-size: 0.68rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  margin-top: 2px;
}

.check-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.check-num-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.check-num {
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

.check-date-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.check-field-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.check-field-val {
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}

.check-payto-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 16px;
}

.check-payto-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.check-amount-pill {
  background: var(--gold-bg);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 8px 18px;
  text-align: center;
  min-width: 100px;
}

.check-amount-pill .alabel {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.check-amount-pill .aval {
  font-family: "DM Mono", monospace;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.check-words {
  font-family: "Libre Baskerville", serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.check-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.check-memo-val {
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  min-width: 150px;
}

.check-sig-val {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(26, 26, 46, 0.3);
}

.check-micr {
  margin-top: 18px;
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  color: var(--border);
  letter-spacing: 0.12em;
  padding-top: 12px;
  border-top: 1px solid var(--ivory3);
}

.stat-float {
  display: flex;
  gap: 12px;
}

.stat-chip {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ivory2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-chip-num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-chip-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
}

.logo-strip {
  padding: 40px 72px;
  background: var(--ivory2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-strip-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-strip-items {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ls-item {
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #c0bab0;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}

.ls-item:hover {
  color: var(--navy);
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.features {
  padding: 110px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all 0.3s;
  cursor: default;
}

.feat-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border2);
}

.feat-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.feat-title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.how {
  padding: 110px 72px;
  background: var(--ivory2);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Libre Baskerville", serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ivory3);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  transition: color 0.3s;
}

.step:hover .step-num {
  color: var(--gold);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.portal {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.portal-bar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pdot:nth-child(1){background:#ff6058;}
.pdot:nth-child(2){background:#ffbd2e;}
.pdot:nth-child(3){background:#28c840;}

.p-url {
  flex: 1;
  margin-left: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}

.portal-body2 {
  padding: 24px;
}

.portal-row2 {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portal-h {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.portal-new-btn {
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
}

.p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background 0.2s;
}

.p-row:hover {
  background: var(--white);
}

.p-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.p-date {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  margin-top: 2px;
}

.p-amt {
  font-family: "DM Mono", monospace;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.p-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.b-done {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.b-pend {
  background: rgba(184, 146, 42, 0.1);
  color: var(--gold);
}

.numbers-band {
  padding: 64px 72px;
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 48px;
}

.nb-item {
  text-align: center;
}

.nb-num {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.nb-num span {
  color: var(--gold2);
}

.nb-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.pricing {
  padding: 110px 72px;
  background: var(--ivory2);
  border-bottom: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-sub {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.price-card.featured .price-tier {
  color: var(--gold2);
}

.price-card.featured .price-num,
.price-card.featured .price-dollar,
.price-card.featured .price-period {
  color: var(--white);
}

.price-card.featured .price-desc {
  color: rgba(255,255,255,0.5);
}

.price-card.featured .price-divider {
  background: rgba(255,255,255,0.1);
}

.price-card.featured .price-features li {
  color: rgba(255,255,255,0.75);
}

.price-card.featured .price-features li::before {
  color: var(--gold2);
}

.pop-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.price-card.featured .pop-badge {
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.3);
  color: var(--gold2);
}

.price-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 4px;
}

.price-dollar {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: var(--muted);
  padding-bottom: 6px;
}

.price-num {
  font-family: "Libre Baskerville", serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-period {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 300;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.price-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.price-btn-outline {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--navy);
}

.price-btn-outline:hover {
  border-color: var(--navy);
  background: var(--ivory);
}

.price-btn-fill {
  background: var(--white);
  border: none;
  color: var(--navy);
}

.price-btn-fill:hover {
  background: var(--ivory2);
}

.testimonials {
  padding: 110px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.testimonials .section-title {
  margin-bottom: 48px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testi-marquee {
  position: relative;
  overflow: hidden;
}

.testi-marquee::before,
.testi-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.testi-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}

.testi-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255,255,255,0) 100%);
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: testimonial-marquee var(--testimonial-scroll-duration, 36s) linear infinite;
}

.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

.testi-sequence {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.testi-marquee .testi-card {
  flex: 0 0 var(--testimonial-card-width, 320px);
}

.testi-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.testi-quote {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ivory3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.testi-role {
  font-size: 0.74rem;
  color: var(--muted);
}

@keyframes testimonial-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--testimonial-scroll-distance, 0px)), 0, 0);
  }
}

.cta {
  padding: 110px 72px;
  background: var(--ivory2);
  text-align: center;
  background-image: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,146,42,0.05), transparent);
}

.cta h2 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.cta h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.cta p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 18px 44px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(14,33,72,0.22);
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(14,33,72,0.3);
}

.btn-cta-ghost {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 18px 44px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

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

footer {
  padding: 64px 72px;
  background: var(--navy);
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
}

.f-logo {
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.f-logo span {
  color: var(--gold2);
}

.f-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
}

.f-copy {
  margin-top: 24px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

.f-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 20px;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-col ul li a {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  transition: color 0.2s;
}

.f-col ul li a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  nav { padding: 20px 28px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px; }
  .hero p { max-width: 100%; }
  .features { padding: 80px 28px; }
  .features-header { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; padding: 80px 28px; }
  .numbers-band { grid-template-columns: repeat(2,1fr); padding: 48px 28px; }
  .pricing { padding: 80px 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 80px 28px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-marquee::before,
  .testi-marquee::after { width: 24px; }
  .cta { padding: 80px 28px; }
  footer { grid-template-columns: 1fr 1fr; padding: 48px 28px; gap: 40px; }
  .logo-strip { padding: 32px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .testi-track {
    animation: none;
  }
}
