/* ===========================
   DESIGN TOKENS
=========================== */
:root {
  --navy:       #1A3D7C;
  --navy-dark:  #122d5e;
  --blue:       #2E75B6;
  --light-blue: #EAF1FA;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-muted: #5A6270;
  --border:     #D9E4F0;
  --green:      #22C55E;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow:    0 4px 16px rgba(26,61,124,0.10);
  --shadow-lg: 0 12px 40px rgba(26,61,124,0.15);

  --container: 1200px;
  --nav-h:     72px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ===========================
   PRIVACY POLICY MODAL
=========================== */
.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.privacy-modal-overlay.is-open {
  display: flex;
}

.privacy-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.privacy-modal-header h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.privacy-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.privacy-modal-close:hover {
  background: var(--light-blue);
  color: var(--navy);
}

.privacy-modal-body {
  overflow-y: auto;
  padding: 28px;
  flex: 1;
}

/* Override Termly's inline font-family with our fonts */
.privacy-modal-body [data-custom-class='body'],
.privacy-modal-body [data-custom-class='body'] * {
  background: transparent !important;
}

.privacy-modal-body [data-custom-class='title'],
.privacy-modal-body [data-custom-class='title'] * {
  font-family: var(--font-head) !important;
  font-size: 26px !important;
  color: #000 !important;
}

.privacy-modal-body [data-custom-class='subtitle'],
.privacy-modal-body [data-custom-class='subtitle'] * {
  font-family: Arial !important;
  color: #595959 !important;
  font-size: 14px !important;
}

.privacy-modal-body [data-custom-class='heading_1'],
.privacy-modal-body [data-custom-class='heading_1'] * {
  font-family: var(--font-head) !important;
  font-size: 17px !important;
  color: #000 !important;
}

.privacy-modal-body [data-custom-class='heading_2'],
.privacy-modal-body [data-custom-class='heading_2'] * {
  font-family: var(--font-head) !important;
  font-size: 15px !important;
  color: #000 !important;
}

.privacy-modal-body [data-custom-class='body_text'],
.privacy-modal-body [data-custom-class='body_text'] * {
  color: #595959 !important;
  font-size: 14px !important;
  font-family: Arial !important;
}

.privacy-modal-body [data-custom-class='link'],
.privacy-modal-body [data-custom-class='link'] * {
  color: #1A3D7C !important;
  font-size: 14px !important;
  font-family: Arial !important;
  word-break: break-word !important;
}

.privacy-modal-body h1 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.privacy-modal-body h2 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 8px;
}

.privacy-modal-body h3 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-modal-body ul {
  list-style: square;
  padding-left: 24px;
  margin-bottom: 12px;
}

.privacy-modal-body ul > li > ul {
  list-style: circle;
}

.privacy-modal-body p {
  margin-bottom: 8px;
}

.privacy-modal-body bdt {
  display: inline;
}

/* Hide the Termly logo block */
.privacy-modal-body > span:first-child {
  display: none !important;
}

@media (max-width: 600px) {
  .privacy-modal-body {
    padding: 20px 16px;
  }
  .privacy-modal-header {
    padding: 16px 20px;
  }
}

/* ===========================
   UTILITIES
=========================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section-header-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-subhead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 56px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--light-blue);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background: var(--light-blue);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-blue);
  transform: translateY(-1px);
}

.btn-large {
  font-size: 17px;
  padding: 14px 30px;
}

/* ===========================
   NAVIGATION
=========================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav-wrapper.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover {
  background: var(--light-blue);
  color: var(--navy);
}

.nav-cta { margin-left: 8px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ===========================
   HERO
=========================== */
.hero {
  padding-block: 88px 80px;
  background: linear-gradient(160deg, #f4f8ff 0%, #ffffff 60%);
  overflow: hidden;
}

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

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-blue);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subhead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.green-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero Dashboard */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-frame {
  width: 100%;
  max-width: 460px;
  background: #f0f4fa;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,61,124,0.08);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #e4ecf7;
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5d0e0;
}
.browser-dot:nth-child(1) { background: #fc8080; }
.browser-dot:nth-child(2) { background: #fbbf4a; }
.browser-dot:nth-child(3) { background: #50d17a; }

.browser-url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--text-muted);
  background: white;
  padding: 3px 12px;
  border-radius: 20px;
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
}

.dashboard-card {
  padding: 20px 22px 22px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dashboard-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.dashboard-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dashboard-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #16a34a;
  border-radius: 50%;
  display: block;
}

.sov-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 14px;
}

.sov-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.sov-score {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.sov-unit { font-size: 24px; }

.sov-change {
  font-size: 12px;
  color: #86efac;
  margin-top: 4px;
  font-weight: 600;
}

.engine-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.engine-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.engine-name {
  font-size: 11px;
  color: var(--text-muted);
  width: 80px;
  flex-shrink: 0;
  font-weight: 500;
}

.engine-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.engine-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-radius: 3px;
  transition: width 1s ease;
}

.engine-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  width: 30px;
  text-align: right;
}

.trend-block {
  background: white;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.trend-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.trend-svg {
  width: 100%;
  height: 60px;
}

/* ===========================
   CONTACT INFO BAR
=========================== */
.contact-info-bar {
  background: var(--navy);
  padding-block: 18px;
  text-align: center;
}
.contact-info-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.contact-info-text a {
  color: var(--light-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.contact-info-text a:hover {
  color: #fff;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: var(--navy);
  padding-block: 64px;
}

.stats-header {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--light-blue);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding-inline: 16px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-caption {
  font-size: 13px;
  color: var(--light-blue);
  line-height: 1.4;
  opacity: 0.85;
  max-width: 160px;
  margin-inline: auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ===========================
   SERVICES
=========================== */
.services { background: var(--white); }

.services .section-title,
.services .section-subhead { text-align: center; margin-inline: auto; }

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.service-core-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
}

.service-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--border);
}
.service-card--highlight .service-num {
  color: rgba(255,255,255,0.2);
}

.service-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card--highlight .service-name { color: var(--white); }

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-card--highlight .service-desc { color: rgba(255,255,255,0.75); }

.service-list li {
  font-size: 14px;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
}
.service-card--highlight .service-list li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}
.service-card--highlight .service-list li::before { color: #7fb3e8; }

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
  background: var(--light-blue);
}

.how-it-works .section-title { text-align: center; margin-bottom: 56px; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding-inline: 24px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: 16px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 52px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: rotate(45deg);
}

/* ===========================
   DIFFERENTIATORS
=========================== */
.differentiators { background: var(--white); }

.differentiators .section-title { margin-bottom: 40px; }

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.diff-item:first-child { border-top: 1px solid var(--border); }

.diff-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.diff-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.diff-content strong { color: var(--navy); }

/* ===========================
   WHO WE SERVE
=========================== */
.who-we-serve { background: var(--light-blue); }

.who-we-serve .section-subhead { margin-bottom: 40px; }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.serve-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.15s;
}
.serve-card:hover { box-shadow: var(--shadow-sm); }

.serve-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.serve-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.serve-info strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.serve-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.serve-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 500;
}
.serve-other-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}
.serve-other-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   AI ENGINES
=========================== */
.ai-engines { background: var(--white); }

.ai-engines .section-title { margin-bottom: 40px; text-align: center; }

.engines-tiers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.tier-block {
  width: 100%;
  max-width: 760px;
}

.tier-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.engine-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.engine-logo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-blue);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.engine-logo-pill--muted {
  background: #f5f5f5;
  border-color: #e0e0e0;
  color: var(--text-muted);
  opacity: 0.7;
}

.engine-logo-icon {
  font-size: 18px;
}

/* ===========================
   PRICING
=========================== */
.pricing { background: var(--light-blue); }

.pricing .section-header-label,
.pricing .section-title,
.pricing .section-subhead { text-align: center; margin-inline: auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card--highlight:hover {
  transform: scale(1.03) translateY(-2px);
}

.pricing-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-card--highlight .pricing-tag { color: #7fb3e8; }

.pricing-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.pricing-card--highlight .pricing-name { color: var(--white); }

.pricing-original {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-card--highlight .pricing-original { color: rgba(255,255,255,0.45); }

.pricing-sale-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 7px;
  line-height: 1.7;
}

.payment-original-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.pricing-card--highlight .pricing-price { color: var(--white); }

.pricing-period {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-card--highlight .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.pricing-list li {
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}
.pricing-card--highlight .pricing-list li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}
.pricing-card--highlight .pricing-list li::before { color: #86efac; }

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* Payment Policy */
.payment-policy {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.policy-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.policy-item {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}
.policy-item strong { color: var(--navy); }

.policy-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-notes li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.policy-notes li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-weight: 700;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--white); }

.testimonials .section-header-label,
.testimonials .section-title,
.testimonials .section-subhead { text-align: center; margin-inline: auto; }

.placeholder-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.placeholder-card {
  background: var(--light-blue);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.placeholder-card--center {
  border-style: solid;
  border-color: var(--border);
  box-shadow: var(--shadow);
}

.placeholder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border);
  margin-bottom: 14px;
}

.placeholder-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.placeholder-line {
  height: 10px;
  background: var(--border);
  border-radius: 5px;
  width: 90%;
}
.placeholder-line--long { width: 100%; }
.placeholder-line--short { width: 55%; }

.placeholder-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.placeholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(234,241,250,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.testimonials-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===========================
   REVIEWS PAGE
=========================== */
.reviews-hero {
  background: var(--navy);
  padding-block: 72px 64px;
  text-align: center;
}

.reviews-hero .eyebrow-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.reviews-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.reviews-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.reviews-form-section {
  background: var(--light-blue);
  padding-block: 64px 80px;
}

.reviews-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 48px 52px;
  max-width: 640px;
  margin: 0 auto;
}

/* Star rating */
.star-rating-group {
  margin-bottom: 24px;
}

.star-rating-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.star-rating {
  display: flex;
  gap: 6px;
}

.star-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  color: #D1D5DB;
  transition: color 0.1s, transform 0.1s;
}

.star-btn:hover,
.star-btn.is-active {
  color: #F59E0B;
}

.star-btn:hover {
  transform: scale(1.1);
}

.star-rating-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Anonymous toggle */
.anon-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  user-select: none;
}

.anon-toggle-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.anon-toggle-row span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* Permission checkbox */
.permission-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.permission-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.permission-row label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.reviews-submit-btn {
  width: 100%;
  justify-content: center;
}

.reviews-thank-you {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
}

.reviews-thank-you.is-visible {
  display: flex;
}

.reviews-thank-you .thank-you-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.reviews-thank-you h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.reviews-thank-you p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

@media (max-width: 600px) {
  .reviews-form-card {
    padding: 32px 20px 36px;
  }
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--light-blue); }

.faq-container { max-width: 760px; }

.faq .section-title { margin-bottom: 40px; }

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  transition: background 0.15s, transform 0.25s;
  line-height: 1;
}

.faq-item--open .faq-icon {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item--open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 18px;
  padding-right: 40px;
}

/* ===========================
   COLLAPSIBLE SECTIONS
=========================== */
.collapsible-wrap {
  border-bottom: 1px solid var(--border);
}

.collapsible-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-blue);
  border: none;
  border-top: 1px solid var(--border);
  padding: 22px 32px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.collapsible-toggle:hover {
  background: #deeaf7;
}

.collapsible-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.collapsible-wrap--open .collapsible-icon {
  transform: rotate(45deg);
}

.collapsible-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.collapsible-wrap--open .collapsible-body {
  max-height: 4000px;
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta {
  background: var(--navy);
  padding-block: 96px;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
}

.final-cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-subhead {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.final-cta-phone {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.final-cta-phone a {
  color: #7fb3e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta-review-btn {
  margin-top: 28px;
  display: inline-block;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0e2552;
  padding-block: 72px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo .logo-mark {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.footer-logo .logo-text { color: var(--white); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 8px;
  max-width: 240px;
}

.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding-block: 20px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card--highlight {
    transform: none;
  }
  .pricing-card--highlight:hover {
    transform: translateY(-2px);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .stat-divider { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .browser-frame { max-width: 420px; }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step-connector {
    width: 2px;
    height: 32px;
    margin-top: 0;
  }
  .step-connector::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--border);
    border-left: 2px solid var(--border);
    transform: rotate(-45deg);
  }
  .placeholder-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding-block: 64px; }

  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.nav-links--open { display: flex; }
  .nav-links a {
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav-links li:last-child a { border-bottom: none; }

  .hero { padding-block: 56px 48px; }
  .hero-headline { font-size: 38px; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .section { padding-block: 52px; }
  .hero-headline { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .engine-logos { gap: 8px; }
  .engine-logo-pill { font-size: 13px; padding: 7px 14px; }
}

/* ===========================
   MINI-SCAN PAGE
=========================== */
.form-required {
  color: #e53e3e;
  margin-left: 2px;
}

.mini-scan-hero {
  background: var(--navy);
  padding-block: 80px 72px;
  text-align: center;
}

.mini-scan-hero .eyebrow-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.mini-scan-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.mini-scan-hero-subhead {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.scan-form-section {
  background: var(--light-blue);
  padding-block: 64px 80px;
}

.scan-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 48px 52px;
  max-width: 640px;
  margin: 0 auto;
}

.scan-form-card h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fafcff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,117,182,0.12);
  background: var(--white);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6270' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-optional-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  margin-top: 8px;
}

.form-thank-you {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
}

.form-thank-you.is-visible {
  display: flex;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.form-thank-you h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-thank-you p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
}

@media (max-width: 600px) {
  .scan-form-card {
    padding: 32px 20px 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===========================
   PAYMENT PAGE
=========================== */
.payment-hero {
  background: var(--navy);
  padding-block: 72px 64px;
  text-align: center;
}

.payment-hero .eyebrow-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.payment-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.payment-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.payment-plans-section {
  background: var(--light-blue);
  padding-block: 64px 80px;
}

.payment-plans-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.payment-plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.payment-plan-card:hover {
  box-shadow: var(--shadow-lg);
}

.payment-plan-card--highlight {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.payment-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 24px;
  border-bottom: 1.5px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.payment-plan-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-plan-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.payment-plan-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.payment-plan-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.payment-plan-body {
  padding: 24px 32px 28px;
}

.payment-btn-row {
  display: flex;
  gap: 14px;
}

.btn-pay-card {
  flex: 1;
  justify-content: center;
}

.btn-pay-etransfer {
  flex: 1;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-pay-etransfer:hover {
  background: var(--light-blue);
}

.btn-pay-etransfer.is-active {
  background: var(--navy);
  color: var(--white);
}

.etransfer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.etransfer-box.is-open {
  max-height: 300px;
}

.etransfer-box-inner {
  margin-top: 18px;
  background: var(--light-blue);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.etransfer-box-inner p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 6px;
}

.etransfer-box-inner p:last-child {
  margin-bottom: 0;
}

.etransfer-email {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}

.etransfer-memo {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  background: rgba(26,61,124,0.07);
  padding: 2px 6px;
  border-radius: 4px;
}

.payment-policy-note {
  max-width: 760px;
  margin: 36px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 20px 28px;
}

.payment-policy-note p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.payment-policy-note p + p {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .payment-plan-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 18px;
  }
  .payment-plan-body {
    padding: 18px 20px 22px;
  }
  .payment-btn-row {
    flex-direction: column;
  }
}
