:root {
  --navy: #071C3A;
  --navy-2: #0D2545;
  --blue: #1A5F8C;
  --gold: #C9A227;
  --gold-soft: #EFD27A;
  --white: #FFFFFF;
  --paper: #F8F9FB;
  --ink: #0F1D2E;
  --muted: #6B7A8D;
  --line: #E8ECF2;
  --radius: 16px;
  --shadow-sm: 0 2px 12px rgba(7, 28, 58, 0.05);
  --shadow: 0 8px 32px rgba(7, 28, 58, 0.08);
  --shadow-lg: 0 24px 64px rgba(7, 28, 58, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  color: #0F1D2E;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ─── NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: none;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 0.855rem;
  font-weight: 400;
  color: var(--muted);
  transition: all .15s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: var(--paper);
}

.site-nav .nav-login {
  border: none;
  background: transparent;
}

.site-nav .nav-cta,
.btn-primary,
.footer-button {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.855rem;
  font-weight: 600;
  transition: all .15s ease;
  box-shadow: 0 4px 12px rgba(7, 28, 58, 0.08);
  border: none;
}

.site-nav .nav-cta:hover,
.btn-primary:hover,
.footer-button:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(7, 28, 58, 0.15);
  background: var(--gold);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 40%, rgba(201, 162, 39, 0.07), transparent);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 72px;
  align-items: center;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #D9E8F8;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.eyebrow::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.eyebrow.light {
  background: #FFF8E2;
  color: #7C5A00;
  border: 1px solid #F4D77A;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--navy);
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 22px;
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}

h2 em {
  color: var(--gold-soft);
}

h3 {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 0.855rem;
  font-weight: 600;
  transition: all .2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(7, 28, 58, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.footer-button:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(7, 28, 58, 0.15);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 400;
  box-shadow: none;
}

.btn-secondary:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1.5px);
  box-shadow: none;
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  font-weight: 500;
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.hero-proof span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
}

/* hero mock card */
.product-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border: none;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--paper);
  margin-bottom: 14px;
  font-size: 0.75rem;
  color: var(--muted);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}

.dot.gold {
  background: #FCD34D;
}

.dot.r {
  background: #FCA5A5;
}

.dot.g {
  background: #86EFAC;
}

.mock-panel {
  margin-top: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.mock-panel h3 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.workflow-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px 0;
}

.workflow-box {
  border: 1.5px dashed var(--line);
  border-radius: 9px;
  padding: 14px 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  background: transparent;
}

.workflow-box i {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 3px;
  color: var(--blue);
}

.match-button {
  width: 100%;
  padding: 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 9px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.candidate {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid var(--line);
  margin-top: 0;
  margin-bottom: 7px;
  background: var(--white);
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #EEF4FA;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.72rem;
}

.candidate strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
}

.candidate small {
  font-size: 0.7rem;
  color: var(--muted);
}

.score {
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
}

.score.good {
  background: #DCFCE7;
  color: #15803D;
}

.score.medium {
  background: #FEF3C7;
  color: #92400E;
}

/* ─── CUSTOMER STRIP ─── */
.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--white);
}

.logo-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.77rem;
}

.logo-strip span {
  font-size: 0.77rem;
  font-weight: 400;
  color: var(--muted);
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.logo-strip .cust-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
  border: none;
  background: transparent;
  padding: 0;
}

/* ─── SECTIONS ─── */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  max-width: 620px;
  margin-bottom: 0;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── B2B VALUE PROPS & PROBLEM GRID & FEATURES ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.value-card .v-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
}

.value-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}

.feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-card:hover {
  border-color: rgba(26, 95, 140, 0.2);
  box-shadow: var(--shadow);
}

.feature-card strong {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PROBLEM CELL GRID (GRID STYLE IN PREVIEW) ─── */
.problem-grid.cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 44px;
}

.problem-grid.cells .prob-cell {
  background: var(--white);
  padding: 26px 22px;
}

.problem-grid.cells .prob-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #D1D9E4;
  margin-bottom: 14px;
}

.problem-grid.cells h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.problem-grid.cells p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── FEATURE CARD WIDE ─── */
.feature-card.wide {
  grid-column: span 2;
  background: var(--navy);
  border-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px 32px;
}

.feature-card.wide h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card.wide p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  line-height: 1.65;
}

.vault-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.vault-list li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.vault-list li::before {
  content: '—';
  color: var(--gold-soft);
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── HOW IT WORKS (STEPS) ─── */
.steps-wrap {
  margin-top: 52px;
  position: relative;
}

.steps-track {
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.step-card {
  padding: 0 14px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.step-card::before {
  display: none;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 18px;
  transition: all .2s ease;
}

.step-card.on .step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.step-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── TRUST BAND ─── */
.trust-band {
  background: var(--navy);
  border-radius: 20px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  border: none;
  box-shadow: none;
}

.trust-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.trust-band .sub {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 14px;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.58);
}

.check-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

.trust-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(239, 210, 122, 0.55);
  margin-bottom: 16px;
  display: block;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease;
  box-shadow: none;
}

.pricing-card:hover {
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(7, 28, 58, 0.2);
  transform: none;
}

.price-plan-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.pricing-card.featured .price-plan-tag {
  color: rgba(255, 255, 255, 0.35);
}

.price {
  margin: 0 0 3px 0;
  display: block;
}

.price strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 3.2rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: normal;
}

.pricing-card.featured .price strong {
  color: var(--gold-soft);
}

.price-per {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.pricing-card.featured .price-per {
  color: rgba(255, 255, 255, 0.35);
}

.price-hr {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.pricing-card.featured .price-hr {
  background: rgba(255, 255, 255, 0.08);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 7px;
}

.plan-list li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  gap: 8px;
}

.plan-list li::before {
  content: '•';
  color: var(--blue);
  font-weight: 900;
  line-height: 1.3;
}

.pricing-card.featured .plan-list li {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card.featured .plan-list li::before {
  color: var(--gold-soft);
}

.rec-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.8;
  margin-bottom: 14px;
  display: block;
}

.plan-cta {
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--line);
  color: var(--navy);
  transition: all .15s ease;
  cursor: pointer;
  background: var(--white);
  display: block;
  box-shadow: none;
}

.plan-cta:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pricing-card.featured .plan-cta {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
  font-weight: 600;
  box-shadow: none;
}

.pricing-card.featured .plan-cta:hover {
  background: var(--gold-soft);
  color: var(--navy);
}

/* ─── CTA ─── */
.cta-section {
  background: var(--paper);
  padding: 80px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 48px;
  background: var(--navy);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(7, 28, 58, 0.14);
}

.cta-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
  line-height: 1.7;
}

.cta-box .btn-primary {
  white-space: nowrap;
  padding: 13px 22px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #050F1E;
  color: rgba(255, 255, 255, 0.38);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  display: block;
}

.footer-brand .brand-text {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: 270px;
}

.site-footer h3 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 7px 0;
  transition: color .15s ease;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.75);
}



.footer-button {
  margin-top: 14px !important;
  display: inline-block;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--navy) !important;
  font-weight: 600;
}

.footer-button:hover {
  color: var(--navy) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.25);
  display: inline;
}

/* ─── RESPONSIVE ─── */
@media(max-width:980px) {

  .hero-layout,
  .trust-band,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: none;
  }

  .problem-grid,
  .feature-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card.wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav a {
    width: 100%;
  }
}

@media(max-width:580px) {

  .problem-grid,
  .feature-grid,
  .value-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 68px 0 56px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }
}


/* ==========================================================================
   TalentZora Dashboard & App Header Styles
   ========================================================================== */

.tz-app-body {
  background: var(--paper) !important;
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
}

.tz-app-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 24px;
}

.tz-app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.tz-app-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
}

.tz-app-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(7, 28, 58, 0.1);
}

.tz-app-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tz-app-nav a {
  padding: 10px 18px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tz-app-nav a:hover {
  background: #EEF4FA;
  color: var(--navy);
}

.tz-app-nav a.active {
  background: rgba(32, 106, 152, 0.1);
  color: var(--blue);
}

.tz-app-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tz-app-user span {
  font-weight: 650;
  color: var(--navy);
  font-size: 0.95rem;
}

.tz-app-user a {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 12px;
  background: var(--white);
  transition: all 0.2s ease;
}

.tz-app-user a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tz-app-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.tz-dashboard-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 28, 58, 0.08);
}

.tz-dashboard-hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  pointer-events: none;
}

.tz-dashboard-hero h1 {
  color: var(--white);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-top: 14px;
  margin-bottom: 12px;
}

.tz-dashboard-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0;
}

.tz-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tz-module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 34px rgba(7, 28, 58, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.tz-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(7, 28, 58, 0.12);
  border-color: var(--blue);
}

.tz-module-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(32, 106, 152, 0.08);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.tz-module-card:hover .tz-module-icon {
  background: var(--blue);
  color: var(--white);
}

.tz-module-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.tz-module-card:hover h2 {
  color: var(--navy-2);
}

.tz-module-card p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.tz-module-card span {
  font-weight: 750;
  color: var(--blue);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.tz-module-card:hover span {
  gap: 12px;
}

@media (max-width: 980px) {
  .tz-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tz-app-header-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .tz-app-nav {
    width: 100%;
    justify-content: center;
  }

  .tz-app-user {
    width: 100%;
    justify-content: center;
  }

  .tz-app-main {
    padding: 32px 16px;
  }

  .tz-dashboard-hero {
    padding: 32px;
  }
}

/* ==== Page Specific Styles (restored) ==== */
.cta-section {
  background: linear-gradient(135deg, var(--navy), #0E3B65);
  color: var(--white);
  padding: 70px 0;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  color: #D8E6F4;
}

.page-hero {
  padding: 76px 0 58px;
  background: linear-gradient(135deg, var(--navy), #0D3E69);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  color: #D8E6F4;
  max-width: 740px;
  font-size: 1.1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}



.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #D6DFEA;
  border-radius: 16px;
  font: inherit;
  color: var(--ink);
  background: #FFFFFF;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(32, 106, 152, 0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.alert {
  padding: 14px 16px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 700;
}

.alert.success {
  background: #DCFCE7;
  color: #166534;
}

.alert.error {
  background: #FEE2E2;
  color: #991B1B;
}

.login-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 32%), var(--paper);
}

.login-card {
  width: min(400px, 100%);
}

/* ==== Trust Section Styles ==== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 95, 140, 0.15);
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ==== Top-up Pack Styles ==== */
.topup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.topup-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.topup-card:hover {
  border-color: rgba(26, 95, 140, 0.15);
  box-shadow: var(--shadow);
}

.topup-card strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.topup-card small {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-block;
  margin-top: 4px;
}

/* ==== Global Badge Component ==== */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: #FFF8E2;
  color: #7C5A00;
  border: 1px solid #F4D77A;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.topup-card .badge {
  background: rgba(26, 95, 140, 0.08);
  color: var(--blue);
  border: 1px solid rgba(26, 95, 140, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
}

/* ==== Responsive Adjustments for Trust & Top-up Grids ==== */
@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .topup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 580px) {
  .topup-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==== Header Highlight Accent Color Overrides ==== */
h2 em {
  color: var(--blue);
}

.hero h1 em,
.trust-band h2 em {
  color: var(--gold-soft);
}

/* Hide Microsoft Edge native password reveal and clear buttons to prevent overlap with custom eye toggles */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/* Force Google Sign-In iframe to match the exact width of the parent container and input fields */
#google-button-container {
  width: 100%;
}

#google-button-container iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* ==== Heading Font Size Adjustments ==== */
h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.0rem);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

/* ==== Legal Card Layout and Typography ==== */
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.legal-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 1.95rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.legal-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.legal-card ul {
  margin-bottom: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-card li {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px 20px;
  }
}

/* ==== Legal Card Links ==== */
.legal-card a {
  color: var(--gold) !important;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-card a:hover {
  color: var(--blue) !important;
}
/* End of added styles */

/* ==== Remove Underline from App Header Links ==== */
.tz-app-header a {
  text-decoration: none !important;
}