/* =============================================
   INTEGRIUM DESIGN TOKENS
   Brand Identity v1.0 — aligned with integrium-ui-demo
   ============================================= */
@font-face {
  font-family: 'Nexa Black';
  src: url('fonts/nexa-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa Book';
  src: url('fonts/nexa-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --int-navy-900: #011b31;
  --int-navy-800: #0a2942;
  --int-navy-700: #143752;
  --int-navy-600: #2a4a66;
  --int-blue-700: #004070;
  --int-blue-600: #00508c;
  --int-blue-500: #0066b3;
  --int-blue-400: #3399d6;
  --int-blue-300: #66b3e0;
  --int-blue-200: #b3d6ec;
  --int-blue-100: #e8f1f8;
  --int-silver-600: #5b6b7d;
  --int-silver-500: #b3bfcc;
  --int-silver-400: #c2cdd9;
  --int-silver-300: #d4dce6;
  --int-silver-200: #e1e7ee;
  --int-silver-100: #f4f6f8;
  --int-white: #ffffff;
  --int-success: #0d7a4a;
  --int-warning: #c4841d;
  --int-error: #c42b2b;

  --font-display: 'Nexa Black', system-ui, -apple-system, sans-serif;
  --font-heading: 'Nexa Book', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(1, 27, 49, 0.05);
  --shadow-md: 0 4px 8px rgba(1, 27, 49, 0.08);
  --shadow-lg: 0 8px 24px rgba(1, 27, 49, 0.12);
  --shadow-xl: 0 16px 48px rgba(1, 27, 49, 0.16);
  --shadow-card: 0 1px 3px rgba(1, 27, 49, 0.08);

  --transition-fast: 100ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 400ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--int-navy-900);
  background: var(--int-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =============================================
   NAVIGATION — REDESIGNED
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: var(--int-white);
  border-bottom: 1px solid var(--int-silver-300);
  transition: box-shadow 0.35s ease, height 0.35s ease;
}

.nav.scrolled {
  height: 68px;
  box-shadow: 0 4px 16px rgba(1, 27, 49, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  padding: 4px;
}

.nav-tabs a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--int-navy-700);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.nav-tabs a:hover {
  color: var(--int-navy-900);
  background: var(--int-silver-100);
}

.nav-tabs a.active {
  color: var(--int-blue-600);
  background: var(--int-blue-100);
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--int-navy-700);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--int-blue-600);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.nav-phone:hover svg {
  opacity: 1;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--int-silver-300);
}

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--int-blue-600);
  color: var(--int-white);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
}

.nav-cta:hover {
  background: var(--int-blue-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 80, 140, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: var(--int-silver-100);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--int-navy-900);
  position: absolute;
  left: 9px;
  transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }

.mobile-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-8);
  gap: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--int-navy-700);
  text-decoration: none;
  padding: 12px 32px;
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  width: 280px;
  text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--int-navy-900);
  background: var(--int-silver-100);
}

.mobile-menu a.active {
  color: var(--int-blue-600);
  background: var(--int-blue-100);
}

.mobile-menu .mobile-cta {
  margin-top: var(--space-5);
  background: var(--int-blue-600);
  color: var(--int-white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-menu .mobile-cta:hover {
  background: var(--int-blue-500);
  color: var(--int-white);
}

.mobile-menu .mobile-phone {
  margin-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 16px;
  color: var(--int-navy-700);
  background: none;
}

.mobile-menu .mobile-phone svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--int-blue-300);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--int-blue-600);
  color: var(--int-white);
}

.btn-primary:hover {
  background: var(--int-blue-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 80, 140, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--int-white);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  background: transparent;
  border: 2px solid var(--int-silver-300);
  color: var(--int-navy-900);
}

.btn-secondary-dark:hover {
  border-color: var(--int-blue-600);
  color: var(--int-blue-600);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--int-white);
  color: var(--int-navy-900);
  font-size: 15px;
  padding: 16px 36px;
}

.btn-cta:hover {
  background: var(--int-silver-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
  padding: var(--space-9) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--int-blue-600);
  margin-bottom: var(--space-3);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--int-navy-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--int-silver-600);
}

/* =============================================
   PAGE HERO (for inner pages)
   ============================================= */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--int-navy-900);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--int-blue-400) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--int-blue-300) 0%, transparent 40%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero .section-eyebrow {
  color: var(--int-blue-400);
  text-align: left;
}

.page-hero .section-title {
  color: var(--int-white);
  font-size: clamp(32px, 3.6vw, 48px);
  text-align: left;
}

.page-hero .section-desc {
  color: var(--int-silver-400);
  text-align: left;
  max-width: 560px;
}

/* =============================================
   FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.feature-card {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--int-blue-600), var(--int-blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  border-color: var(--int-blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--int-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--int-blue-600);
  margin-bottom: var(--space-5);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--int-navy-700);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works-section {
  background: var(--int-navy-900);
  color: var(--int-white);
  position: relative;
  overflow: hidden;
}

.how-it-works-section .section-eyebrow { color: var(--int-blue-400); }
.how-it-works-section .section-title { color: var(--int-white); }
.how-it-works-section .section-desc { color: var(--int-silver-400); }

.how-bg-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 80, 140, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--int-blue-600), var(--int-blue-400), var(--int-blue-600));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--int-blue-600), var(--int-blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--int-white);
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 80, 140, 0.4);
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--space-2);
  color: var(--int-white);
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--int-silver-400);
}

/* =============================================
   RESULTS / STATS
   ============================================= */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7);
  align-items: center;
}

.results-content { max-width: 480px; }
.results-content .section-eyebrow { text-align: left; }
.results-content .section-title { text-align: left; }
.results-content .section-desc { text-align: left; margin-bottom: var(--space-6); }

.results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 16px;
  color: var(--int-navy-700);
  line-height: 1.5;
}

.results-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 122, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--int-success);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.stat-card {
  background: linear-gradient(135deg, var(--int-navy-900), var(--int-navy-800));
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--int-blue-600), var(--int-blue-400));
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: var(--int-white);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--int-silver-400);
  line-height: 1.4;
}

/* =============================================
   COMPLIANCE
   ============================================= */
.compliance-banner {
  background: var(--int-blue-100);
  padding: var(--space-8) 0;
}

.compliance-inner {
  display: flex;
  align-items: center;
  gap: var(--space-7);
}

.compliance-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--int-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--int-blue-600);
}

.compliance-content { flex: 1; }

.compliance-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-2);
}

.compliance-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--int-navy-700);
  max-width: 600px;
}

.compliance-badges {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--int-white);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--int-navy-900);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.compliance-badge svg { color: var(--int-success); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  padding: var(--space-9) 0;
  background: var(--int-navy-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--int-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 18px;
  line-height: 1.65;
  color: var(--int-silver-400);
  margin-bottom: var(--space-7);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--int-navy-800);
}

.form-input {
  height: 48px;
  padding: 0 var(--space-4);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--int-navy-900);
  background: var(--int-white);
  border: 1px solid var(--int-silver-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-input:focus {
  outline: none;
  border-color: var(--int-blue-600);
  box-shadow: 0 0 0 3px rgba(0, 80, 140, 0.15);
}

.form-input::placeholder { color: var(--int-silver-500); }

textarea.form-input {
  height: auto;
  min-height: 120px;
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}

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

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--int-navy-900);
  padding: var(--space-8) 0 var(--space-6);
  color: var(--int-silver-500);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-7);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--int-silver-500);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--int-white);
  margin-bottom: var(--space-4);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }

.footer-col a {
  font-size: 14px;
  color: var(--int-silver-500);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-col a:hover { color: var(--int-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--int-silver-600);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--int-silver-500);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--int-blue-600);
  color: var(--int-white);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  padding: var(--space-8) 0;
  background: var(--int-silver-100);
  border-bottom: 1px solid var(--int-silver-200);
}

.trust-bar-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--int-silver-500);
  margin-bottom: var(--space-6);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  opacity: 0.4;
}

.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--int-navy-700);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* =============================================
   HERO (Home page)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--int-navy-900) 0%, var(--int-navy-800) 35%, var(--int-blue-700) 70%, var(--int-blue-600) 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--int-blue-400) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--int-blue-300) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, var(--int-blue-500) 0%, transparent 45%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: radial-gradient(circle, rgba(0, 80, 140, 0.25) 0%, transparent 70%); }
.hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -50px; background: radial-gradient(circle, rgba(51, 153, 214, 0.15) 0%, transparent 70%); }
.hero-orb-3 { width: 200px; height: 200px; top: 40%; right: 20%; background: radial-gradient(circle, rgba(179, 191, 204, 0.1) 0%, transparent 70%); animation: float 8s ease-in-out infinite; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 160px 0 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(0, 80, 140, 0.2);
  border: 1px solid rgba(0, 102, 179, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--int-blue-300);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-6);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--int-blue-400);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.08;
  color: var(--int-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--int-blue-400), var(--int-blue-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--int-silver-400);
  max-width: 560px;
  margin-bottom: var(--space-7);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 1s;
}

.hero-rings { position: absolute; inset: 0; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(0, 102, 179, 0.15); }
.hero-ring-1 { inset: 0; animation: spin-slow 30s linear infinite; }
.hero-ring-2 { inset: 60px; border-color: rgba(51, 153, 214, 0.12); animation: spin-slow 25s linear infinite reverse; }
.hero-ring-3 { inset: 120px; border-color: rgba(179, 191, 204, 0.1); animation: spin-slow 20s linear infinite; }
.hero-ring-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--int-blue-400); box-shadow: 0 0 12px rgba(51, 153, 214, 0.5); }
.hero-ring-1 .hero-ring-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
.hero-ring-2 .hero-ring-dot { bottom: 20%; right: 0; transform: translate(50%, 50%); }
.hero-ring-3 .hero-ring-dot { top: 30%; left: 0; transform: translate(-50%, -50%); }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-center-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.blog-card {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--int-blue-100);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--int-navy-900), var(--int-blue-700));
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(1, 27, 49, 0.4) 100%);
}

.blog-card-image-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 30% 40%, var(--int-blue-400) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--int-blue-300) 0%, transparent 40%);
}

.blog-card-category {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 1;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--int-white);
  background: rgba(0, 80, 140, 0.7);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 13px;
  color: var(--int-silver-500);
  margin-bottom: var(--space-2);
}

.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
}

.blog-card:hover .blog-card-title {
  color: var(--int-blue-600);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--int-navy-700);
  flex: 1;
}

.blog-card-footer {
  padding: 0 var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.blog-card-author {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--int-navy-800);
}

.blog-card-read {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--int-blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card:hover .blog-card-read {
  gap: 8px;
}

.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--int-white);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.blog-featured:hover {
  border-color: var(--int-blue-100);
  box-shadow: var(--shadow-lg);
}

.blog-featured .blog-card-image {
  height: 100%;
  min-height: 320px;
}

.blog-featured .blog-card-body {
  padding: var(--space-7);
  justify-content: center;
}

.blog-featured .blog-card-title {
  font-size: 24px;
  line-height: 1.3;
}

.blog-featured .blog-card-excerpt {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .blog-card-image { min-height: 220px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(155deg, var(--int-navy-900) 0%, var(--int-navy-800) 50%, var(--int-blue-700) 100%);
  overflow: hidden;
}

.article-hero .page-hero-bg,
.article-hero .page-hero-grid {
  position: absolute;
  inset: 0;
}

.article-hero .page-hero-bg {
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--int-blue-400) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--int-blue-300) 0%, transparent 40%);
}

.article-hero .page-hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.article-category {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--int-white);
  background: rgba(0, 80, 140, 0.5);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.article-date {
  font-size: 14px;
  color: var(--int-silver-400);
}

.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--int-white);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}

.article-author-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--int-blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--int-white);
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--int-white);
}

.article-read-time {
  font-size: 13px;
  color: var(--int-silver-400);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  color: var(--int-navy-900);
  margin: var(--space-7) 0 var(--space-4);
  letter-spacing: -0.01em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--int-navy-900);
  margin: var(--space-6) 0 var(--space-3);
}

.article-body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--int-navy-700);
  margin-bottom: var(--space-5);
}

.article-body ul,
.article-body ol {
  font-size: 18px;
  line-height: 1.8;
  color: var(--int-navy-700);
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.article-body li {
  margin-bottom: var(--space-2);
}

.article-body blockquote {
  border-left: 4px solid var(--int-blue-600);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-6) 0;
  background: var(--int-blue-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-body blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--int-navy-800);
  margin-bottom: 0;
}

.article-body strong {
  color: var(--int-navy-900);
  font-weight: 600;
}

.article-body .callout {
  background: var(--int-silver-100);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-6) 0;
}

.article-body .callout p {
  font-size: 16px;
  margin-bottom: 0;
}

.article-bottom-nav {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--int-silver-200);
  padding-top: var(--space-6);
}

.article-back {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--int-blue-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap 0.2s ease;
}

.article-back:hover {
  gap: var(--space-3);
}

.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-share-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--int-silver-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--int-silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--int-navy-700);
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-share a:hover {
  background: var(--int-blue-600);
  color: var(--int-white);
}

@media (max-width: 768px) {
  .article-hero { padding: 120px 0 40px; }
  .article-body { padding: var(--space-6) var(--space-5); }
  .article-body p, .article-body ul, .article-body ol { font-size: 16px; }
  .article-body h2 { font-size: 24px; }
  .article-body h3 { font-size: 20px; }
  .article-bottom-nav { flex-direction: column; gap: var(--space-4); align-items: flex-start; }
}

/* =============================================
   FEATURE DEEP-DIVES (alternating layout)
   ============================================= */
.deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--int-silver-200);
}

.deep-dive:first-child { border-top: none; }

.deep-dive.reverse .deep-dive-content { order: 2; }
.deep-dive.reverse .deep-dive-visual { order: 1; }

.deep-dive-content .section-eyebrow { text-align: left; }

.deep-dive-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  color: var(--int-navy-900);
  margin-bottom: var(--space-4);
}

.deep-dive-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--int-navy-700);
  margin-bottom: var(--space-5);
}

.deep-dive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.deep-dive-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--int-navy-700);
  line-height: 1.5;
}

.deep-dive-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--int-blue-600);
}

.deep-dive-visual {
  background: linear-gradient(135deg, var(--int-navy-900), var(--int-blue-700));
  border-radius: var(--radius-xl);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.deep-dive-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 30% 40%, var(--int-blue-400) 0%, transparent 50%);
}

.deep-dive-visual-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--int-white);
}

@media (max-width: 1024px) {
  .deep-dive { grid-template-columns: 1fr; gap: var(--space-5); }
  .deep-dive.reverse .deep-dive-content { order: 1; }
  .deep-dive.reverse .deep-dive-visual { order: 2; }
  .deep-dive-visual { min-height: 200px; }
}

/* =============================================
   INTEGRATION PARTNERS STRIP
   ============================================= */
.partners-strip {
  padding: var(--space-7) 0;
  background: var(--int-silver-100);
  border-top: 1px solid var(--int-silver-200);
  border-bottom: 1px solid var(--int-silver-200);
}

.partners-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--int-silver-500);
  margin-bottom: var(--space-5);
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
}

.partner-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--int-navy-700);
  opacity: 0.5;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison {
  padding: var(--space-9) 0;
  background: var(--int-navy-900);
  position: relative;
  overflow: hidden;
}

.comparison .section-eyebrow { color: var(--int-blue-400); }
.comparison .section-title { color: var(--int-white); }
.comparison .section-desc { color: var(--int-silver-400); }

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-6);
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  font-size: 15px;
  text-align: left;
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--int-navy-800);
  color: var(--int-silver-300);
}

.comparison-table thead th:last-child,
.comparison-table thead .comparison-highlight {
  background: var(--int-blue-600);
  color: var(--int-white);
  text-align: center;
}

.comparison-table thead th:nth-child(2) {
  text-align: center;
}

.comparison-table tbody td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--int-silver-200);
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody td:first-child {
  color: var(--int-white);
  font-weight: 500;
}

.comparison-table tbody td:nth-child(2) {
  text-align: center;
  color: var(--int-silver-400);
}

.comparison-table tbody td:last-child {
  text-align: center;
  background: rgba(0, 80, 140, 0.12);
  color: var(--int-white);
}

.comparison-check { color: var(--int-success); }
.comparison-x { color: var(--int-silver-500); opacity: 0.6; }
.comparison-partial { color: var(--int-warning); }

@media (max-width: 768px) {
  .comparison-table th, .comparison-table td { padding: var(--space-3); font-size: 13px; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--space-8) 0;
  background: var(--int-silver-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--int-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--int-warning);
  margin-bottom: var(--space-4);
  display: flex;
  gap: 2px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--int-navy-700);
  font-style: italic;
  flex: 1;
  margin-bottom: var(--space-5);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--int-silver-200);
  padding-top: var(--space-4);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--int-blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--int-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--int-navy-900);
}

.testimonial-role {
  font-size: 13px;
  color: var(--int-silver-600);
}

@media (max-width: 1024px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =============================================
   BEFORE / AFTER
   ============================================= */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.before-after-col {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.before-after-col.before {
  background: var(--int-silver-100);
  border: 1px solid var(--int-silver-200);
}

.before-after-col.after {
  background: linear-gradient(135deg, var(--int-navy-900), var(--int-blue-700));
  color: var(--int-white);
}

.before-after-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.before .before-after-label { color: var(--int-silver-600); }
.after .before-after-label { color: var(--int-blue-300); }

.before-after-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}

.before .before-after-item { border-color: var(--int-silver-200); color: var(--int-navy-700); }
.after .before-after-item { color: var(--int-silver-300); }

.before-after-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}

.before .before-after-value { color: var(--int-silver-500); }
.after .before-after-value { color: var(--int-white); }

@media (max-width: 768px) { .before-after-grid { grid-template-columns: 1fr; } }

/* =============================================
   TIMELINE
   ============================================= */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: var(--int-silver-300);
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: var(--space-7);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--int-blue-600);
  border: 4px solid var(--int-white);
  box-shadow: 0 0 0 2px var(--int-blue-600);
}

.timeline-week {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--int-blue-600);
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-2);
}

.timeline-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--int-navy-700);
  margin-bottom: var(--space-3);
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.timeline-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--int-navy-700);
  line-height: 1.5;
}

.timeline-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--int-blue-400);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open { border-color: var(--int-blue-400); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--int-navy-900);
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--int-blue-600); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--int-silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--int-blue-100);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: 15px;
  line-height: 1.7;
  color: var(--int-navy-700);
}

/* =============================================
   WHY INTEGRIUM (3-col pillars)
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pillar-card {
  text-align: center;
  padding: var(--space-6);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--int-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--int-blue-600);
  margin: 0 auto var(--space-4);
}

.pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
}

.pillar-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--int-navy-700);
}

@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; } }

/* =============================================
   TRUST SIGNALS (contact page)
   ============================================= */
.trust-signals {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--int-navy-700);
}

.trust-signal-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 122, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--int-success);
}

/* =============================================
   ROI CALCULATOR TEASER
   ============================================= */
.roi-section {
  background: var(--int-silver-100);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.roi-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-4);
}

.roi-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--int-navy-700);
  margin-bottom: var(--space-5);
}

.roi-math {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--int-silver-200);
  font-size: 15px;
  color: var(--int-navy-700);
}

.roi-line-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--int-navy-900);
}

.roi-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--int-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.roi-total-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--int-navy-900);
}

.roi-total-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--int-success);
}

@media (max-width: 768px) { .roi-section { grid-template-columns: 1fr; } }

/* =============================================
   REGULATORY DETAIL CARDS
   ============================================= */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.reg-card {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.reg-card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.reg-card-badge.usa { background: var(--int-blue-100); color: var(--int-blue-600); }
.reg-card-badge.canada { background: rgba(196, 43, 43, 0.1); color: var(--int-error); }
.reg-card-badge.state { background: rgba(196, 132, 29, 0.12); color: var(--int-warning); }

.reg-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
}

.reg-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--int-navy-700);
  margin-bottom: var(--space-4);
}

.reg-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.reg-card li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--int-navy-700);
  line-height: 1.5;
}

.reg-card li svg { flex-shrink: 0; margin-top: 3px; color: var(--int-blue-600); }

@media (max-width: 768px) { .reg-grid { grid-template-columns: 1fr; } }

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.pricing-card {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.featured {
  border: 2px solid var(--int-blue-600);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--int-blue-600);
  color: var(--int-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--int-blue-600);
  margin-bottom: var(--space-2);
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.pricing-currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--int-navy-900);
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  color: var(--int-navy-900);
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 15px;
  color: var(--int-silver-500);
  margin-left: var(--space-1);
}

.pricing-note {
  font-size: 14px;
  color: var(--int-silver-500);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--int-silver-200);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--int-navy-700);
  line-height: 1.45;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--int-success);
}

.pricing-features li.disabled {
  color: var(--int-silver-400);
}

.pricing-features li.disabled svg {
  color: var(--int-silver-300);
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

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

.pricing-card.featured .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
}

.pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.pricing-addon {
  background: var(--int-white);
  border: 1px solid var(--int-silver-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
}

.pricing-addon-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-2);
}

.pricing-addon-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--int-blue-600);
  margin-bottom: var(--space-2);
}

.pricing-addon-desc {
  font-size: 14px;
  color: var(--int-silver-600);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-addons { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .steps::before { display: none; }
  .results-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .compliance-inner { flex-direction: column; text-align: center; align-items: center; }
  .compliance-badges { flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-tabs { display: none; }
  .nav-phone, .nav-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .nav-right { display: none; }
  .mobile-toggle { display: block; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-content { padding: 0; }
  .hero h1 { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero .section-title { font-size: 28px; }
}

/* =============================================
   NOVOLTC EXCLUSIVITY BAND (pricing page)
   ============================================= */
.novoltc-section {
  background: var(--int-white);
}

.novoltc-band {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  background: var(--int-white);
  border: 1px solid var(--int-silver-300);
  border-radius: 12px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(1, 27, 49, 0.06);
}

.novoltc-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--int-white);
  border: 1px solid var(--int-silver-300);
  border-radius: 12px;
  padding: 24px 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.novoltc-logo-wrap:hover {
  border-color: var(--int-blue-400);
  box-shadow: 0 4px 16px rgba(1, 27, 49, 0.08);
}

.novoltc-logo {
  display: block;
  width: 170px;
  height: auto;
}

.novoltc-body {
  flex: 1;
  min-width: 0;
}

.novoltc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  color: var(--int-navy-900);
  margin: 10px 0 12px;
}

.novoltc-desc {
  color: var(--int-silver-600);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.novoltc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--int-blue-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.novoltc-link:hover {
  color: var(--int-blue-500);
}

@media (max-width: 768px) {
  .novoltc-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 24px;
  }
  .novoltc-logo { width: 140px; }
  .novoltc-title { font-size: 21px; }
}

/* =============================================
   PRODUCT SCREENSHOTS / SHOWCASE
   ============================================= */
.product-showcase {
  padding: var(--space-9) 0 var(--space-8);
  background: var(--int-silver-100);
  border-bottom: 1px solid var(--int-silver-200);
}

.product-frame {
  max-width: 1080px;
  margin: var(--space-7) auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--int-silver-300);
  background: var(--int-white);
  box-shadow: 0 16px 48px rgba(1, 27, 49, 0.16);
  overflow: hidden;
}

.product-frame-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  height: 36px;
  padding: 0 var(--space-4);
  background: var(--int-navy-900);
}

.product-frame-bar span {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.22);
}

.product-frame-url {
  flex: 1;
  margin-left: var(--space-3);
  font-size: 12px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-3);
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-7);
}

.product-card {
  background: var(--int-white);
  border: 1px solid var(--int-silver-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--int-silver-200);
}

.product-card-body {
  padding: var(--space-5);
}

.product-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-2);
}

.product-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--int-silver-600);
}

.deep-dive-visual.has-screen {
  padding: var(--space-5);
  min-height: 0;
}

.deep-dive-visual.has-screen img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 36px rgba(1, 27, 49, 0.4);
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-showcase { padding: var(--space-8) 0 var(--space-7); }
  .product-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .product-frame { margin-top: var(--space-6); }
  .product-frame-url { display: none; }
}

/* =============================================
   V1 REBUILD — WHITE HEADER + HOME SECTIONS
   ============================================= */
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.35s ease;
}

.nav.scrolled .nav-logo img { height: 34px; }

/* --- Light hero (H0) --- */
.hero-v2 {
  padding: 150px 0 0;
  background: var(--int-white);
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: var(--space-7);
  align-items: center;
}

.hero-v2-eyebrow {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--int-blue-600);
  display: block;
  margin-bottom: var(--space-4);
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--int-navy-900);
  margin-bottom: var(--space-5);
}

.hero-v2-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--int-navy-700);
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.hero-v2-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-v2-shot .product-frame { margin: 0; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--int-silver-200);
}

.hero-trust span {
  font-size: 14px;
  font-weight: 600;
  color: var(--int-silver-600);
  letter-spacing: 0.01em;
}

.hero-trust .dot { color: var(--int-silver-500); }

/* --- Prose section (H1 / H4) --- */
.prose-section {
  max-width: 720px;
  margin: 0 auto;
}

.prose-section .section-title { text-align: left; }
.prose-section .section-eyebrow { text-align: left; }

.prose-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--int-navy-700);
  margin-bottom: var(--space-5);
}

/* --- Capability tiles (H2) --- */
.tile-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.tile {
  background: var(--int-white);
  border: 1px solid var(--int-silver-300);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
}

.tile h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-2);
}

.tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--int-navy-700);
}

.explainer-link {
  display: inline-block;
  margin-top: var(--space-6);
  font-weight: 700;
  font-size: 16px;
  color: var(--int-blue-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.explainer-link:hover { color: var(--int-blue-500); }

/* --- Product blocks (H3) --- */
.product-block {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: var(--space-7);
  align-items: center;
  padding: var(--space-7) 0;
}

.product-block + .product-block { border-top: 1px solid var(--int-silver-200); }

.product-block.flip .product-block-copy { order: 2; }
.product-block.flip .product-block-media { order: 1; }

.product-block-kicker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--int-blue-600);
  display: block;
  margin-bottom: var(--space-3);
}

.product-block h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-3);
}

.product-block-tagline {
  font-size: 17px;
  font-style: italic;
  color: var(--int-navy-700);
  margin-bottom: var(--space-4);
}

.product-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-block li {
  display: flex;
  gap: var(--space-3);
  font-size: 15px;
  line-height: 1.6;
  color: var(--int-navy-700);
}

.product-block li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--int-blue-400);
  margin-top: 9px;
}

.product-block-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--int-silver-300);
  box-shadow: var(--shadow-lg);
}

.greybox {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--int-silver-500);
  background: var(--int-silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-5);
}

.greybox span {
  font-size: 14px;
  font-weight: 600;
  color: var(--int-silver-600);
  max-width: 260px;
  line-height: 1.5;
}

/* --- Vision (H4) --- */
.vision-note {
  background: var(--int-blue-100);
  border: 1px solid var(--int-silver-300);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-top: var(--space-6);
}

.vision-note p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--int-navy-700);
  margin: 0;
}

/* --- Explainer page (2026 rules) --- */
.rule-section {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-7) 0;
}

.rule-section + .rule-section { border-top: 1px solid var(--int-silver-200); }

.rule-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--int-navy-900);
  margin-bottom: var(--space-4);
}

.rule-section p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--int-navy-700);
  margin-bottom: var(--space-4);
}

.rule-handles {
  background: var(--int-silver-100);
  border-left: 3px solid var(--int-blue-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
}

.rule-handles p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--int-navy-700);
}

.rule-handles strong { color: var(--int-navy-900); }

@media (max-width: 1024px) {
  .tile-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-v2 { padding-top: 120px; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-v2-sub { max-width: none; }
  .product-block { grid-template-columns: 1fr; gap: var(--space-5); }
  .product-block.flip .product-block-copy { order: 1; }
  .product-block.flip .product-block-media { order: 2; }
  .tile-row { grid-template-columns: 1fr; }
  .nav-logo img { height: 32px; }
}
