/* ==========================================================================
   Analyctally — Shared Stylesheet
   Brand palette: Navy #1E2761, Ice #CADCFC, Gold #D4AF6A
   Headings: Georgia/Cambria (serif) | Body: Calibri/Arial (sans)
   ========================================================================== */

:root {
  --navy: #1E2761;
  --navy-dark: #141b47;
  --ice: #CADCFC;
  --ice-light: #EEF4FE;
  --gold: #D4AF6A;
  --gold-dark: #b8935176;
  --white: #FFFFFF;
  --ink: #1B1E2B;
  --ink-soft: #4A4F63;
  --border: #E1E6F2;
  --success: #2E7D4F;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(30, 39, 97, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 39, 97, 0.14);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Calibri, Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Cambria, Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--navy); text-decoration: none; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--ice-light);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 106, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Calibri, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(212, 175, 106, 0.35);
}
.btn--gold:hover { box-shadow: 0 10px 26px rgba(212, 175, 106, 0.45); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

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

.btn--whatsapp {
  background: #25D366;
  color: #06371c;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Cambria, Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
}

.brand-mark {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(20, 27, 71, 0.18);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-brand .brand-logo {
  height: 32px;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); border-bottom-color: var(--gold); }

/* ---------- Products dropdown ---------- */
.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 1.04rem; color: var(--ink);
  padding: 6px 2px;
}
.dropdown-toggle .caret { font-size: 0.75rem; color: var(--ink-soft); transition: transform 0.15s; }
.has-dropdown.open .dropdown-toggle .caret,
.has-dropdown:hover .dropdown-toggle .caret { transform: rotate(180deg); }
/* Invisible bridge that fills the gap between the toggle and the menu so the
   mouse stays "inside" .has-dropdown the whole way down — without it, that
   gap is a dead zone where :hover drops and the menu snaps shut before the
   pointer ever reaches it. */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 260px;
  height: 20px;
  transform: translateX(-50%);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  border-bottom: none !important;
  font-weight: 700;
  color: var(--navy);
}
.dropdown-menu a small { font-weight: 500; color: var(--ink-soft); font-size: 0.78rem; }
.dropdown-menu a:hover { background: var(--ice-light); }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, #26327d 0%, var(--navy) 55%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dark);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); }
.hero p.lead { color: var(--ice); font-size: 1.12rem; max-width: 520px; }

.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 28px;
}

.hero-panel h3 { color: var(--white); margin-bottom: 16px; }
.hero-panel ul { list-style: none; margin: 0; padding: 0; }
.hero-panel li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ice);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
}
.hero-panel li:first-child { border-top: none; }
.check { color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ice-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
}

.product-card .card-icon { margin-bottom: 0; width: 56px; height: 56px; font-size: 1.7rem; }

/* ---------- How it works (step flow) ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 22px 14px;
  counter-reset: flowstep;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  width: 168px;
  text-align: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -18px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--gold-dark);
  border-right: 2px solid var(--gold-dark);
  transform: translateY(-50%) rotate(45deg);
}
.flow-step .flow-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.flow-step strong { display: block; font-size: 0.92rem; color: var(--navy); }

/* ---------- Trust / architecture strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.trust-col h4 { color: var(--white); margin-bottom: 10px; }
.trust-col p { color: var(--ice); margin: 0; font-size: 0.95rem; }
.trust-divider {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: Cambria, Georgia, serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .plus { color: var(--gold-dark); font-size: 1.3rem; transition: transform 0.2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 18px; margin: 0; }

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  font-family: Cambria, Georgia, serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price-tbd {
  color: var(--gold-dark);
  font-weight: 700;
}
.price-table td.price-final {
  color: var(--navy);
  font-weight: 700;
}
.price-table tbody tr:hover { background: var(--ice-light); }

.pricing-plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-plan.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-plan .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.pricing-plan .amount {
  font-family: Cambria, Georgia, serif;
  font-size: 2rem;
  color: var(--navy);
  margin: 14px 0 4px;
}
.pricing-plan .amount small { font-size: 0.9rem; color: var(--ink-soft); font-family: Calibri, Arial, sans-serif; }
.pricing-plan ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.pricing-plan li { padding: 8px 0; font-size: 0.93rem; display: flex; gap: 8px; }

/* ---------- Screenshot placeholder ---------- */
.shot-placeholder {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  background: var(--ice-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  gap: 8px;
  text-align: center;
  padding: 20px;
}
.shot-placeholder .icon { font-size: 2rem; }

/* ---------- On-brand illustrated visual (e.g. local-signing security diagram) ---------- */
.security-visual {
  aspect-ratio: 3/2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.security-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Full brand-lockup banner ---------- */
.brand-banner { padding-top: 8px; padding-bottom: 8px; }
.brand-banner .container { display: flex; justify-content: center; }
.brand-banner img { width: 100%; max-width: 560px; height: auto; }

/* ---------- Downloadable resource strip (e.g. setup guide PDF) ---------- */
.resource-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ice-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 8px 0 0;
}
.resource-strip .resource-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.resource-strip .resource-text { flex: 1 1 auto; min-width: 200px; }
.resource-strip .resource-text strong { display: block; color: var(--navy); font-size: 1.02rem; }
.resource-strip .resource-text span { color: var(--ink-soft); font-size: 0.92rem; }
.resource-strip .btn { flex-shrink: 0; }
@media (max-width: 560px) { .resource-strip { flex-wrap: wrap; } }

/* ---------- Real app screenshot, framed like a window ---------- */
.app-shot {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--white);
}
.app-shot .app-shot-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy) 75%);
}
.app-shot .app-shot-dots { display: flex; gap: 6px; flex-shrink: 0; }
.app-shot .app-shot-dots span {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}
.app-shot .app-shot-dots span:nth-child(1) { background: #ED6A5E; }
.app-shot .app-shot-dots span:nth-child(2) { background: #F4BF4F; }
.app-shot .app-shot-dots span:nth-child(3) { background: #61C454; }
.app-shot .app-shot-label {
  color: #EAF0FF;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: Calibri, Arial, sans-serif;
  letter-spacing: 0.2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.app-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Testimonial placeholder ---------- */
.testimonial-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  color: var(--ink-soft);
  background: var(--ice-light);
}

/* ---------- Who it's for chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: var(--ice-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 52px 44px;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--ice); max-width: 560px; margin: 0 auto 26px; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Contact / demo form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.contact-side .card { margin-bottom: 16px; }
.contact-side .card h4 { margin-bottom: 6px; }
.contact-side .card p { margin: 0; }

/* ---------- Contact page v2 (info card + map + form) ---------- */
.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-info-card, .contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ice-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-item h4 { margin: 0 0 4px; font-size: 1.2rem; }
.info-item p, .info-item a.info-link { margin: 0; color: var(--ink-soft); }
.info-item a.info-link { color: var(--navy); font-weight: 600; display: inline-block; }
.info-item a.info-link:hover { text-decoration: underline; }
.contact-map {
  margin-top: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { display: block; width: 100%; height: 230px; border: 0; }
.contact-wa-cta {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--ice-light);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-wa-cta span { font-weight: 700; color: var(--navy); }

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

.legal-links {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-links a { font-size: 0.92rem; color: var(--navy); font-weight: 600; }
.legal-links a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .contact-grid-v2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---------- Legal / policy pages ---------- */
.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  justify-content: center;
  margin-top: 16px;
}
.legal-strip a { color: var(--ice); font-size: 0.82rem; }
.legal-strip a:hover { color: var(--gold); }

.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; font-size: 1.35rem; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 0 0 14px; padding-left: 22px; color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); }
.legal-updated { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 36px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--ice);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--ice); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { color: var(--ice); font-size: 0.9rem; max-width: 280px; }

.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.social-row a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(202, 220, 252, 0.7);
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 200;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0 54px;
}
.page-hero h1 { color: var(--white); max-width: 720px; }
.page-hero p.lead { color: var(--ice); max-width: 620px; font-size: 1.05rem; }
.breadcrumb { color: var(--gold); font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; }

/* ---------- Breadcrumb trail (navigable, sits above page content) ---------- */
.breadcrumbs {
  background: var(--ice-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumbs span[aria-current="page"] { color: var(--navy); font-weight: 600; }
.breadcrumbs .crumb-sep { color: var(--border); margin: 0 2px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-list span {
  background: var(--ice-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; text-align: center; }
  .trust-divider { transform: rotate(90deg); }
  .product-card { grid-template-columns: 1fr; text-align: center; }
  .product-card .card-icon { margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn--outline-navy { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); width: auto; padding: 6px 0; }
}
