:root {
  --primary: #1e3a8a;
  --secondary: #3b82f6;
  --ink: #0f172a;
  --muted: #475569;
  --line: #dbe4f0;
  --surface: #ffffff;
  --bg: #f9fafb;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.09);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #111827;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 55%, #eef4ff 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { overflow: hidden; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.7);
}

.nav-wrap, .footer-grid, .split-grid, .hero-grid, .card-grid, .trust-grid, .admin-grid, .admin-stats {
  display: grid;
  gap: 24px;
}

.nav-wrap {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
}

.header-logo {
  min-width: 210px;
}

.footer-logo {
  margin-bottom: 16px;
}

.logo-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  filter: drop-shadow(0 14px 24px rgba(30, 58, 138, 0.18));
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-lockup {
  display: grid;
  gap: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav a, .site-footer a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav a.active, .nav a:hover, .site-footer a:hover { color: var(--primary); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 14px 35px rgba(30, 58, 138, 0.25);
}
.button-secondary {
  background: #e7efff;
  color: var(--primary);
}
.button-tertiary {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero, .page-hero { padding: 88px 0 76px; }
.hero-grid, .split-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.hero-copy h1, .page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 12px 0 18px;
}

h2 { line-height: 1.1; }
h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 18px 0 10px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 680px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.dual-cta-actions {
  margin: 0;
  justify-content: flex-end;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.16);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
}
.trust-bar-section {
  padding-top: 24px;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(219, 228, 240, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.trust-bar strong {
  font-size: 1rem;
  color: var(--ink);
}
.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-bar-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: var(--primary);
  font-weight: 600;
}
.hero-visual img, .image-card img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 320px;
  object-fit: cover;
}

.hero-visual img {
  animation: heroFloat 8s ease-in-out infinite;
  transform-origin: center center;
}

.floating-panel, .info-card, .form-panel, .legal-card, .table-card, .cta-panel, .mini-card, .trust-card, .stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 228, 240, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.floating-panel {
  margin: -64px 24px 0;
  padding: 22px;
  position: relative;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card { padding: 22px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.stat-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12); }
.stat-card strong, .trust-card strong { display: block; font-size: 1.6rem; margin-bottom: 8px; }
.section { padding: 84px 0; position: relative; }
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(219,228,240,0), rgba(219,228,240,0.95), rgba(219,228,240,0));
}
.hero + .section::before,
.page-hero + .section::before,
.section-dark::before,
.cta-section::before { display: none; }
.section-alt { background: linear-gradient(180deg, rgba(30,58,138,0.03), rgba(59,130,246,0.06)); }
.section-dark {
  background: linear-gradient(135deg, #102559 0%, #163a8a 60%, #1e4fc3 100%);
  color: #fff;
  padding: 96px 0;
}
.section-dark .eyebrow { background: rgba(255,255,255,0.14); color: #dbeafe; }
.section-dark .trust-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); box-shadow: none; }
.section-dark .trust-card strong,
.section-dark .trust-card span,
.section-dark .section-heading h2,
.section-dark .section-copy {
  color: #fff;
}
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.section-heading h2, .cta-panel h2, .form-panel h2, .info-card h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em; margin: 12px 0; }
.section-copy { color: var(--muted); line-height: 1.8; }

.three-up { grid-template-columns: repeat(3, 1fr); }
.four-up { grid-template-columns: repeat(4, 1fr); }
.two-up, .trust-grid { grid-template-columns: repeat(2, 1fr); }
.info-card, .form-panel, .legal-card, .table-card, .cta-panel { padding: 28px; }
.trust-card { padding: 28px; }
.info-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.info-card:hover, .mini-card:hover, .trust-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12); border-color: rgba(59, 130, 246, 0.32); }

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag-grid, .benefit-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.tag-grid span, .mini-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-content: start;
}
.benefits-grid .mini-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  font-weight: 600;
  color: var(--ink);
}

.tag-grid span {
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tag-grid span:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 58, 138, 0.22);
}

.cta-panel { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.detail-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.detail-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(219, 228, 240, 0.95);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}
.detail-card h3 { margin-top: 0; }
.detail-card p,
.info-card p,
.trust-card span,
.stat-card span,
.cta-panel p { color: var(--muted); line-height: 1.8; }
.feature-list {
  display: grid;
  gap: 18px;
}
.feature-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(219, 228, 240, 0.95);
}
.feature-item:first-child {
  padding-top: 0;
}
.feature-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.feature-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.feature-item span {
  color: var(--muted);
  line-height: 1.75;
}
label { display: grid; gap: 8px; color: var(--ink); font-weight: 500; }

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

input:focus, textarea:focus {
  outline: 0;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ajax-form, .form-panel form { display: grid; gap: 18px; }
.inline-form { gap: 12px; }
.inline-form input { background: rgba(255,255,255,0.98); }
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.form-status { min-height: 24px; color: #b91c1c; font-size: 0.95rem; }
.form-status.success { color: #15803d; }
.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  display: none;
  animation: spin 0.8s linear infinite;
}
.ajax-form.is-loading .spinner { display: inline-block; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08); border-color: rgba(59,130,246,0.28); }
.faq-item summary { cursor: pointer; font-weight: 600; }
.faq-item div { padding-top: 14px; color: var(--muted); line-height: 1.7; }

.site-footer {
  padding: 56px 0 18px;
  background: #0f172a;
  color: #cbd5e1;
}
.footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); align-items: start; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-top: 0; }
.site-footer a { display: block; margin-bottom: 10px; }
.footer-copy { color: #94a3b8; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(148, 163, 184, 0.2); margin-top: 28px; padding-top: 18px; }

.success-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.success-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.admin-body, .admin-auth-body { background: #eff4ff; min-height: 100vh; }
.admin-layout { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.admin-sidebar {
  padding: 30px;
  background: #0f172a;
  color: #cbd5e1;
}
.admin-sidebar nav { display: grid; gap: 10px; margin-top: 28px; }
.admin-sidebar nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: #cbd5e1;
}
.admin-sidebar nav a.active, .admin-sidebar nav a:hover { background: rgba(59,130,246,0.16); color: #fff; }
.admin-main { padding: 30px; }
.admin-topbar { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-stats { grid-template-columns: repeat(3, 1fr); }
.admin-grid { grid-template-columns: 1.2fr 0.8fr; }
.security-wrap { max-width: 760px; }
.security-panel { padding: 32px; }
.table-card { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-link.danger { color: #b91c1c; }
.table-link { margin-right: 12px; }
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.alert.success { background: #dcfce7; color: #166534; }
.alert.error { background: #fee2e2; color: #991b1b; }
.admin-auth-card {
  width: min(460px, calc(100% - 32px));
  margin: 10vh auto;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 32px;
}

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

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 980px) {
  .hero-grid, .split-grid, .footer-grid, .admin-layout, .admin-grid, .three-up, .two-up, .four-up, .trust-grid, .stat-row, .admin-stats {
    grid-template-columns: 1fr;
  }
  .nav-wrap { grid-template-columns: 1fr; justify-items: start; gap: 16px; }
  .nav { flex-wrap: wrap; justify-content: flex-start; }
  .cta-panel, .admin-topbar { flex-direction: column; align-items: stretch; }
  .benefits-grid { grid-template-columns: 1fr; }
  .dual-cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .hero, .page-hero, .section { padding: 56px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-copy h1, .page-hero h1 { font-size: 2.4rem; }
  .nav-cta { width: 100%; }
  .header-logo { min-width: 0; }
  .logo-mark { width: 48px; height: 48px; flex-basis: 48px; }
  .logo-name { font-size: 1.6rem; }
  .success-toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
.contact-details-stack .detail-card p a,
.footer-contact-block a {
  color: inherit;
}

.contact-details-stack .detail-card p {
  margin: 0;
}

.map-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(219, 228, 240, 0.95);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.map-card iframe {
  display: block;
}

.footer-contact-block {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.footer-contact-block .footer-copy {
  margin: 0;
}
.info-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.section-alt .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  border-color: rgba(59, 130, 246, 0.26);
}
.footer-unsubscribe-link {
  margin-top: 10px;
  width: fit-content;
}
.site-footer h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.site-footer a {
  font-weight: 500;
}

.footer-grid-clean {
  align-items: start;
}

.footer-intro {
  margin: 0 0 14px;
  max-width: 320px;
}

.footer-contact-block {
  gap: 12px;
}

.footer-contact-block .footer-copy {
  display: grid;
  gap: 4px;
  line-height: 1.65;
}

.footer-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.footer-unsubscribe-link {
  font-weight: 600;
}
.site-footer,
.site-footer .footer-copy,
.site-footer .footer-copy a,
.site-footer a,
.site-footer p {
  color: #e5e7eb;
}

.site-footer .footer-copy {
  color: #cbd5e1;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-label {
  color: #f8fafc;
}

.site-footer .logo-name,
.site-footer h3 {
  color: #ffffff;
}
.footer-text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-text-link:hover {
  color: #dbeafe;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  color: var(--muted);
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.checkbox-row span {
  line-height: 1.7;
}

.checkbox-row a {
  color: var(--primary);
  font-weight: 600;
}

.checkbox-row a:hover {
  text-decoration: underline;
}
.map-placeholder-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 40px;
}

.map-placeholder-content {
  max-width: 520px;
  text-align: center;
}

.map-placeholder-content h3 {
  margin-bottom: 12px;
}

.map-placeholder-content p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.turnstile-wrap {
  margin: 18px 0 12px;
}

.turnstile-wrap .cf-turnstile {
  max-width: 100%;
}

/* Homepage gradient refinement */
body {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(30, 58, 138, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f9fafb 52%, #f1f6ff 100%);
}

.hero {
  position: relative;
  padding: 104px 0 84px;
  background:
    radial-gradient(circle at 14% 18%, rgba(59, 130, 246, 0.14), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(30, 58, 138, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 56%, rgba(237, 244, 255, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(219,228,240,0), rgba(148,163,184,0.45), rgba(219,228,240,0));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(59, 130, 246, 0.14));
  border: 1px solid rgba(59, 130, 246, 0.16);
}

.button-primary {
  background: linear-gradient(135deg, #17337a 0%, #1f4dbb 55%, #3b82f6 100%);
  box-shadow: 0 16px 38px rgba(30, 58, 138, 0.20);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(30, 58, 138, 0.24);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px -14px -18px 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.12), rgba(59, 130, 246, 0.08));
  filter: blur(10px);
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}

.floating-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  z-index: 2;
}

.section-alt {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(30,58,138,0.03), rgba(59,130,246,0.05));
}

.info-card,
.mini-card,
.trust-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.info-card:hover,
.mini-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.11);
  border-color: rgba(96, 165, 250, 0.28);
}

.hero-copy > * {
  animation: heroRise 0.8s ease both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Uploaded logo assets */
.site-logo {
  gap: 0;
}

.header-logo,
.footer-logo {
  min-width: 0;
}

.brand-image {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

.brand-image-header {
  width: clamp(190px, 18vw, 280px);
}

.brand-image-footer {
  width: clamp(180px, 16vw, 250px);
}

@media (max-width: 720px) {
  .brand-image-header {
    width: 190px;
  }

  .brand-image-footer {
    width: 170px;
  }
}
/* Logo-matched neutral palette */
:root {
  --primary: #111111;
  --secondary: #374151;
  --ink: #111111;
  --muted: #4b5563;
  --line: #e5e7eb;
  --surface: #ffffff;
  --bg: #f8fafc;
  --shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(17, 24, 39, 0.04), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(107, 114, 128, 0.05), transparent 24%),
    linear-gradient(180deg, #fcfcfd 0%, #f8fafc 54%, #f3f4f6 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.nav a.active,
.nav a:hover,
.site-footer a:hover {
  color: #111111;
}

.eyebrow,
.hero-copy .eyebrow,
.trust-strip span,
.trust-bar-list span {
  background: rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #111111;
}

.button-primary {
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.18);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.22);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  color: #111111;
}

.button-secondary:hover,
.button-tertiary:hover {
  background: #f3f4f6;
}

.hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(17, 24, 39, 0.05), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(107, 114, 128, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.96) 56%, rgba(243, 244, 246, 0.94) 100%);
}

.hero-visual::before {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.08), rgba(107, 114, 128, 0.06));
}

.floating-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.96));
  border-color: rgba(17, 24, 39, 0.08);
}

.section-alt {
  background:
    radial-gradient(circle at top right, rgba(17, 24, 39, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.01), rgba(107, 114, 128, 0.04));
}

.section-dark {
  background: linear-gradient(135deg, #111111 0%, #1f2937 100%);
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.10);
  color: #f9fafb;
  border-color: rgba(255, 255, 255, 0.14);
}

.section-dark .trust-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}

.icon-badge {
  background: linear-gradient(135deg, #111111 0%, #2b2b2b 100%);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.14);
}

.info-card:hover,
.mini-card:hover,
.trust-card:hover,
.section-alt .info-card:hover {
  border-color: rgba(17, 24, 39, 0.18);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.10);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #111111;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.checkbox-row a,
.footer-text-link {
  color: #111111;
}

.site-footer {
  background: #111111;
}

.site-footer .footer-copy,
.site-footer .footer-copy a,
.site-footer a,
.site-footer p {
  color: #e5e7eb;
}

.site-footer a:hover,
.site-footer .footer-text-link {
  color: #ffffff;
}
/* Hero image overlay refinement */
.brand-image-header {
  width: clamp(240px, 21vw, 330px);
}

.hero-visual {
  overflow: visible;
}

.hero-visual img {
  min-height: 0;
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.20), rgba(17, 24, 39, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.20);
}

.hero-image-overlay p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 420px;
}

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

.hero-image-actions .button-primary {
  box-shadow: none;
}

.hero-image-actions .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-image-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 720px) {
  .brand-image-header {
    width: 220px;
  }

  .hero-visual img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-image-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .hero-image-actions {
    flex-direction: column;
  }

  .hero-image-actions .button {
    width: 100%;
  }
}
/* Hero single-CTA cleanup */
.hero-copy .lead {
  margin-bottom: 0;
}

.hero-image-actions {
  margin-top: 2px;
}
/* Full-bleed hero background */
.hero-fullbleed {
  position: relative;
  min-height: 95vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111111;
}

.hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.60) 38%, rgba(10, 10, 10, 0.34) 62%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.30), rgba(10, 10, 10, 0.18));
  z-index: 1;
}

.hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  animation: heroBackgroundZoom 10s ease-out both;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy-full {
  max-width: 640px;
  padding: 120px 0 88px;
}

.hero-fullbleed .eyebrow {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f9fafb;
}

.hero-fullbleed h1,
.hero-fullbleed .lead {
  color: #ffffff;
}

.hero-fullbleed .lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.hero-fullbleed .hero-actions {
  margin: 30px 0 0;
}

.hero-fullbleed .button-secondary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-fullbleed .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-copy-full > * {
  animation: heroFadeUp 0.85s ease both;
}

.hero-copy-full > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy-full > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy-full > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy-full > *:nth-child(4) { animation-delay: 0.34s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBackgroundZoom {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  .hero-fullbleed {
    min-height: 88vh;
  }

  .hero-copy-full {
    max-width: 560px;
    padding: 112px 0 76px;
  }
}

@media (max-width: 720px) {
  .hero-fullbleed {
    min-height: 92vh;
  }

  .hero-fullbleed::before {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.68) 0%, rgba(10, 10, 10, 0.54) 48%, rgba(10, 10, 10, 0.42) 100%);
  }

  .hero-copy-full {
    max-width: 100%;
    padding: 108px 0 64px;
  }

  .hero-fullbleed .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-fullbleed .hero-actions .button {
    width: 100%;
  }
}
/* Executive consulting hero refinement */
.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.68) 36%, rgba(8, 10, 14, 0.42) 62%, rgba(8, 10, 14, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 10, 14, 0.26), rgba(8, 10, 14, 0.18));
}

.hero-copy-full {
  max-width: 680px;
}

.hero-fullbleed .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.01em;
}

.hero-fullbleed h1 {
  max-width: 720px;
}

.hero-fullbleed .lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.80);
}
/* Black white warm-gray brand palette */
:root {
  --primary: #111111;
  --secondary: #d6d3d1;
  --ink: #111111;
  --muted: #57534e;
  --line: #d6d3d1;
  --surface: #ffffff;
  --bg: #fafaf9;
  --shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(214, 211, 209, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafaf9 56%, #f5f5f4 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(214, 211, 209, 0.8);
}

.eyebrow,
.hero-copy .eyebrow,
.trust-strip span,
.trust-bar-list span {
  background: rgba(214, 211, 209, 0.32);
  border: 1px solid rgba(214, 211, 209, 0.7);
  color: #111111;
}

.button-primary {
  background: linear-gradient(135deg, #111111 0%, #2c2c2c 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.16);
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 211, 209, 0.9);
  color: #111111;
}

.button-secondary:hover,
.button-tertiary:hover {
  background: #f5f5f4;
}

.section-alt {
  background:
    radial-gradient(circle at top right, rgba(214, 211, 209, 0.20), transparent 24%),
    linear-gradient(180deg, rgba(214, 211, 209, 0.08), rgba(255, 255, 255, 0.4));
}

.section-dark {
  background: linear-gradient(135deg, #111111 0%, #292524 100%);
}

.section-dark .eyebrow {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(214, 211, 209, 0.26);
  color: #fafaf9;
}

.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.66) 36%, rgba(17, 17, 17, 0.40) 62%, rgba(17, 17, 17, 0.24) 100%),
    linear-gradient(180deg, rgba(41, 37, 36, 0.24), rgba(17, 17, 17, 0.18));
}

.hero-fullbleed .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(214, 211, 209, 0.34);
  color: #ffffff;
}

.icon-badge {
  background: linear-gradient(135deg, #111111 0%, #292524 100%);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
}

.floating-panel,
.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card {
  border: 1px solid rgba(214, 211, 209, 0.8);
}

.info-card:hover,
.mini-card:hover,
.trust-card:hover,
.section-alt .info-card:hover {
  border-color: rgba(168, 162, 158, 0.9);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #a8a29e;
  box-shadow: 0 0 0 4px rgba(214, 211, 209, 0.35);
}

.site-footer {
  background: #111111;
}
/* Lighter neutral rebalance */
body {
  background:
    radial-gradient(circle at top left, rgba(214, 211, 209, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fafaf9 58%, #f7f5f4 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
}

.button-primary {
  background: #111111;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(245, 245, 244, 0.82), rgba(255, 255, 255, 0.92));
}

.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.68) 0%, rgba(17, 17, 17, 0.50) 34%, rgba(17, 17, 17, 0.28) 60%, rgba(17, 17, 17, 0.14) 100%),
    linear-gradient(180deg, rgba(41, 37, 36, 0.16), rgba(17, 17, 17, 0.10));
}

.hero-fullbleed .lead {
  color: rgba(255, 255, 255, 0.88);
}

.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card,
.floating-panel {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
}

.section-dark {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
}

.section-dark .trust-card {
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  color: #a8a29e;
}
/* Balanced neutral finish */
body {
  background:
    radial-gradient(circle at top left, rgba(214, 211, 209, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 56%, #f5f5f4 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 211, 209, 0.68);
}

.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0.44) 34%, rgba(17, 17, 17, 0.24) 60%, rgba(17, 17, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(41, 37, 36, 0.12), rgba(17, 17, 17, 0.08));
}

.hero-fullbleed .lead {
  color: rgba(255, 255, 255, 0.90);
}

.button-primary {
  background: linear-gradient(135deg, #111111 0%, #252525 100%);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(214, 211, 209, 0.78);
}

.section-alt {
  background:
    radial-gradient(circle at top right, rgba(214, 211, 209, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(245, 245, 244, 0.72), rgba(255, 255, 255, 0.94));
}

.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card,
.floating-panel {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.06);
}

.section-dark {
  background: linear-gradient(135deg, #1f1f1f 0%, #2f2a28 100%);
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #181818;
}
/* Cinematic hero direction */
.hero-fullbleed {
  min-height: 100vh;
  background: #09090b;
}

.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.78) 0%, rgba(9, 9, 11, 0.58) 34%, rgba(9, 9, 11, 0.30) 60%, rgba(9, 9, 11, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.26), rgba(9, 9, 11, 0.10));
}

.hero-fullbleed::after {
  filter: saturate(0.85) contrast(1.05) brightness(0.58);
}

.hero-content-wrap {
  width: min(1240px, calc(100% - 48px));
}

.hero-copy-full {
  max-width: 760px;
  padding: 130px 0 92px;
}

.hero-copy-full .eyebrow {
  padding: 11px 18px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fafc;
}

.hero-copy-full h1 {
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 18px 0 22px;
  max-width: 860px;
}

.hero-copy-full .lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

.hero-fullbleed .hero-actions {
  margin-top: 34px;
  gap: 14px;
}

.hero-fullbleed .button {
  min-width: 220px;
  border-radius: 999px;
  padding: 16px 26px;
  font-size: 1.02rem;
}

.hero-fullbleed .button-primary {
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero-fullbleed .button-primary:hover {
  background: rgba(17, 17, 17, 0.84);
}

.hero-fullbleed .button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-fullbleed .button-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 980px) {
  .hero-copy-full {
    max-width: 680px;
    padding: 122px 0 82px;
  }

  .hero-copy-full h1 {
    font-size: clamp(3.5rem, 9vw, 5.2rem);
  }
}

@media (max-width: 720px) {
  .hero-content-wrap {
    width: min(100%, calc(100% - 28px));
  }

  .hero-copy-full {
    max-width: 100%;
    padding: 110px 0 64px;
  }

  .hero-copy-full h1 {
    font-size: 3.15rem;
    line-height: 0.98;
  }

  .hero-copy-full .lead {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .hero-fullbleed .hero-actions .button {
    min-width: 0;
    width: 100%;
  }
}
/* Abstract hero atmosphere */
.hero-fullbleed {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(135deg, #09090b 0%, #111217 55%, #17181d 100%);
}

.hero-fullbleed::before {
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.82) 0%, rgba(9, 9, 11, 0.62) 34%, rgba(9, 9, 11, 0.34) 60%, rgba(9, 9, 11, 0.16) 100%),
    radial-gradient(circle at 70% 30%, rgba(120, 119, 198, 0.08), transparent 22%),
    radial-gradient(circle at 84% 66%, rgba(255, 255, 255, 0.05), transparent 18%);
}

.hero-fullbleed::after {
  filter: grayscale(0.15) saturate(0.55) contrast(1.08) brightness(0.42);
}
/* Fully abstract hero background */
.hero-abstract {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 16%),
    radial-gradient(circle at 78% 22%, rgba(129, 140, 248, 0.10), transparent 18%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.05), transparent 14%),
    linear-gradient(135deg, #05060a 0%, #0b0d12 52%, #11131a 100%);
}

.hero-abstract::before {
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.84) 0%, rgba(5, 6, 10, 0.66) 34%, rgba(5, 6, 10, 0.34) 60%, rgba(5, 6, 10, 0.16) 100%),
    radial-gradient(circle at 72% 28%, rgba(96, 165, 250, 0.12), transparent 18%),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.05), transparent 14%);
}

.hero-abstract::after {
  content: "";
  position: absolute;
  inset: -8%;
  background:
    repeating-radial-gradient(circle at 70% 46%, transparent 0 18px, rgba(255,255,255,0.035) 18px 20px, transparent 20px 46px),
    repeating-radial-gradient(circle at 70% 46%, transparent 0 58px, rgba(96,165,250,0.06) 58px 60px, transparent 60px 102px),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 42%, transparent 54%),
    linear-gradient(140deg, transparent 18%, rgba(129,140,248,0.05) 50%, transparent 64%);
  transform: scale(1.05);
  animation: abstractDrift 16s ease-in-out infinite alternate;
  z-index: 0;
  opacity: 0.95;
}

@keyframes abstractDrift {
  from {
    transform: scale(1.03) translate3d(-1.5%, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(1.5%, -1%, 0);
  }
}
/* Scroll-reactive header */
.site-header {
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.nav-wrap {
  transition: padding 0.28s ease, gap 0.28s ease;
}

.brand-image-header {
  transition: width 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(214, 211, 209, 0.92);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-wrap {
  padding: 12px 0;
}

.site-header.is-scrolled .brand-image-header {
  transform: scale(0.96);
}
/* Experts Dock-inspired navy/cyan palette */
:root {
    --color-primary: #0F172A;
    --color-secondary: #06B6D4;
    --color-secondary-soft: #67E8F9;
    --color-background: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-surface-muted: #F1F5F9;
    --color-text: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #E5E7EB;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 24px 56px rgba(15, 23, 42, 0.14);
}

body {
    background:
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.18), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    color: var(--color-text);
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--color-secondary);
}

.button-primary,
.hero .button-primary,
.site-header .button-primary {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    border-color: #0891B2;
    color: #FFFFFF;
    box-shadow: 0 14px 34px rgba(6, 182, 212, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
    background: linear-gradient(135deg, #0891B2 0%, #0E7490 100%);
    border-color: #0E7490;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(6, 182, 212, 0.28);
}

.button-secondary,
.hero .button-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #FFFFFF;
    backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(103, 232, 249, 0.55);
}

.hero.hero-fullbleed {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(8, 145, 178, 0.48) 100%),
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.24), transparent 30%);
}

.hero.hero-abstract::before {
    background:
        radial-gradient(circle at 22% 24%, rgba(103, 232, 249, 0.18), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(6, 182, 212, 0.14), transparent 22%),
        repeating-radial-gradient(circle at 75% 20%, rgba(255,255,255,0.1) 0 2px, transparent 2px 22px);
    opacity: 0.95;
}

.hero .eyebrow {
    color: #67E8F9;
    border-color: rgba(103, 232, 249, 0.45);
    background: rgba(6, 182, 212, 0.12);
}

.hero-copy h1,
.hero-copy p {
    text-shadow: 0 10px 30px rgba(15, 23, 42, 0.32);
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.section-alt,
.section-muted {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.info-card,
.industry-card,
.detail-card,
.trust-card,
.step-card,
.benefit-card,
.contact-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.info-card:hover,
.industry-card:hover,
.detail-card:hover,
.trust-card:hover,
.step-card:hover,
.benefit-card:hover,
.contact-card:hover {
    border-color: rgba(6, 182, 212, 0.26);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.card-icon,
.step-icon,
.detail-icon,
.contact-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(103, 232, 249, 0.18));
    color: #0891B2;
}

.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow {
    color: #0891B2;
    border-color: rgba(6, 182, 212, 0.26);
    background: rgba(6, 182, 212, 0.08);
}

a {
    color: #0891B2;
}

a:hover,
a:focus-visible {
    color: #0E7490;
}

.section-dark,
.site-footer {
    background:
        linear-gradient(135deg, #0F172A 0%, #172554 100%);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: #67E8F9;
}
/* Theme-only refinement: keep logo unchanged */
:root {
    --color-primary: #0F172A;
    --color-secondary: #06B6D4;
    --color-secondary-soft: #67E8F9;
    --color-background: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-surface-muted: #F1F5F9;
    --color-text: #0F172A;
    --color-text-muted: #64748B;
    --color-border: #E5E7EB;
}

body {
    background:
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.12), transparent 24%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.site-header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.site-nav a,
.site-nav button {
    color: #0F172A;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: #0891B2;
}

.button-primary,
.hero .button-primary,
.site-header .button-primary {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    border-color: #0891B2;
    color: #FFFFFF;
    box-shadow: 0 14px 34px rgba(6, 182, 212, 0.22);
    position: relative;
    overflow: hidden;
}

.button-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.8s ease;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
    transform: translateX(140%);
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
    background: linear-gradient(135deg, #0891B2 0%, #0E7490 100%);
    border-color: #0E7490;
    box-shadow: 0 18px 38px rgba(6, 182, 212, 0.26);
}

.hero.hero-fullbleed {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.84) 0%, rgba(15, 23, 42, 0.7) 42%, rgba(8, 145, 178, 0.42) 100%),
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.18), transparent 30%);
}

.hero.hero-abstract::before {
    animation: heroPulse 12s ease-in-out infinite alternate;
}

.hero-copy {
    animation: heroTextRise 900ms ease-out both;
}

.hero .eyebrow {
    color: #67E8F9;
    border-color: rgba(103, 232, 249, 0.45);
    background: rgba(6, 182, 212, 0.12);
}

.section-alt,
.section-muted {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.info-card,
.industry-card,
.detail-card,
.trust-card,
.step-card,
.benefit-card,
.contact-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.info-card:hover,
.industry-card:hover,
.detail-card:hover,
.trust-card:hover,
.step-card:hover,
.benefit-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.24);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.card-icon,
.step-icon,
.detail-icon,
.contact-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(103, 232, 249, 0.18));
    color: #0891B2;
}

.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow {
    color: #0891B2;
    border-color: rgba(6, 182, 212, 0.26);
    background: rgba(6, 182, 212, 0.08);
}

.section-dark,
.site-footer {
    background: linear-gradient(135deg, #0F172A 0%, #172554 100%);
}

@keyframes heroPulse {
    0% {
        transform: scale(1.02);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes heroTextRise {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Creative GLG-inspired homepage direction */
:root {
    --ins-navy: #080B1F;
    --ins-navy-2: #111A33;
    --ins-cyan: #00A9C7;
    --ins-cyan-soft: #8DEBFF;
    --ins-yellow: #F5C400;
    --ins-paper: #F5F7FB;
    --ins-line: #DDE3EC;
}

body {
    background: var(--ins-paper);
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(8, 11, 31, 0.1);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 48px rgba(8, 11, 31, 0.12);
}

.nav a,
.site-nav a {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--ins-cyan);
}

.hero.hero-network {
    min-height: clamp(620px, 92vh, 860px);
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(8, 11, 31, 0.94) 0%, rgba(8, 11, 31, 0.84) 42%, rgba(0, 169, 199, 0.5) 100%),
        radial-gradient(circle at calc(74% + (var(--hero-x, 0) * 1px)) calc(18% + (var(--hero-y, 0) * 1px)), rgba(141, 235, 255, 0.28), transparent 24%),
        radial-gradient(circle at 22% 76%, rgba(245, 196, 0, 0.16), transparent 20%),
        #080B1F;
    overflow: hidden;
}

.hero.hero-network::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: -2;
    background:
        linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.2% 42.45%, transparent 42.65%),
        linear-gradient(28deg, transparent 0 54%, rgba(141, 235, 255, 0.12) 54.2% 54.5%, transparent 54.7%),
        radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 1px, transparent 2px) 0 0 / 72px 72px,
        repeating-radial-gradient(circle at 76% 18%, rgba(255,255,255,0.13) 0 1px, transparent 1px 28px);
    transform: translate3d(calc(var(--hero-x, 0) * -0.5px), calc(var(--hero-y, 0) * -0.5px), 0) scale(1.05);
    opacity: 0.9;
    animation: networkDrift 18s ease-in-out infinite alternate;
}

.hero.hero-network::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    z-index: 1;
    background: linear-gradient(90deg, var(--ins-yellow), var(--ins-cyan), transparent);
    opacity: 0.95;
}

.hero-content-wrap {
    position: relative;
    min-height: inherit;
    display: flex;
    align-items: center;
}

.hero-copy-full {
    max-width: min(760px, 100%);
    padding: 58px 0 72px;
}

.hero-copy-full .eyebrow,
.hero .eyebrow {
    color: var(--ins-cyan-soft);
    background: rgba(0, 169, 199, 0.12);
    border: 1px solid rgba(141, 235, 255, 0.48);
    letter-spacing: 0.16em;
}

.hero-copy-full h1 {
    color: #FFFFFF;
    font-size: clamp(3.6rem, 7.6vw, 7.6rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    max-width: 820px;
}

.hero-copy-full .lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.8vw, 1.36rem);
    line-height: 1.75;
    max-width: 690px;
}

.hero-actions {
    gap: 18px;
}

.button,
.hero .button {
    border-radius: 999px;
    min-height: 48px;
    padding-inline: 28px;
}

.button-primary,
.hero .button-primary,
.site-header .button-primary {
    background: linear-gradient(135deg, var(--ins-cyan), #0688A5);
    border-color: rgba(141, 235, 255, 0.36);
    color: #06101F;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(0, 169, 199, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible {
    background: linear-gradient(135deg, var(--ins-cyan-soft), var(--ins-cyan));
    color: #06101F;
    transform: translateY(-2px) scale(1.015);
}

.button-secondary,
.hero .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.52);
    color: #FFFFFF;
}

.button-secondary:hover,
.button-secondary:focus-visible,
.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--ins-yellow);
}

.home-proof-band {
    position: relative;
    z-index: 2;
    margin-top: -74px;
    padding: 0 0 70px;
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: #FFFFFF;
    border: 1px solid rgba(8, 11, 31, 0.1);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(8, 11, 31, 0.18);
    overflow: hidden;
}

.home-proof-item {
    padding: clamp(24px, 4vw, 40px);
    border-right: 1px solid var(--ins-line);
    transition: background 0.28s ease, transform 0.28s ease;
}

.home-proof-item:last-child {
    border-right: 0;
}

.home-proof-item span {
    display: block;
    color: var(--ins-cyan);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}

.home-proof-item strong {
    color: var(--ins-navy);
    font-size: 1rem;
    line-height: 1.5;
}

.home-proof-item:hover {
    background: #F8FCFF;
    transform: translateY(-4px);
}

.section-heading {
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 92px;
    height: 5px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ins-yellow) 0 60%, var(--ins-cyan) 60% 100%);
}

.section-heading.centered::after {
    margin-left: auto;
    margin-right: auto;
}

.home-process .info-card,
.home-industries .info-card {
    min-height: 230px;
    border-radius: 22px;
    overflow: hidden;
}

.home-process .info-card::before,
.home-industries .info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(0, 169, 199, 0.12), transparent 36%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.home-process .info-card:hover::before,
.home-industries .info-card:hover::before {
    opacity: 1;
}

.home-industries .info-card:nth-child(odd) {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.98)),
        linear-gradient(135deg, rgba(8, 11, 31, 0.08), rgba(0, 169, 199, 0.12));
}

.home-industries .info-card:nth-child(even) {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.98)),
        linear-gradient(135deg, rgba(245, 196, 0, 0.11), rgba(0, 169, 199, 0.1));
}

.home-benefits {
    background:
        linear-gradient(90deg, rgba(8, 11, 31, 0.04), transparent 34%),
        #FFFFFF;
}

.mini-card,
.benefits-grid .mini-card {
    border-radius: 999px;
    border: 1px solid rgba(8, 11, 31, 0.1);
    background: #FFFFFF;
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.mini-card:hover,
.benefits-grid .mini-card:hover {
    transform: translateX(6px);
    border-color: rgba(0, 169, 199, 0.42);
    box-shadow: 0 16px 32px rgba(8, 11, 31, 0.1);
}

.home-compliance.section-dark {
    background:
        radial-gradient(circle at 20% 16%, rgba(0, 169, 199, 0.18), transparent 26%),
        linear-gradient(135deg, #080B1F 0%, #121B38 100%);
    position: relative;
    overflow: hidden;
}

.home-compliance.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 46%, rgba(245, 196, 0, 0.12) 46.1% 46.35%, transparent 46.5%);
    opacity: 0.8;
}

.home-compliance > .container {
    position: relative;
}

.home-compliance .trust-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.home-compliance .trust-card:hover {
    border-color: rgba(141, 235, 255, 0.46);
    background: rgba(255, 255, 255, 0.12);
}

[data-reveal] {
    transform: translateY(28px) scale(0.985);
}

[data-reveal].revealed {
    transform: translateY(0) scale(1);
}

@keyframes networkDrift {
    0% {
        transform: translate3d(calc(var(--hero-x, 0) * -0.5px), calc(var(--hero-y, 0) * -0.5px), 0) scale(1.04) rotate(0deg);
    }
    100% {
        transform: translate3d(calc(var(--hero-x, 0) * -0.5px), calc(var(--hero-y, 0) * -0.5px), 0) scale(1.1) rotate(1.5deg);
    }
}

@media (max-width: 900px) {
    .home-proof-grid {
        grid-template-columns: 1fr;
    }

    .home-proof-item {
        border-right: 0;
        border-bottom: 1px solid var(--ins-line);
    }

    .home-proof-item:last-child {
        border-bottom: 0;
    }

    .hero-copy-full h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }
}

@media (max-width: 640px) {
    .hero.hero-network {
        min-height: 760px;
    }

    .home-proof-band {
        margin-top: -42px;
        padding-bottom: 48px;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .button {
        justify-content: center;
        width: 100%;
    }
}
/* GSAP-ready creative animation and layout system */
:root {
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    cursor: auto;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background: #080B1F;
    opacity: 0;
}


.hero-copy-full h1 {
    overflow: hidden;
}

.hero-line {
    display: block;
    overflow: hidden;
}

.hero-line span {
    display: inline-block;
    will-change: transform, opacity;
}

.hero.hero-network,
.hero.hero-network::before,
.hero.hero-network::after,
.info-card,
.mini-card,
.trust-card,
.story-step,
.button {
    will-change: transform, opacity;
}

.hero.hero-network {
    min-height: clamp(680px, 96vh, 920px);
}

.home-proof-band {
    padding-bottom: clamp(78px, 9vw, 126px);
}

.home-proof-grid {
    transform: translateZ(0);
}

.home-proof-item span {
    font-variant-numeric: tabular-nums;
}

.home-process,
.home-industries,
.home-benefits {
    padding-block: clamp(92px, 10vw, 150px);
}

.home-story-pin {
    min-height: 120vh;
    padding: clamp(100px, 12vw, 170px) 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(0, 169, 199, 0.14), transparent 28%),
        linear-gradient(135deg, #080B1F 0%, #111A33 100%);
    color: #FFFFFF;
    overflow: hidden;
}

.story-pin-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(38px, 7vw, 96px);
    align-items: start;
}

.story-pin-copy {
    position: sticky;
    top: 128px;
}

.story-pin-copy .eyebrow {
    color: #8DEBFF;
    border-color: rgba(141, 235, 255, 0.45);
    background: rgba(0, 169, 199, 0.12);
}

.story-pin-copy h2 {
    color: #FFFFFF;
    font-size: clamp(2.6rem, 5vw, 5.9rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    margin-bottom: 22px;
}

.story-pin-copy .section-copy {
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
}

.story-pin-steps {
    display: grid;
    gap: 22px;
}

.story-step {
    min-height: 280px;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.story-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: #F5C400;
    color: #080B1F;
    font-weight: 800;
}

.story-step h3 {
    color: #FFFFFF;
    font-size: clamp(1.55rem, 2.8vw, 2.5rem);
    letter-spacing: -0.04em;
}

.story-step p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
}

.button {
    transition: transform 0.22s var(--motion-ease), box-shadow 0.22s var(--motion-ease), background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.button:active {
    transform: translateY(1px) scale(0.98);
}

[data-reveal] {
    opacity: 1;
}


@media (max-width: 900px) {
    .home-story-pin {
        min-height: auto;
    }

    .story-pin-layout {
        grid-template-columns: 1fr;
    }

    .story-pin-copy {
        position: static;
    }
}

@media (max-width: 640px) {
    .hero.hero-network {
        min-height: 780px;
    }

    .home-process,
    .home-industries,
    .home-benefits,
    .home-story-pin {
        padding-block: 76px;
    }

    .story-step {
        min-height: auto;
    }
}
/* Keep advanced motion driven by GSAP/ScrollTrigger */
.hero.hero-network::before {
    animation: none !important;
}
/* Default cursor and clean hover feedback */
html,
body,
a,
button,
.button,
input,
textarea,
select,
summary {
    cursor: auto;
}

a,
button,
.button,
summary {
    cursor: pointer;
}

.nav a,
.site-footer a,
.footer-text-link {
    transition: color 0.22s ease, opacity 0.22s ease;
}

.button,
.info-card,
.mini-card,
.trust-card,
.story-step,
.home-proof-item {
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px) scale(1.02);
}

.info-card:hover,
.mini-card:hover,
.trust-card:hover,
.story-step:hover,
.home-proof-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 22px 52px rgba(8, 11, 31, 0.13);
    border-color: rgba(0, 169, 199, 0.34);
}

.home-industries .info-card {
    display: grid;
    gap: 18px;
    align-content: start;
}

.industry-visual {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 169, 199, 0.12), rgba(245, 196, 0, 0.16));
    border: 1px solid rgba(0, 169, 199, 0.18);
    color: #008EA8;
    transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.industry-visual svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.home-industries .info-card:hover .industry-visual {
    transform: translateY(-2px) rotate(-2deg) scale(1.04);
    background: linear-gradient(135deg, #00A9C7, #8DEBFF);
    color: #06101F;
}
/* Cleaner engagement flow section */
.home-story-clean {
    min-height: auto !important;
    padding: clamp(88px, 10vw, 140px) 0 !important;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 169, 199, 0.18), transparent 26%),
        radial-gradient(circle at 86% 12%, rgba(245, 196, 0, 0.12), transparent 22%),
        linear-gradient(135deg, #080B1F 0%, #111A33 100%) !important;
    color: #FFFFFF;
}

.home-story-clean .story-heading {
    max-width: 900px;
    margin: 0 auto clamp(42px, 6vw, 72px);
}

.home-story-clean .story-heading h2 {
    color: #FFFFFF;
    font-size: clamp(2.25rem, 5vw, 5.4rem);
    line-height: 1;
    letter-spacing: -0.065em;
    margin-bottom: 20px;
}

.home-story-clean .story-heading .section-copy {
    color: rgba(255, 255, 255, 0.72);
    margin-inline: auto;
    max-width: 760px;
}

.story-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.home-story-clean .story-step {
    position: relative;
    min-height: 0 !important;
    padding: clamp(26px, 4vw, 42px) !important;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.home-story-clean .story-step::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(141, 235, 255, 0.16), transparent 34%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.home-story-clean .story-step:hover::before {
    opacity: 1;
}

.story-icon {
    position: relative;
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00A9C7, #8DEBFF);
    color: #06101F;
    box-shadow: 0 18px 38px rgba(0, 169, 199, 0.28);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.story-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-story-clean .story-step:hover .story-icon {
    transform: translateY(-4px) rotate(-3deg) scale(1.05);
    box-shadow: 0 22px 44px rgba(0, 169, 199, 0.34);
}

.story-number {
    position: absolute;
    top: 28px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 999px;
    background: #F5C400;
    color: #080B1F;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.home-story-clean .story-step h3 {
    position: relative;
    color: #FFFFFF;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
}

.home-story-clean .story-step p {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 100%;
}

@media (max-width: 980px) {
    .story-step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-story-clean {
        padding: 72px 0 !important;
    }

    .story-number {
        top: 24px;
        right: 24px;
    }
}
/* Section-aware multi-color polish */
:root {
    --accent-cyan: #00A9C7;
    --accent-blue: #2563EB;
    --accent-emerald: #10B981;
    --accent-amber: #F5C400;
    --accent-orange: #F97316;
    --accent-rose: #E11D48;
    --accent-violet: #7C3AED;
    --accent-slate: #080B1F;
}

.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow {
    color: var(--accent-cyan);
    border-color: rgba(0, 169, 199, 0.28);
    background: rgba(0, 169, 199, 0.08);
}

.home-process .section-heading .eyebrow,
.home-process .icon-badge {
    color: var(--accent-blue);
    border-color: rgba(37, 99, 235, 0.22);
    background: rgba(37, 99, 235, 0.1);
}

.home-process .section-heading::after {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.home-process .info-card:nth-child(1) {
    --card-accent: var(--accent-blue);
}

.home-process .info-card:nth-child(2) {
    --card-accent: var(--accent-cyan);
}

.home-process .info-card:nth-child(3) {
    --card-accent: var(--accent-emerald);
}

.home-process .info-card {
    border-top: 4px solid color-mix(in srgb, var(--card-accent, var(--accent-cyan)) 72%, white);
}

.home-process .info-card:hover {
    border-color: rgba(0, 169, 199, 0.2);
    border-top-color: var(--card-accent, var(--accent-cyan));
}

.home-process .info-card:hover .icon-badge {
    background: var(--card-accent, var(--accent-cyan));
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.04);
}

.home-industries .section-heading .eyebrow {
    color: var(--accent-orange);
    border-color: rgba(249, 115, 22, 0.24);
    background: rgba(249, 115, 22, 0.08);
}

.home-industries .section-heading::after {
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
}

.home-industries .info-card:nth-child(1) { --industry-accent: #2563EB; }
.home-industries .info-card:nth-child(2) { --industry-accent: #10B981; }
.home-industries .info-card:nth-child(3) { --industry-accent: #00A9C7; }
.home-industries .info-card:nth-child(4) { --industry-accent: #F97316; }
.home-industries .info-card:nth-child(5) { --industry-accent: #F5C400; }
.home-industries .info-card:nth-child(6) { --industry-accent: #7C3AED; }

.home-industries .info-card {
    background:
        radial-gradient(circle at 86% 12%, color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 14%, transparent), transparent 34%),
        #FFFFFF !important;
    border-color: color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 20%, #E5E7EB);
}

.home-industries .industry-visual {
    color: var(--industry-accent, var(--accent-cyan));
    background: color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 12%, white);
    border-color: color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 28%, white);
}

.home-industries .info-card:hover {
    border-color: color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 52%, #E5E7EB);
    box-shadow: 0 24px 58px color-mix(in srgb, var(--industry-accent, var(--accent-cyan)) 18%, transparent);
}

.home-industries .info-card:hover .industry-visual {
    background: var(--industry-accent, var(--accent-cyan));
    color: #FFFFFF;
}

.home-story-clean .story-step:nth-child(1) { --story-accent: var(--accent-blue); }
.home-story-clean .story-step:nth-child(2) { --story-accent: var(--accent-amber); }
.home-story-clean .story-step:nth-child(3) { --story-accent: var(--accent-emerald); }

.home-story-clean .story-step {
    border-color: color-mix(in srgb, var(--story-accent, var(--accent-cyan)) 24%, rgba(255,255,255,0.14));
}

.home-story-clean .story-icon {
    background: linear-gradient(135deg, var(--story-accent, var(--accent-cyan)), color-mix(in srgb, var(--story-accent, var(--accent-cyan)) 42%, white));
}

.home-story-clean .story-number {
    background: var(--story-accent, var(--accent-amber));
    color: #06101F;
}

.home-benefits .eyebrow {
    color: var(--accent-emerald);
    border-color: rgba(16, 185, 129, 0.26);
    background: rgba(16, 185, 129, 0.08);
}

.home-benefits .section-heading::after,
.home-benefits [data-reveal] > h2 + .section-copy::before {
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-cyan));
}

.home-benefits .mini-card:nth-child(5n+1) { --benefit-accent: var(--accent-emerald); }
.home-benefits .mini-card:nth-child(5n+2) { --benefit-accent: var(--accent-cyan); }
.home-benefits .mini-card:nth-child(5n+3) { --benefit-accent: var(--accent-blue); }
.home-benefits .mini-card:nth-child(5n+4) { --benefit-accent: var(--accent-violet); }
.home-benefits .mini-card:nth-child(5n+5) { --benefit-accent: var(--accent-amber); }

.home-benefits .mini-card {
    border-left: 4px solid var(--benefit-accent, var(--accent-emerald));
    background: linear-gradient(90deg, color-mix(in srgb, var(--benefit-accent, var(--accent-emerald)) 8%, white), #FFFFFF 62%);
}

.home-benefits .mini-card:hover {
    color: #06101F;
    border-color: color-mix(in srgb, var(--benefit-accent, var(--accent-emerald)) 48%, #E5E7EB);
    border-left-color: var(--benefit-accent, var(--accent-emerald));
}

.home-compliance .section-heading .eyebrow {
    color: #FDE68A;
    border-color: rgba(245, 196, 0, 0.38);
    background: rgba(245, 196, 0, 0.1);
}

.home-compliance .section-heading::after {
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-cyan));
}

.home-compliance .trust-card:nth-child(1) { --trust-accent: var(--accent-cyan); }
.home-compliance .trust-card:nth-child(2) { --trust-accent: var(--accent-emerald); }
.home-compliance .trust-card:nth-child(3) { --trust-accent: var(--accent-amber); }

.home-compliance .trust-card {
    border-top: 3px solid var(--trust-accent, var(--accent-cyan));
}

.home-compliance .trust-card strong {
    color: #FFFFFF;
}

.home-compliance .trust-card span {
    color: rgba(255, 255, 255, 0.74);
}

.home-compliance .trust-card:hover {
    box-shadow: 0 24px 64px color-mix(in srgb, var(--trust-accent, var(--accent-cyan)) 18%, transparent);
}

.home-proof-item:nth-child(1) span { color: var(--accent-cyan); }
.home-proof-item:nth-child(2) span { color: var(--accent-blue); }
.home-proof-item:nth-child(3) span { color: var(--accent-emerald); }

@supports not (color: color-mix(in srgb, red, white)) {
    .home-process .info-card,
    .home-industries .info-card,
    .home-benefits .mini-card,
    .home-compliance .trust-card {
        border-color: rgba(0, 169, 199, 0.22);
    }
}
/* Site-wide black-compatible color system */
:root {
    --brand-black: #050816;
    --brand-navy: #080B1F;
    --brand-charcoal: #111827;
    --brand-slate: #334155;
    --brand-paper: #F7F9FC;
    --brand-surface: #FFFFFF;
    --brand-line: #E2E8F0;
    --brand-cyan: #00A9C7;
    --brand-cyan-soft: #8DEBFF;
    --brand-amber: #F5C400;
    --brand-emerald: #10B981;
    --brand-violet: #7C3AED;
    --brand-orange: #F97316;
}

body {
    background:
        radial-gradient(circle at 92% 4%, rgba(0, 169, 199, 0.09), transparent 22%),
        radial-gradient(circle at 6% 38%, rgba(245, 196, 0, 0.06), transparent 18%),
        var(--brand-paper);
    color: var(--brand-charcoal);
}

main {
    background: transparent;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(5, 8, 22, 0.1);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 18px 44px rgba(5, 8, 22, 0.12);
}

.nav a,
.site-nav a {
    color: var(--brand-black);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--brand-cyan);
}

.nav a.active::after,
.site-nav a.is-active::after {
    background: var(--brand-cyan);
}

a {
    color: #0788A0;
    transition: color 0.22s ease, opacity 0.22s ease;
}

a:hover,
a:focus-visible {
    color: var(--brand-black);
}

.button-primary,
.hero .button-primary,
.site-header .button-primary,
button[type="submit"] {
    background: linear-gradient(135deg, var(--brand-black) 0%, #0C1B35 56%, #008EA8 100%) !important;
    border-color: rgba(0, 169, 199, 0.36) !important;
    color: #FFFFFF !important;
    box-shadow: 0 16px 38px rgba(5, 8, 22, 0.22), 0 10px 26px rgba(0, 169, 199, 0.16) !important;
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
    background: linear-gradient(135deg, #091021 0%, #0F2B45 52%, var(--brand-cyan) 100%) !important;
    box-shadow: 0 20px 46px rgba(5, 8, 22, 0.26), 0 14px 34px rgba(0, 169, 199, 0.2) !important;
}

.button-secondary,
.hero .button-secondary {
    border-color: rgba(5, 8, 22, 0.16);
    color: var(--brand-black);
    background: rgba(255, 255, 255, 0.9);
}

.hero .button-secondary {
    border-color: rgba(255, 255, 255, 0.48);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--brand-cyan);
    color: var(--brand-black);
    background: rgba(0, 169, 199, 0.08);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
    border-color: var(--brand-amber);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.16);
}

.section,
.page-section {
    background: transparent;
}

.section-alt,
.section-muted,
.legal-section,
.admin-section {
    background:
        radial-gradient(circle at 90% 12%, rgba(0, 169, 199, 0.07), transparent 22%),
        linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%) !important;
}

.section-dark,
.site-footer,
.home-compliance.section-dark {
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 169, 199, 0.18), transparent 26%),
        radial-gradient(circle at 84% 8%, rgba(245, 196, 0, 0.1), transparent 22%),
        linear-gradient(135deg, var(--brand-black) 0%, var(--brand-navy) 100%) !important;
}

.section-heading .eyebrow,
.eyebrow,
.section-kicker {
    color: #087F96;
    border-color: rgba(0, 169, 199, 0.25);
    background: rgba(0, 169, 199, 0.08);
}

.section-heading::after {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-amber)) !important;
}

.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card,
.detail-card,
.contact-card,
.faq-item,
.admin-card {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(5, 8, 22, 0.1) !important;
    box-shadow: 0 16px 38px rgba(5, 8, 22, 0.07) !important;
}

.info-card:hover,
.form-panel:hover,
.legal-card:hover,
.table-card:hover,
.cta-panel:hover,
.mini-card:hover,
.trust-card:hover,
.stat-card:hover,
.detail-card:hover,
.contact-card:hover,
.faq-item:hover,
.admin-card:hover {
    border-color: rgba(0, 169, 199, 0.34) !important;
    box-shadow: 0 24px 58px rgba(5, 8, 22, 0.12), 0 10px 28px rgba(0, 169, 199, 0.09) !important;
}

.icon-badge,
.card-icon,
.step-icon,
.detail-icon,
.contact-icon {
    background: linear-gradient(135deg, rgba(0, 169, 199, 0.12), rgba(141, 235, 255, 0.16)) !important;
    color: #0788A0 !important;
    border-color: rgba(0, 169, 199, 0.18) !important;
}

.info-card:nth-child(4n+1) .icon-badge,
.detail-card:nth-child(4n+1) .detail-icon,
.contact-card:nth-child(4n+1) .contact-icon { color: var(--brand-cyan) !important; }
.info-card:nth-child(4n+2) .icon-badge,
.detail-card:nth-child(4n+2) .detail-icon,
.contact-card:nth-child(4n+2) .contact-icon { color: var(--brand-emerald) !important; }
.info-card:nth-child(4n+3) .icon-badge,
.detail-card:nth-child(4n+3) .detail-icon,
.contact-card:nth-child(4n+3) .contact-icon { color: var(--brand-amber) !important; }
.info-card:nth-child(4n+4) .icon-badge,
.detail-card:nth-child(4n+4) .detail-icon,
.contact-card:nth-child(4n+4) .contact-icon { color: var(--brand-violet) !important; }

input,
select,
textarea {
    border-color: rgba(5, 8, 22, 0.14) !important;
    background: #FFFFFF !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-cyan) !important;
    box-shadow: 0 0 0 4px rgba(0, 169, 199, 0.12) !important;
    outline: none;
}

.form-status.success,
.success-toast {
    background: linear-gradient(135deg, var(--brand-black), #0C1B35) !important;
    border-color: rgba(0, 169, 199, 0.3) !important;
    color: #FFFFFF !important;
}

.site-footer h3,
.site-footer .footer-label,
.site-footer strong {
    color: #FFFFFF !important;
}

.site-footer p,
.site-footer .footer-copy {
    color: rgba(255, 255, 255, 0.74) !important;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86) !important;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--brand-cyan-soft) !important;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.12) !important;
}

.legal-card h1,
.legal-card h2,
.form-panel h1,
.form-panel h2,
.contact-card h3,
.info-card h3,
.detail-card h3,
.faq-item summary {
    color: var(--brand-black) !important;
}

.table-card th,
.admin-table th {
    background: rgba(0, 169, 199, 0.08) !important;
    color: var(--brand-black) !important;
}

@media (max-width: 760px) {
    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }
}
/* Readability fix for dark compliance section */
.home-compliance.section-dark {
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 14%, rgba(0, 169, 199, 0.16), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(245, 196, 0, 0.08), transparent 22%),
        linear-gradient(135deg, #050816 0%, #080B1F 58%, #0B1430 100%) !important;
    color: #FFFFFF !important;
}

.home-compliance.section-dark::before {
    opacity: 0.18 !important;
    z-index: 0;
}

.home-compliance.section-dark > .container {
    position: relative;
    z-index: 2;
}

.home-compliance .section-heading,
.home-compliance .section-heading.centered {
    max-width: 860px;
}

.home-compliance .section-heading .eyebrow {
    color: #FDE68A !important;
    background: rgba(245, 196, 0, 0.12) !important;
    border-color: rgba(245, 196, 0, 0.34) !important;
}

.home-compliance .section-heading h2 {
    color: #FFFFFF !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.home-compliance .section-heading .section-copy,
.home-compliance .section-copy {
    color: rgba(255, 255, 255, 0.82) !important;
    text-shadow: none !important;
}

.home-compliance .trust-grid,
.home-compliance .compliance-grid {
    position: relative;
    z-index: 3;
    gap: 24px;
}

.home-compliance .trust-card,
.section-dark.home-compliance .trust-card {
    background: rgba(255, 255, 255, 0.085) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-top: 4px solid var(--trust-accent, #00A9C7) !important;
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(16px);
}

.home-compliance .trust-card strong,
.section-dark.home-compliance .trust-card strong {
    color: #FFFFFF !important;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: none !important;
}

.home-compliance .trust-card span,
.section-dark.home-compliance .trust-card span {
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.75;
    text-shadow: none !important;
}

.home-compliance .trust-card:hover,
.section-dark.home-compliance .trust-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(141, 235, 255, 0.34) !important;
    border-top-color: var(--trust-accent, #00A9C7) !important;
    box-shadow: 0 26px 68px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 760px) {
    .home-compliance .trust-grid,
    .home-compliance .compliance-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Logo color alignment via CSS only */
.header-logo,
.footer-logo {
    position: relative;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.header-logo::after,
.footer-logo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--brand-cyan, #00A9C7), transparent);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.brand-image-header {
    filter: brightness(0) saturate(100%) invert(5%) sepia(29%) saturate(1700%) hue-rotate(203deg) brightness(84%) contrast(104%);
    transition: filter 0.24s ease, transform 0.24s ease;
}

.header-logo:hover .brand-image-header,
.header-logo:focus-visible .brand-image-header {
    filter: brightness(0) saturate(100%) invert(44%) sepia(83%) saturate(1518%) hue-rotate(152deg) brightness(94%) contrast(101%);
    transform: translateY(-1px);
}

.header-logo:hover::after,
.header-logo:focus-visible::after,
.footer-logo:hover::after,
.footer-logo:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-image-footer {
    filter: brightness(0) invert(1);
    transition: filter 0.24s ease, transform 0.24s ease;
}

.footer-logo:hover .brand-image-footer,
.footer-logo:focus-visible .brand-image-footer {
    filter: brightness(0) saturate(100%) invert(82%) sepia(47%) saturate(930%) hue-rotate(144deg) brightness(103%) contrast(102%);
    transform: translateY(-1px);
}
/* Final brand-aligned palette: black/navy + cyan + minimal amber */
:root {
    --brand-black: #050816;
    --brand-navy: #080B1F;
    --brand-navy-soft: #0B1430;
    --brand-charcoal: #111827;
    --brand-muted: #64748B;
    --brand-paper: #F7F9FC;
    --brand-surface: #FFFFFF;
    --brand-line: #E2E8F0;
    --brand-cyan: #00A9C7;
    --brand-cyan-dark: #0788A0;
    --brand-cyan-soft: #8DEBFF;
    --brand-amber: #F5C400;
}

body {
    background:
        radial-gradient(circle at 92% 4%, rgba(0, 169, 199, 0.08), transparent 24%),
        linear-gradient(180deg, #FFFFFF 0%, var(--brand-paper) 100%) !important;
    color: var(--brand-charcoal) !important;
}

.site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(5, 8, 22, 0.1) !important;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985) !important;
    box-shadow: 0 18px 44px rgba(5, 8, 22, 0.12) !important;
}

.nav a,
.site-nav a {
    color: var(--brand-black) !important;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--brand-cyan-dark) !important;
}

.hero.hero-network,
.hero.hero-fullbleed {
    background:
        linear-gradient(90deg, rgba(5, 8, 22, 0.94) 0%, rgba(8, 11, 31, 0.84) 48%, rgba(0, 169, 199, 0.38) 100%),
        radial-gradient(circle at 78% 18%, rgba(141, 235, 255, 0.22), transparent 28%),
        var(--brand-black) !important;
}

.hero.hero-network::after {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-amber), transparent) !important;
}

.hero .eyebrow,
.hero-copy-full .eyebrow,
.eyebrow,
.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow {
    color: var(--brand-cyan-dark) !important;
    border-color: rgba(0, 169, 199, 0.26) !important;
    background: rgba(0, 169, 199, 0.08) !important;
}

.hero .eyebrow,
.hero-copy-full .eyebrow,
.section-dark .eyebrow,
.home-story-clean .eyebrow,
.home-compliance .section-heading .eyebrow {
    color: var(--brand-cyan-soft) !important;
    border-color: rgba(141, 235, 255, 0.4) !important;
    background: rgba(0, 169, 199, 0.12) !important;
}

.section-heading::after,
.home-process .section-heading::after,
.home-industries .section-heading::after,
.home-benefits .section-heading::after,
.home-compliance .section-heading::after {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-amber)) !important;
}

.button-primary,
.hero .button-primary,
.site-header .button-primary,
button[type="submit"] {
    background: linear-gradient(135deg, var(--brand-black) 0%, #0C1B35 58%, var(--brand-cyan-dark) 100%) !important;
    border-color: rgba(0, 169, 199, 0.38) !important;
    color: #FFFFFF !important;
    box-shadow: 0 16px 38px rgba(5, 8, 22, 0.22), 0 10px 26px rgba(0, 169, 199, 0.14) !important;
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
    background: linear-gradient(135deg, #07101F 0%, #0F2B45 56%, var(--brand-cyan) 100%) !important;
    box-shadow: 0 22px 48px rgba(5, 8, 22, 0.26), 0 14px 34px rgba(0, 169, 199, 0.18) !important;
}

.button-secondary:not(.hero .button-secondary) {
    color: var(--brand-black) !important;
    border-color: rgba(5, 8, 22, 0.16) !important;
    background: #FFFFFF !important;
}

.button-secondary:not(.hero .button-secondary):hover,
.button-secondary:not(.hero .button-secondary):focus-visible {
    border-color: var(--brand-cyan) !important;
    background: rgba(0, 169, 199, 0.08) !important;
}

.section-alt,
.section-muted,
.legal-section,
.admin-section,
.home-benefits {
    background:
        radial-gradient(circle at 90% 12%, rgba(0, 169, 199, 0.06), transparent 22%),
        linear-gradient(180deg, #FFFFFF 0%, var(--brand-paper) 100%) !important;
}

.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card,
.detail-card,
.contact-card,
.faq-item,
.admin-card,
.home-proof-grid,
.home-proof-item {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(5, 8, 22, 0.1) !important;
    box-shadow: 0 16px 38px rgba(5, 8, 22, 0.07) !important;
}

.info-card:hover,
.form-panel:hover,
.legal-card:hover,
.table-card:hover,
.cta-panel:hover,
.mini-card:hover,
.trust-card:hover,
.stat-card:hover,
.detail-card:hover,
.contact-card:hover,
.faq-item:hover,
.admin-card:hover,
.home-proof-item:hover {
    border-color: rgba(0, 169, 199, 0.34) !important;
    box-shadow: 0 24px 58px rgba(5, 8, 22, 0.12), 0 10px 28px rgba(0, 169, 199, 0.08) !important;
}

.icon-badge,
.card-icon,
.step-icon,
.detail-icon,
.contact-icon,
.industry-visual {
    background: linear-gradient(135deg, rgba(0, 169, 199, 0.12), rgba(141, 235, 255, 0.14)) !important;
    border-color: rgba(0, 169, 199, 0.18) !important;
    color: var(--brand-cyan-dark) !important;
}

.home-process .info-card,
.home-industries .info-card,
.home-benefits .mini-card,
.home-compliance .trust-card {
    --card-accent: var(--brand-cyan) !important;
    --industry-accent: var(--brand-cyan) !important;
    --benefit-accent: var(--brand-cyan) !important;
    --trust-accent: var(--brand-cyan) !important;
    --story-accent: var(--brand-cyan) !important;
}

.home-process .info-card,
.home-industries .info-card {
    border-top-color: var(--brand-cyan) !important;
}

.home-industries .info-card {
    background:
        radial-gradient(circle at 88% 12%, rgba(0, 169, 199, 0.1), transparent 32%),
        #FFFFFF !important;
}

.home-industries .info-card:hover .industry-visual,
.home-process .info-card:hover .icon-badge {
    background: var(--brand-cyan) !important;
    color: #FFFFFF !important;
}

.home-benefits .mini-card {
    border-left-color: var(--brand-cyan) !important;
    background: linear-gradient(90deg, rgba(0, 169, 199, 0.07), #FFFFFF 64%) !important;
}

.home-proof-item span,
.home-proof-item:nth-child(1) span,
.home-proof-item:nth-child(2) span,
.home-proof-item:nth-child(3) span {
    color: var(--brand-cyan-dark) !important;
}

.home-story-clean,
.section-dark,
.site-footer,
.home-compliance.section-dark {
    background:
        radial-gradient(circle at 18% 14%, rgba(0, 169, 199, 0.16), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(245, 196, 0, 0.07), transparent 22%),
        linear-gradient(135deg, var(--brand-black) 0%, var(--brand-navy) 62%, var(--brand-navy-soft) 100%) !important;
}

.home-story-clean .story-icon {
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-cyan-soft)) !important;
    color: var(--brand-black) !important;
}

.home-story-clean .story-number {
    background: var(--brand-amber) !important;
    color: var(--brand-black) !important;
}

.home-story-clean .story-step,
.home-compliance .trust-card,
.section-dark.home-compliance .trust-card {
    background: rgba(255, 255, 255, 0.085) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    border-top-color: var(--brand-cyan) !important;
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22) !important;
}

.home-story-clean .story-step:hover,
.home-compliance .trust-card:hover,
.section-dark.home-compliance .trust-card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(141, 235, 255, 0.34) !important;
    border-top-color: var(--brand-cyan) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-cyan) !important;
    box-shadow: 0 0 0 4px rgba(0, 169, 199, 0.12) !important;
}

a {
    color: var(--brand-cyan-dark) !important;
}

a:hover,
a:focus-visible {
    color: var(--brand-black) !important;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--brand-cyan-soft) !important;
}

.header-logo:hover .brand-image-header,
.header-logo:focus-visible .brand-image-header {
    filter: brightness(0) saturate(100%) invert(44%) sepia(83%) saturate(1518%) hue-rotate(152deg) brightness(94%) contrast(101%) !important;
}
/* Remove proof strip and logo color effects */
.home-proof-band,
.home-proof-grid,
.home-proof-item {
    display: none !important;
}

.header-logo::after,
.footer-logo::after {
    display: none !important;
    opacity: 0 !important;
}

.brand-image-header,
.header-logo:hover .brand-image-header,
.header-logo:focus-visible .brand-image-header,
.site-header.is-scrolled .brand-image-header {
    filter: none !important;
    transform: none !important;
}

.brand-image-footer,
.footer-logo:hover .brand-image-footer,
.footer-logo:focus-visible .brand-image-footer {
    filter: none !important;
    transform: none !important;
}

.header-logo:hover,
.header-logo:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
    transform: none !important;
}
/* Black + ivory refinement */
:root {
    --tone-black: #111111;
    --tone-charcoal: #1F1F1F;
    --tone-ivory: #F7F3EC;
    --tone-ivory-soft: #FBF8F2;
    --tone-stone: #D6D0C4;
    --tone-muted: #6B665E;
    --tone-accent: #C2A878;
}

body {
    background: linear-gradient(180deg, var(--tone-ivory-soft) 0%, var(--tone-ivory) 100%) !important;
    color: var(--tone-black) !important;
}

.site-header {
    background: rgba(251, 248, 242, 0.94) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}

.site-header.is-scrolled {
    background: rgba(251, 248, 242, 0.985) !important;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1) !important;
}

.nav a,
.site-nav a,
a {
    color: var(--tone-black) !important;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
a:hover,
a:focus-visible {
    color: var(--tone-accent) !important;
}

.hero.hero-network,
.hero.hero-fullbleed,
.section-dark,
.site-footer,
.home-story-clean,
.home-compliance.section-dark {
    background:
        radial-gradient(circle at 84% 12%, rgba(194, 168, 120, 0.14), transparent 24%),
        linear-gradient(135deg, #111111 0%, #1C1C1C 55%, #26221D 100%) !important;
}

.hero.hero-network::after,
.section-heading::after,
.home-process .section-heading::after,
.home-industries .section-heading::after,
.home-benefits .section-heading::after,
.home-compliance .section-heading::after {
    background: linear-gradient(90deg, var(--tone-accent), #E5D1AB) !important;
}

.hero .eyebrow,
.hero-copy-full .eyebrow,
.section-dark .eyebrow,
.home-story-clean .eyebrow,
.home-compliance .section-heading .eyebrow {
    color: #F2E7D2 !important;
    background: rgba(194, 168, 120, 0.12) !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
}

.eyebrow,
.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow {
    color: #8B6F48 !important;
    background: rgba(194, 168, 120, 0.08) !important;
    border-color: rgba(194, 168, 120, 0.24) !important;
}

.button-primary,
.hero .button-primary,
.site-header .button-primary,
button[type="submit"] {
    background: linear-gradient(135deg, #111111 0%, #3A3228 100%) !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
    color: #FFFFFF !important;
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.18), 0 10px 24px rgba(194, 168, 120, 0.12) !important;
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
    background: linear-gradient(135deg, #1A1A1A 0%, #4B4134 100%) !important;
    box-shadow: 0 20px 46px rgba(17, 17, 17, 0.22), 0 14px 30px rgba(194, 168, 120, 0.16) !important;
}

.button-secondary:not(.hero .button-secondary) {
    background: #FFFDF9 !important;
    border-color: rgba(17, 17, 17, 0.14) !important;
    color: var(--tone-black) !important;
}

.button-secondary:not(.hero .button-secondary):hover,
.button-secondary:not(.hero .button-secondary):focus-visible {
    background: rgba(194, 168, 120, 0.08) !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
}

.hero .button-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 245, 230, 0.38) !important;
    color: #FFFFFF !important;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
    border-color: rgba(194, 168, 120, 0.44) !important;
    background: rgba(255, 255, 255, 0.14) !important;
}

.section-alt,
.section-muted,
.legal-section,
.admin-section,
.home-benefits {
    background: linear-gradient(180deg, #FFFDF9 0%, var(--tone-ivory) 100%) !important;
}

.info-card,
.form-panel,
.legal-card,
.table-card,
.cta-panel,
.mini-card,
.trust-card,
.stat-card,
.detail-card,
.contact-card,
.faq-item,
.admin-card {
    background: rgba(255, 252, 247, 0.98) !important;
    border-color: rgba(17, 17, 17, 0.08) !important;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06) !important;
}

.info-card:hover,
.form-panel:hover,
.legal-card:hover,
.table-card:hover,
.cta-panel:hover,
.mini-card:hover,
.trust-card:hover,
.stat-card:hover,
.detail-card:hover,
.contact-card:hover,
.faq-item:hover,
.admin-card:hover {
    border-color: rgba(194, 168, 120, 0.34) !important;
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.1), 0 10px 28px rgba(194, 168, 120, 0.08) !important;
}

.icon-badge,
.card-icon,
.step-icon,
.detail-icon,
.contact-icon,
.industry-visual,
.story-icon {
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.12), rgba(229, 209, 171, 0.18)) !important;
    border-color: rgba(194, 168, 120, 0.24) !important;
    color: #7A5E39 !important;
}

.home-industries .info-card,
.home-benefits .mini-card {
    background: linear-gradient(180deg, #FFFDF9 0%, #F7F3EC 100%) !important;
}

.home-benefits .mini-card {
    border-left-color: var(--tone-accent) !important;
}

.home-story-clean .story-step,
.home-compliance .trust-card,
.section-dark.home-compliance .trust-card {
    background: rgba(255, 248, 236, 0.08) !important;
    border-color: rgba(255, 240, 220, 0.14) !important;
    border-top-color: var(--tone-accent) !important;
}

.home-story-clean .story-number {
    background: var(--tone-accent) !important;
    color: var(--tone-black) !important;
}

.home-story-clean .story-step h3,
.home-compliance .trust-card strong,
.home-compliance .section-heading h2,
.section-dark .section-heading h2 {
    color: #FFFFFF !important;
}

.home-story-clean .story-step p,
.home-compliance .trust-card span,
.home-compliance .section-copy,
.section-dark .section-copy,
.site-footer p,
.site-footer .footer-copy {
    color: rgba(255, 247, 235, 0.76) !important;
}

input,
select,
textarea {
    background: #FFFDF9 !important;
    border-color: rgba(17, 17, 17, 0.12) !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(194, 168, 120, 0.48) !important;
    box-shadow: 0 0 0 4px rgba(194, 168, 120, 0.12) !important;
}

.site-footer a,
.footer-contact a,
.footer-text-link {
    color: rgba(255, 247, 235, 0.88) !important;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-text-link:hover,
.footer-text-link:focus-visible {
    color: #F2E7D2 !important;
}
/* Warm ivory final pass: remove blue feel and reduce heavy motion styling */
:root {
    --accent-cyan: #C2A878;
    --accent-blue: #B08E5C;
    --accent-emerald: #8E7A57;
    --accent-amber: #C2A878;
    --accent-orange: #B48A56;
    --accent-violet: #8A7966;
    --brand-cyan: #C2A878;
    --brand-cyan-dark: #8B6F48;
    --brand-cyan-soft: #E5D1AB;
}

body {
    background: linear-gradient(180deg, #FBF8F2 0%, #F7F3EC 100%) !important;
}

.page-transition {
    display: none !important;
}

.hero.hero-network,
.hero.hero-fullbleed {
    background:
        radial-gradient(circle at 84% 12%, rgba(194, 168, 120, 0.12), transparent 24%),
        linear-gradient(135deg, #111111 0%, #1C1C1C 55%, #26221D 100%) !important;
}

.hero.hero-network::after {
    background: linear-gradient(90deg, #C2A878, #E5D1AB, transparent) !important;
}

.hero.hero-network::before {
    opacity: 0.38 !important;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
a:hover,
a:focus-visible {
    color: #8B6F48 !important;
}

.button-primary,
.hero .button-primary,
.site-header .button-primary,
button[type="submit"] {
    background: linear-gradient(135deg, #111111 0%, #3A3228 100%) !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.16), 0 8px 18px rgba(194, 168, 120, 0.1) !important;
}

.button-primary:hover,
.button-primary:focus-visible,
.hero .button-primary:hover,
.hero .button-primary:focus-visible,
.site-header .button-primary:hover,
.site-header .button-primary:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
    background: linear-gradient(135deg, #1A1A1A 0%, #4B4134 100%) !important;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.2), 0 10px 24px rgba(194, 168, 120, 0.14) !important;
}

.eyebrow,
.section-heading .eyebrow,
.section-kicker,
.trust-strip .eyebrow,
.hero .eyebrow,
.hero-copy-full .eyebrow,
.section-dark .eyebrow,
.home-story-clean .eyebrow,
.home-compliance .section-heading .eyebrow {
    color: #8B6F48 !important;
    border-color: rgba(194, 168, 120, 0.24) !important;
    background: rgba(194, 168, 120, 0.08) !important;
}

.hero .eyebrow,
.hero-copy-full .eyebrow,
.section-dark .eyebrow,
.home-story-clean .eyebrow,
.home-compliance .section-heading .eyebrow {
    color: #F2E7D2 !important;
    background: rgba(194, 168, 120, 0.12) !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
}

.section-heading::after,
.home-process .section-heading::after,
.home-industries .section-heading::after,
.home-benefits .section-heading::after,
.home-compliance .section-heading::after {
    background: linear-gradient(90deg, #C2A878, #E5D1AB) !important;
}

.icon-badge,
.card-icon,
.step-icon,
.detail-icon,
.contact-icon,
.industry-visual,
.story-icon {
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.12), rgba(229, 209, 171, 0.18)) !important;
    border-color: rgba(194, 168, 120, 0.24) !important;
    color: #7A5E39 !important;
}

.home-process .info-card,
.home-industries .info-card,
.home-benefits .mini-card,
.home-compliance .trust-card,
.home-story-clean .story-step {
    border-top-color: #C2A878 !important;
    border-left-color: #C2A878 !important;
}

.home-process .info-card:hover .icon-badge,
.home-industries .info-card:hover .industry-visual,
.home-story-clean .story-icon {
    background: linear-gradient(135deg, #C2A878, #E5D1AB) !important;
    color: #111111 !important;
}

.home-benefits .mini-card {
    background: linear-gradient(90deg, rgba(194, 168, 120, 0.07), #FFFDF9 64%) !important;
}

.home-story-clean,
.section-dark,
.site-footer,
.home-compliance.section-dark {
    background:
        radial-gradient(circle at 84% 12%, rgba(194, 168, 120, 0.1), transparent 22%),
        linear-gradient(135deg, #111111 0%, #1C1C1C 55%, #26221D 100%) !important;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-text-link:hover,
.footer-text-link:focus-visible {
    color: #F2E7D2 !important;
}

[data-reveal] {
    transform: none !important;
}
/* Fix About page Why Insperte readability */
.about-why-section {
    background:
        radial-gradient(circle at 82% 14%, rgba(194, 168, 120, 0.12), transparent 24%),
        linear-gradient(135deg, #111111 0%, #1C1C1C 55%, #26221D 100%) !important;
}

.about-why-section .section-heading {
    max-width: 820px;
}

.about-why-section .section-heading h2 {
    color: #FFFFFF !important;
}

.about-why-section .trust-grid {
    gap: 22px;
}

.about-why-section .trust-card {
    background: rgba(255, 252, 247, 0.96) !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-top: 4px solid #C2A878 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16) !important;
    backdrop-filter: none !important;
}

.about-why-section .trust-card strong {
    color: #111111 !important;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-why-section .trust-card span {
    color: #6B665E !important;
    line-height: 1.7;
}

.about-why-section .trust-card:hover {
    background: #FFFDF9 !important;
    border-color: rgba(194, 168, 120, 0.34) !important;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2) !important;
}
/* Richer page sections and submission modal */
.contact-details-stack,
.detail-stack,
.feature-list {
    align-content: start;
}

.feature-item strong {
    display: block;
    margin-bottom: 6px;
}

.feature-item span {
    display: block;
}

.submission-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.submission-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.submission-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.56);
    backdrop-filter: blur(4px);
}

.submission-modal__dialog {
    position: relative;
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 42px);
    border-radius: 28px;
    background: linear-gradient(180deg, #FFFDF9 0%, #F7F3EC 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 32px 90px rgba(17, 17, 17, 0.24);
    text-align: center;
}

.submission-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(194, 168, 120, 0.12);
    border: 1px solid rgba(194, 168, 120, 0.28);
    color: #8B6F48;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.submission-modal__title {
    margin: 0 0 12px;
    color: #111111;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.submission-modal__message {
    margin: 0 auto 28px;
    max-width: 48ch;
    color: #6B665E;
    font-size: 1.02rem;
    line-height: 1.8;
}

.submission-modal__button {
    min-width: 180px;
}

.submission-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.06);
    color: #111111;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.submission-modal__close:hover,
.submission-modal__close:focus-visible {
    background: rgba(17, 17, 17, 0.12);
}

@media (max-width: 640px) {
    .submission-modal {
        padding: 16px;
    }

    .submission-modal__dialog {
        border-radius: 22px;
        padding: 24px 20px 22px;
    }
}
/* Creative inline content icons */
.content-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(194, 168, 120, 0.12), rgba(229, 209, 171, 0.18));
    border: 1px solid rgba(194, 168, 120, 0.24);
    color: #7A5E39;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.content-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.content-icon-large {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.info-card:hover .content-icon,
.detail-card:hover .content-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.1);
}
/* Subtle content hover padding effect */
.info-card h2,
.info-card h3,
.info-card p,
.info-card .feature-list,
.detail-card h3,
.detail-card p,
.trust-card strong,
.trust-card span,
.mini-card,
.feature-item,
.content-icon {
    transition: padding 0.24s ease, transform 0.24s ease, margin 0.24s ease;
}

.info-card:hover h2,
.info-card:hover h3,
.info-card:hover p,
.info-card:hover .feature-list,
.detail-card:hover h3,
.detail-card:hover p,
.trust-card:hover strong,
.trust-card:hover span {
    padding-left: 6px;
}

.info-card:hover .feature-item,
.detail-card:hover .feature-item {
    padding-left: 8px;
}

.info-card:hover .content-icon,
.detail-card:hover .content-icon {
    margin-left: 4px;
}

.mini-card:hover {
    padding-left: 20px;
    padding-right: 20px;
}.admin-filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.admin-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}
.admin-filter-form label {
    display: grid;
    gap: 6px;
    min-width: 150px;
}
.admin-filter-form label span,
.form-help {
    font-size: 0.9rem;
    color: var(--muted);
}
.form-help {
    margin-top: -8px;
}
@media (max-width: 900px) {
    .admin-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .admin-filter-form {
        width: 100%;
    }
    .admin-filter-form label {
        min-width: 0;
        flex: 1 1 180px;
    }
}


/* Admin theme readability fix */
.admin-body {
    background: linear-gradient(180deg, #f8f5ef 0%, #fdfbf7 100%) !important;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%) !important;
    color: #e5e7eb !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-sidebar .brand,
.admin-sidebar .brand:visited {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.admin-sidebar nav a,
.admin-sidebar nav a:visited {
    color: #d1d5db !important;
    font-weight: 500 !important;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    color: #ffffff !important;
    background: rgba(194, 168, 120, 0.18) !important;
    border: 1px solid rgba(194, 168, 120, 0.24);
}

.admin-main {
    color: #111111 !important;
}

.admin-topbar h1,
.admin-topbar p,
.table-card,
.form-panel,
.security-panel {
    color: #111111 !important;
}

.table-card th,
.admin-filter-bar h2,
.form-panel h2 {
    color: #111111 !important;
}
.table-summary {
    min-width: 280px;
    max-width: 380px;
    color: #374151;
    line-height: 1.65;
    white-space: normal;
}
/* Legal and FAQ polish */
.legal-hero {
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(194, 168, 120, 0.12), transparent 30%);
    pointer-events: none;
}

.legal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.legal-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: #5b4d3a;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 26px rgba(17, 17, 17, 0.04);
}

.legal-section-shell {
    padding-top: 24px;
}

.legal-card,
.faq-card {
    position: relative;
    overflow: hidden;
}

.legal-card::before,
.faq-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(194, 168, 120, 0.95), rgba(17, 17, 17, 0.12));
}

.legal-prose {
    padding: 42px !important;
}

.legal-prose h2 {
    margin: 0 0 14px;
    padding-top: 6px;
    color: #111111 !important;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-prose h2 + p {
    margin-top: 0;
}

.legal-prose p,
.legal-prose li {
    color: #4b5563 !important;
    line-height: 1.85;
    font-size: 1.02rem;
}

.legal-prose p {
    margin: 0 0 22px;
}

.legal-prose ul {
    margin: 0 0 22px;
    padding-left: 20px;
}

.legal-prose li {
    margin-bottom: 10px;
}

.legal-prose > * {
    animation: legalFadeUp 0.55s ease both;
}

.enhanced-faq-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.enhanced-faq-item {
    padding: 0 !important;
    overflow: hidden;
}

.enhanced-faq-item summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 22px 24px;
    font-size: 1.02rem;
}

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

.faq-index {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 168, 120, 0.14);
    border: 1px solid rgba(194, 168, 120, 0.28);
    color: #7a6243;
    font-weight: 700;
    flex-shrink: 0;
}

.enhanced-faq-item:nth-child(1) .faq-index::before { content: "01"; }
.enhanced-faq-item:nth-child(2) .faq-index::before { content: "02"; }
.enhanced-faq-item:nth-child(3) .faq-index::before { content: "03"; }
.enhanced-faq-item:nth-child(4) .faq-index::before { content: "04"; }
.enhanced-faq-item:nth-child(5) .faq-index::before { content: "05"; }
.enhanced-faq-item:nth-child(6) .faq-index::before { content: "06"; }
.enhanced-faq-item:nth-child(7) .faq-index::before { content: "07"; }
.enhanced-faq-item:nth-child(8) .faq-index::before { content: "08"; }
.enhanced-faq-item:nth-child(9) .faq-index::before { content: "09"; }
.enhanced-faq-item:nth-child(n+10) .faq-index::before { content: "10+"; }

.faq-question {
    color: #111111;
    font-weight: 600;
    line-height: 1.5;
}

.faq-toggle {
    width: 14px;
    height: 14px;
    border-right: 2px solid #7a6243;
    border-bottom: 2px solid #7a6243;
    transform: rotate(45deg);
    transition: transform 0.24s ease;
}

.enhanced-faq-item[open] .faq-toggle {
    transform: rotate(-135deg);
}

.faq-answer {
    padding: 0 24px 24px 78px;
    color: #4b5563 !important;
    line-height: 1.8;
    animation: faqContentFade 0.28s ease;
}

.enhanced-faq-item:hover,
.enhanced-faq-item[open],
.legal-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.08), 0 10px 26px rgba(194, 168, 120, 0.06) !important;
    border-color: rgba(194, 168, 120, 0.28) !important;
}

@keyframes faqContentFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes legalFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .legal-prose {
        padding: 28px !important;
    }

    .enhanced-faq-item summary {
        padding: 20px;
        grid-template-columns: auto 1fr auto;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
/* Header nav refinement inspired by user reference */
.site-header {
    background: rgba(251, 248, 242, 0.97) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
}

.site-header.is-scrolled {
    background: rgba(251, 248, 242, 0.99) !important;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08) !important;
}

.nav-wrap {
    min-height: 92px;
    gap: 30px;
}

.nav {
    gap: 34px !important;
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 0 !important;
    font-size: 0.92rem;
    font-weight: 500 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2b2b2b !important;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: background 0.24s ease, transform 0.24s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: #8B6F48 !important;
}

.nav a:hover::after,
.nav a:focus-visible::after {
    background: rgba(194, 168, 120, 0.55);
    transform: scaleX(1);
}

.nav a.active {
    color: #8B6F48 !important;
}

.nav a.active::after {
    background: #C2A878;
    transform: scaleX(1);
}

.nav-cta {
    border-radius: 999px !important;
    padding: 13px 22px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .nav-wrap {
        min-height: auto;
        gap: 16px;
    }

    .nav {
        gap: 18px !important;
    }

    .nav a {
        font-size: 0.84rem;
        letter-spacing: 0.06em;
    }
}
/* Industries section refinement inspired by user reference */
.home-industries {
    background: linear-gradient(180deg, #FFFDF9 0%, #FBF8F2 100%) !important;
}

.home-industries .section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.home-industries .section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    color: #111111 !important;
}

.home-industries .section-heading::after {
    width: 58px !important;
    height: 3px !important;
    margin-top: 14px;
    background: #C2A878 !important;
}

.home-industries .card-grid.three-up {
    gap: 18px;
}

.home-industries .info-card {
    background: rgba(255, 252, 247, 0.98) !important;
    border: 1px solid rgba(194, 168, 120, 0.48) !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.05) !important;
    padding: 20px 18px 22px !important;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transform: none !important;
}

.home-industries .info-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(194, 168, 120, 0.72) !important;
    box-shadow: 0 22px 46px rgba(17, 17, 17, 0.08) !important;
}

.home-industries .industry-visual {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    background: rgba(194, 168, 120, 0.08) !important;
    border: 1px solid rgba(194, 168, 120, 0.22) !important;
    color: #8B6F48 !important;
    box-shadow: none !important;
    transform: none !important;
}

.home-industries .industry-visual svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.85;
}

.home-industries .info-card:hover .industry-visual {
    background: rgba(194, 168, 120, 0.14) !important;
    border-color: rgba(194, 168, 120, 0.38) !important;
    color: #7A5E39 !important;
    transform: translateY(-1px) !important;
}

.home-industries .info-card h3 {
    margin: 2px 0 2px;
    font-size: 1.18rem;
    color: #111111 !important;
}

.home-industries .info-card p {
    margin: 0;
    color: #6B7280 !important;
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .home-industries .card-grid.three-up {
        grid-template-columns: 1fr !important;
    }

    .home-industries .info-card {
        min-height: auto;
    }
}