/* Prime Dispatch — main stylesheet (ported from React/Tailwind design) */

:root {
  --background: 216 25% 97%;
  --foreground: 210 24% 16%;
  --card: 0 0% 100%;
  --primary: 215 58% 26%;
  --primary-foreground: 0 0% 100%;
  --secondary: 216 25% 97%;
  --accent: 110 52% 50%;
  --accent-deep: 152 54% 23%;
  --accent-foreground: 0 0% 100%;
  --border: 216 20% 90%;
  --charcoal: 207 28% 24%;
  --steel: 213 18% 50%;
  --navy-deep: 216 67% 17%;
  --container: 1200px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: 'Montserrat', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--charcoal));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--accent));
  margin-bottom: 16px;
}
.section-heading {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  color: hsl(var(--primary));
}
.body-text {
  font-size: 17px;
  line-height: 1.75;
  color: hsl(var(--charcoal));
}
.green-pill {
  display: inline-flex;
  align-items: center;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 4px 12px;
  border: 1px solid hsl(var(--accent) / 0.3);
}
.btn-primary-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  height: 52px;
  padding: 0 32px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary-green:hover { background: hsl(var(--accent-deep)); transform: translateY(-1px); }
.btn-primary-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  height: 44px;
  padding: 0 24px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary-navy:hover { background: hsl(var(--primary) / 0.9); transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  height: 52px;
  padding: 0 32px;
  transition: all 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }

/* Header */
.odp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
}
.odp-utility-bar {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  height: 32px;
  overflow: hidden;
  transition: height 0.3s, opacity 0.3s;
}
.odp-header.is-scrolled .odp-utility-bar { height: 0; opacity: 0; }
.odp-utility-inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  gap: 8px;
  min-width: 0;
}
.odp-utility-left {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}
.odp-utility-contact { display: none; align-items: center; gap: 12px; flex-shrink: 0; }
.odp-utility-contact a { color: rgba(255,255,255,0.8); transition: color 0.2s; white-space: nowrap; }
.odp-utility-contact a:hover { color: hsl(var(--accent)); }
.odp-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(var(--accent));
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.odp-nav {
  background: hsl(var(--card));
  transition: box-shadow 0.3s;
  overflow: visible;
}
.odp-header.is-scrolled .odp-nav { box-shadow: 0 10px 30px rgba(27,58,107,0.12); }
.odp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 72px;
  min-width: 0;
}
.odp-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.odp-logo-img,
.odp-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(300px, calc(100vw - 80px));
  object-fit: contain;
}

.odp-nav-links { display: none; align-items: center; gap: 24px; flex-shrink: 0; }

.odp-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: hsl(var(--accent));
  margin-left: auto;
}

/* Nav links underline */
.odp-nav-link {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--primary));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.odp-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: hsl(var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.odp-nav-link:hover::after, .odp-nav-link.is-active::after { transform: scaleX(1); }
.odp-nav-link.is-active { color: hsl(var(--accent)); }
.odp-chevron { transition: transform 0.2s; }
.odp-nav-dropdown.is-open .odp-chevron { transform: rotate(180deg); }
.odp-dropdown-overview { font-weight: 600 !important; border-bottom: 1px solid hsl(var(--border)); }

.odp-nav-actions { display: none; align-items: center; gap: 16px; }
.odp-nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: hsl(var(--primary));
  transition: color 0.2s;
}
.odp-nav-phone:hover { color: hsl(var(--accent)); }
.odp-nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #4CAF39; color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 12px 28px; border-radius: 8px;
  transition: all 0.15s;
}
.odp-nav-cta:hover { transform: translateY(-1px); opacity: 0.95; }
.odp-nav-cta--full { width: 100%; height: 52px; }

/* Mobile overlay — outside header flow, no horizontal scroll */
.odp-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.odp-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.odp-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  will-change: transform;
}
.odp-mobile-overlay.is-open .odp-mobile-panel { transform: translate3d(0, 0, 0); }
.odp-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 8px 16px;
  border-bottom: 1px solid hsl(var(--border));
  flex-shrink: 0;
}
.odp-mobile-logo { height: 64px; width: auto; max-width: 160px; object-fit: contain; }
.odp-mobile-close { background: none; border: none; cursor: pointer; color: hsl(var(--primary)); }
.odp-mobile-nav { padding: 32px 24px; overflow-y: auto; flex: 1; }
.odp-mobile-nav > a {
  display: block; font-size: 20px; font-weight: 500;
  color: hsl(var(--primary)); padding: 12px 0;
  border-bottom: 1px solid hsl(var(--border));
}
.odp-mobile-submenu { padding: 8px 0 8px 16px; }
.odp-mobile-submenu a {
  display: block; font-size: 16px; color: hsl(var(--charcoal));
  padding: 8px 0;
}
.odp-mobile-panel-foot { padding: 24px; border-top: 1px solid hsl(var(--border)); }

.odp-social-icons { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.odp-social-link { color: inherit; transition: color 0.2s; display: flex; }
.odp-social-link:hover { color: #3EB54B; }
.odp-sep { opacity: 0.5; flex-shrink: 0; }

.odp-main--home { padding-top: 0; }
.odp-main--inner { padding-top: 104px; }

@media (max-width: 639px) {
  .odp-logo {
    flex: 0 1 auto;
    max-width: calc(100% - 48px);
  }
  .odp-logo-img,
  .odp-logo img {
    height: 48px;
    width: auto;
    max-width: min(280px, calc(100vw - 72px));
  }
  .odp-nav-inner {
    height: 64px;
  }
  .odp-mobile-logo {
    height: 48px;
    width: auto;
    max-width: min(280px, calc(100vw - 72px));
    object-fit: contain;
  }
  .odp-mobile-panel-head {
    min-height: 64px;
  }
}

@media (min-width: 640px) {
  .odp-logo img,
  .odp-logo .custom-logo,
  .odp-logo .custom-logo-link img,
  .odp-logo-img { height: 96px; max-width: 260px; }
  .odp-mobile-logo { height: 72px; max-width: 200px; }
}

@media (min-width: 1024px) {
  .odp-logo img,
  .odp-logo .custom-logo,
  .odp-logo .custom-logo-link img,
  .odp-logo-img {
    height: 96px;
    max-width: 260px;
    margin-top: -16px;
    margin-bottom: -16px;
  }
  .odp-nav-inner { height: 72px; }
  .odp-utility-inner { font-size: 12px; }
}
.odp-social-link { color: inherit; transition: color 0.2s; }
.odp-social-link:hover { color: #3EB54B; }
.odp-sep { opacity: 0.5; }

/* Hero */
.odp-hero {
  position: relative;
  min-height: 95vh;
  min-height: 580px;
  overflow: hidden;
}
.odp-hero-bg { position: absolute; inset: 0; }
.odp-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
  animation: kenBurns 1.4s ease-out forwards;
  transform: scale(1.06);
}
@keyframes kenBurns { to { transform: scale(1); } }
.odp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,27,61,0.55) 0%, rgba(10,27,61,0.35) 50%, rgba(10,27,61,0.05) 100%);
}
.odp-hero-content {
  position: relative; z-index: 1;
  min-height: 95vh; min-height: 580px;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 120px; padding-bottom: 60px;
}
.odp-hero-title {
  font-weight: 800;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.odp-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWordIn 0.5s ease forwards;
  margin-right: 12px;
  position: relative;
}
.odp-hero-word.has-underline { margin-right: 12px; }
.odp-hero-underline {
  position: absolute; bottom: 4px; left: 0;
  width: 100%; height: 3px; background: hsl(var(--accent));
  transform: scaleX(0); transform-origin: left;
  animation: underlineDraw 0.5s ease 1.2s forwards;
}
@keyframes underlineDraw { to { transform: scaleX(1); } }
.odp-hero-label { opacity: 0; animation: fadeIn 0.5s ease 0.3s forwards; }
.odp-hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeIn 0.5s ease 1.3s forwards; }
.odp-hero-btn-green {
  display: inline-flex; align-items: center;
  background: #4CAF39; color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 12px 28px; border-radius: 8px;
  transition: transform 0.15s;
}
.odp-hero-btn-green:hover { transform: translateY(-1px); }

/* Trust ticker */
.odp-trust-ticker {
  height: 48px;
  background: hsl(var(--primary));
  overflow: hidden;
  max-width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.odp-trust-ticker-track {
  display: flex; gap: 16px;
  animation: marquee 32s linear infinite;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: hsl(var(--accent));
  white-space: nowrap;
}
.odp-ticker-dot { color: rgba(84,185,72,0.5); margin: 0 16px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Credentials strip */
.odp-credentials-strip {
  background: #0A1B3D;
  border-top: 1px solid #4CAF39;
  padding: 28px 0;
}
.odp-credentials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.odp-cred-item {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: #fff;
}
.odp-cred-icon { color: hsl(var(--accent)); display: flex; }
.odp-cred-icon svg { width: 20px; height: 20px; }

/* About section */
.odp-about-section { background: hsl(var(--background)); }
.odp-about-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.odp-about-image img { width: 100%; height: 100%; object-fit: cover; }
.odp-about-text { padding-top: 16px; }
.odp-about-copy p { margin-bottom: 16px; }
.odp-text-link { font-weight: 500; color: hsl(var(--primary)); transition: color 0.2s; }
.odp-text-link:hover { color: hsl(var(--accent)); }

/* How it works */
.odp-how-it-works {
  background: hsl(var(--primary));
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.odp-hiw-title {
  font-weight: 700; font-size: clamp(40px, 4vw, 48px);
  color: #fff; line-height: 1.12;
}
.odp-hiw-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  position: relative;
}
.odp-hiw-line {
  display: none;
  position: absolute; top: 36px; left: 16%; right: 16%;
  height: 2px; border-top: 2px dashed rgba(84,185,72,0.5);
}
.odp-hiw-step { text-align: center; }
.odp-hiw-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: hsl(var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 24px; color: #fff;
  margin: 0 auto 24px;
}
.odp-hiw-step h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.odp-hiw-step p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); }
.odp-hiw-footer { text-align: center; margin-top: 64px; font-weight: 500; font-size: 15px; color: rgba(255,255,255,0.65); }

/* Compliance */
.odp-compliance-section { position: relative; overflow: hidden; }
.odp-compliance-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 15v22L30 52 0 37V15z' fill='none' stroke='%234CAF39' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}
.odp-compliance-grid { position: relative; z-index: 1; align-items: start; }
.odp-compliance-cards { display: flex; flex-direction: column; gap: 16px; }
.odp-compliance-card {
  background: #fff; border-radius: 16px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  border-left: 4px solid hsl(var(--accent));
  box-shadow: 0 4px 24px rgba(27,58,107,0.08);
}
.odp-compliance-icon { color: hsl(var(--accent)); flex-shrink: 0; }
.odp-compliance-card h3 { font-size: 18px; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 4px; }
.odp-compliance-card p { font-size: 15px; line-height: 1.6; }

/* Footer extras */
.odp-footer-phone { color: hsl(var(--accent)) !important; font-weight: 600; }
.odp-footer-cta { height: 40px !important; padding: 0 20px !important; font-size: 12px !important; margin-top: 8px; }
.odp-footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  padding: 16px 0;
}
.odp-back-top { background: none; border: none; color: rgba(255,255,255,0.55); cursor: pointer; font-family: inherit; font-size: 12px; }
.odp-back-top:hover { color: hsl(var(--accent)); }
.odp-footer-creds { display: none; }

/* Tracking */
.odp-tracking-wrap { display: flex; justify-content: center; }
.odp-tracking-card {
  background: #fff; border-radius: 16px; padding: 48px;
  max-width: 560px; width: 100%; text-align: center;
  box-shadow: 0 8px 40px rgba(27,58,107,0.10);
}
.odp-tracking-card h2 { font-size: 26px; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 12px; }
.odp-tracking-desc { font-size: 14px; color: #5A6A7A; margin-bottom: 24px; line-height: 1.6; }
.odp-tracking-row { display: flex; max-width: 520px; margin: 0 auto; }
.odp-tracking-input {
  flex: 1; height: 52px; border: 1.5px solid #E2E8F0;
  border-right: none; border-radius: 8px 0 0 8px;
  padding: 0 18px; font-size: 15px; outline: none;
}
.odp-tracking-input:focus { border-color: #3EB54B; box-shadow: 0 0 0 3px rgba(62,181,75,0.15); }
.odp-tracking-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 52px; padding: 0 28px;
  background: #3EB54B; color: #fff; border: none;
  border-radius: 0 8px 8px 0; font-weight: 600; cursor: pointer;
}
.odp-tracking-btn:hover { background: #2E9B3B; }
.odp-tracking-powered { display: block; font-size: 10px; color: #C0C8D0; margin-top: 14px; }
.odp-tracking-powered a { color: #C0C8D0; }
.odp-tracking-divider { border: none; border-top: 1px solid #E2E8F0; margin: 20px auto; max-width: 520px; }
.odp-tracking-secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: #5A6A7A; }

/* Client portal */
.odp-portal-section { background: #F5F6F8; padding: 64px 20px; }
.odp-portal-card {
  max-width: 460px; margin: 0 auto;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  padding: 48px;
}
.odp-portal-logo { height: 80px; width: auto; margin: 0 auto 28px; display: block; }
.odp-portal-card h2 { font-size: 22px; font-weight: 700; color: #1B2A4A; text-align: center; margin-bottom: 8px; }
.odp-portal-card > p { font-size: 14px; color: #5A6A7A; text-align: center; margin-bottom: 32px; line-height: 1.6; }
.odp-portal-field { margin-bottom: 16px; }
.odp-portal-field label { display: block; font-size: 14px; font-weight: 500; color: #1B2A4A; margin-bottom: 6px; }
.odp-password-wrap { position: relative; }
.odp-password-toggle {
  position: absolute; right: 14px; bottom: 14px;
  background: none; border: none; cursor: pointer; color: #5A6A7A;
}
.odp-portal-submit {
  width: 100%; height: 52px; background: #3EB54B; color: #fff;
  border: none; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer;
}
.odp-portal-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  background: #fff; padding: 20px 40px;
  border-top: 1px solid #E2E8F0; border-bottom: 1px solid #E2E8F0;
}
.odp-portal-badge {
  background: #F5F6F8; border: 1px solid #E2E8F0; border-radius: 20px;
  padding: 6px 16px; font-size: 12px; font-weight: 600; color: #1B2A4A;
  letter-spacing: 0.05em;
}
.odp-portal-help { background: #1B2A4A; padding: 48px 20px; }
.odp-portal-help-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 24px; text-align: center;
}
.odp-portal-help h3 { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.odp-portal-help p { color: rgba(255,255,255,0.75); font-size: 15px; }
.odp-portal-help-btns { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
.odp-portal-btn-green {
  display: flex; align-items: center; justify-content: center;
  background: #3EB54B; color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: 6px;
}
.odp-portal-btn-outline {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff; color: #fff; font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: 6px;
}

/* About compare */
.odp-compare-title {
  font-size: clamp(32px, 4vw, 40px); font-weight: 700;
  color: #fff; text-align: center; margin-bottom: 48px;
}
.odp-compare-grid { max-width: 900px; margin: 0 auto; }
.odp-compare-col { border-radius: 16px; padding: 32px; }
.odp-compare-bad { background: rgba(255,255,255,0.1); border: 1px solid rgba(239,68,68,0.3); }
.odp-compare-good { background: rgba(255,255,255,0.1); border: 1px solid rgba(84,185,72,0.4); }
.odp-compare-col h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.odp-compare-bad h3 { color: #ef4444; }
.odp-compare-good h3 { color: hsl(var(--accent)); }
.odp-compare-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 15px; }
.odp-compare-bad .odp-compare-row span:last-child { color: rgba(255,255,255,0.6); }
.odp-compare-good .odp-compare-row span:last-child { color: #fff; }
.odp-compare-row .x { color: #ef4444; flex-shrink: 0; }
.odp-diff-card {
  background: hsl(var(--background)); border-radius: 20px;
  border-top: 4px solid hsl(var(--accent)); padding: 36px;
  box-shadow: 0 6px 36px rgba(27,58,107,0.09);
  transition: transform 0.3s;
}
.odp-diff-card:hover { transform: translateY(-6px); }
.odp-diff-card h3 { font-size: 22px; font-weight: 700; color: hsl(var(--primary)); margin: 20px 0 12px; }
.odp-diff-card p { font-size: 15px; line-height: 1.75; }
.odp-mission h2 { font-size: clamp(36px, 4vw, 52px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 24px; }
.odp-mission p { font-size: 19px; color: rgba(255,255,255,0.75); }
.odp-mission-line { width: 80px; height: 3px; background: hsl(var(--accent)); margin: 0 auto 40px; }

.text-center { text-align: center; }

@media (min-width: 768px) {
  .odp-credentials-grid { grid-template-columns: repeat(5, 1fr); }
  .odp-hiw-grid { grid-template-columns: repeat(3, 1fr); }
  .odp-hiw-line { display: block; }
  .odp-portal-help-inner { flex-direction: row; text-align: left; }
  .odp-portal-help-btns { flex-direction: row; width: auto; max-width: none; }
  .odp-tracking-row { flex-direction: row; }
  .odp-footer-creds { display: inline; }
}
@media (min-width: 1024px) {
  .odp-nav-links { display: flex; align-items: center; gap: 28px; }
  .odp-nav-actions { display: flex; }
  .odp-mobile-toggle { display: none; }
  .odp-dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px; background: #fff;
    border-radius: 12px; box-shadow: 0 12px 40px rgba(27,58,107,0.15);
    border: 1px solid hsl(var(--border));
    padding: 8px 0; opacity: 0; visibility: hidden;
    transition: all 0.2s;
  }
  .odp-nav-dropdown.is-open .odp-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .odp-dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 14px;
    color: hsl(var(--charcoal)); transition: background 0.2s;
  }
  .odp-dropdown-menu a:hover { background: hsl(var(--secondary)); color: hsl(var(--accent)); }
}
@media (max-width: 767px) {
  .odp-tracking-row { flex-direction: column; gap: 8px; }
  .odp-tracking-input { border-radius: 8px; border-right: 1.5px solid #E2E8F0; width: 100%; }
  .odp-tracking-btn { border-radius: 8px; width: 100%; justify-content: center; }
}

/* Page hero */
.odp-page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary));
  overflow: hidden;
  padding: 40px 0 60px;
}
.odp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 40px, hsl(var(--accent) / 0.06) 40px, hsl(var(--accent) / 0.06) 41px);
  pointer-events: none;
}
.odp-page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px 60px;
}
.odp-page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: hsl(var(--primary-foreground));
  margin-bottom: 20px;
}
.odp-page-hero .subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}
.odp-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); }
.odp-breadcrumb a:hover { color: hsl(var(--accent)); }

/* Service cards */
.odp-services-section { padding: 64px 0; background: hsl(var(--background)); }
.odp-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.odp-service-card {
  background: hsl(var(--card));
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid hsl(var(--accent));
  box-shadow: 0 6px 36px rgba(27,58,107,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
}
.odp-service-card:hover { transform: translateY(-8px); }
.odp-service-card img { width: 100%; height: 200px; object-fit: cover; }
.odp-service-card-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.odp-service-card .icon-wrap {
  margin-bottom: 20px;
  transition: transform 0.3s;
  color: hsl(var(--primary));
}
.odp-service-card:hover .icon-wrap { transform: rotate(5deg) scale(1.1); color: hsl(var(--accent)); }
.odp-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 12px;
}
.odp-service-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
}
.odp-industry-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
@media (max-width: 639px) {
  .odp-service-card .card-footer,
  .odp-industry-card .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.odp-service-card .learn-more {
  font-size: 12px;
  font-weight: 500;
  color: hsl(var(--primary));
  transition: color 0.2s;
}
.odp-service-card:hover .learn-more { color: hsl(var(--accent)); }

/* Archive industry cards */
.odp-industry-card {
  background: hsl(var(--card));
  border-radius: 20px;
  padding: 36px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid hsl(var(--accent));
  box-shadow: 0 6px 36px rgba(27,58,107,0.09);
  transition: transform 0.3s;
}
.odp-industry-card:hover { transform: translateY(-8px); }
.odp-industry-header { display: flex; gap: 20px; margin-bottom: 16px; }
.odp-industry-header .icon { color: hsl(var(--primary)); flex-shrink: 0; transition: color 0.2s; }
.odp-industry-card:hover .icon { color: hsl(var(--accent)); }
.odp-bullet-list { margin: 16px 0 20px; flex: 1; }
.odp-bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.odp-bullet-list .check { color: hsl(var(--accent)); flex-shrink: 0; }

/* Delivery models */
.odp-delivery-card {
  background: hsl(var(--background));
  border-radius: 20px;
  padding: 32px;
  border-top: 4px solid hsl(var(--accent));
  box-shadow: 0 6px 36px rgba(27,58,107,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
}
.odp-delivery-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }

/* Stats bar */
.odp-stats-bar { background: hsl(var(--primary)); padding: 32px 0; }
.odp-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.odp-stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(84,185,72,0.25);
}
.odp-stat-item:last-child { border-right: none; }
.odp-stat-value {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  color: hsl(var(--accent));
}
.odp-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

/* Deliverables */
.odp-deliverable-card {
  background: hsl(var(--card));
  border-radius: 20px;
  overflow: hidden;
  border-top: 4px solid hsl(var(--accent));
  box-shadow: 0 6px 36px rgba(27,58,107,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
}
.odp-deliverable-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,58,107,0.14); }
.odp-deliverable-card img { width: 100%; height: 200px; object-fit: cover; }
.odp-deliverable-card .content { padding: 32px; }
.odp-deliverable-card .why { font-size: 14px; color: hsl(var(--steel)); font-style: italic; }

/* Process timeline */
.odp-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.odp-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  border-left: 2px dashed hsl(var(--accent) / 0.4);
  display: none;
}
.odp-timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.odp-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: hsl(var(--primary-foreground));
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Compliance badges */
.odp-badge-card {
  background: hsl(var(--card));
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  min-width: 130px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.odp-badge-card .icon { color: hsl(var(--accent)); margin: 0 auto 8px; }
.odp-badge-card span { font-size: 12px; font-weight: 600; color: hsl(var(--primary)); }

/* FAQ accordion */
.odp-accordion-item {
  background: hsl(var(--background));
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(27,58,107,0.07);
  margin-bottom: 12px;
  overflow: hidden;
}
.odp-accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: hsl(var(--primary));
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.odp-accordion-trigger::after {
  content: '+';
  font-size: 20px;
  color: hsl(var(--accent));
  transition: transform 0.2s;
}
.odp-accordion-item.is-open .odp-accordion-trigger::after { transform: rotate(45deg); }
.odp-accordion-item.is-open { border-left: 4px solid hsl(var(--accent)); }
.odp-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.odp-accordion-item.is-open .odp-accordion-content { max-height: 500px; }
.odp-accordion-content p {
  padding: 0 28px 20px;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* CTA band */
.odp-cta-band {
  background: hsl(var(--primary));
  padding: 80px 0;
  text-align: center;
}
.odp-cta-band h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: hsl(var(--primary-foreground));
  margin-bottom: 16px;
}
.odp-cta-band p { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto 32px; }
.odp-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* CTA Form */
.odp-cta-form-section { width: 100%; }
.odp-cta-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 700px;
}
.odp-cta-form-image {
  position: relative;
  display: none;
  background: hsl(var(--primary));
  background-size: cover;
  background-position: top center;
}
.odp-cta-form-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,27,61,0.65);
}
.odp-cta-form-image .content {
  position: relative;
  z-index: 1;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  height: 100%;
}
.odp-cta-form-image h2 {
  font-size: clamp(40px, 4vw, 54px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.odp-cta-form-image p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; margin-bottom: 40px; }
.odp-cta-form-image .contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.odp-cta-form-image .contact-link:hover { color: hsl(var(--accent)); }
.odp-cta-form-image .contact-link svg { color: hsl(var(--accent)); }
.odp-form-panel {
  background: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.odp-form-card {
  background: hsl(var(--card));
  border-radius: 24px;
  padding: 48px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(27,58,107,0.18);
}
.odp-form-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 32px;
}
.odp-input, .odp-select, .odp-textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: hsl(var(--charcoal));
  background: hsl(var(--card));
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.odp-input:focus, .odp-select:focus, .odp-textarea:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 3px hsl(var(--accent) / 0.12);
}
.odp-textarea { resize: none; }
.odp-form-success { text-align: center; padding: 48px 0; }
.odp-form-success svg { color: hsl(var(--accent)); margin: 0 auto 24px; }
.odp-form-note { text-align: center; font-size: 13px; color: hsl(var(--steel)); margin-top: 8px; }

/* Contact page */
.odp-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.odp-contact-info .info-block { margin-bottom: 32px; }
.odp-contact-info .info-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--steel));
  margin-bottom: 8px;
}
.odp-contact-info .phone-big {
  font-size: 28px;
  font-weight: 700;
  color: hsl(var(--accent));
}
.odp-form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* Footer */
.odp-footer {
  background: #0F2647;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.odp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.odp-footer h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--accent));
  margin-bottom: 16px;
}
.odp-footer a { font-size: 14px; transition: color 0.2s; }
.odp-footer a:hover { color: hsl(var(--accent)); }
.odp-footer li { margin-bottom: 8px; }
.odp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* Section backgrounds */
.bg-secondary { background: hsl(var(--secondary)); }
.bg-card { background: hsl(var(--card)); }
.bg-primary { background: hsl(var(--primary)); }
.bg-accent { background: hsl(var(--accent)); }
.section-pad { padding: 80px 0; }
.section-pad-lg { padding: 100px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Quote CTA banner */
.odp-quote-banner { background: hsl(var(--accent)); padding: 64px 0; text-align: center; }
.odp-quote-banner h2 { font-size: clamp(28px, 4vw, 40px); color: hsl(var(--primary)); margin-bottom: 16px; }
.odp-quote-banner p { color: hsl(var(--primary) / 0.8); margin-bottom: 24px; }

/* Pull quote */
.odp-pull-quote {
  background: hsl(var(--primary));
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}
.odp-pull-quote p {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 16px;
}
.odp-pull-quote .stat { font-size: 15px; color: hsl(var(--accent)); font-weight: 600; }

/* Differentiators */
.odp-diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}
.odp-diff-list .check { color: hsl(var(--accent)); flex-shrink: 0; margin-top: 2px; }

/* Animations — Framer Motion parity via Intersection Observer */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-up"] { transform: translateY(60px); }
[data-animate="fade-up-sm"] { transform: translateY(28px); }
[data-animate="fade-up-md"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="scale-in"] { transform: scale(0.9); }
[data-animate="slide-right"] { transform: translateX(70px); }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
[data-animate-child] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate-child].is-visible {
  opacity: 1;
  transform: none;
}

/* Hero word animation */
.odp-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWordIn 0.5s ease forwards;
  margin-right: 8px;
}
@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}
.odp-page-hero .section-label { animation: fadeIn 0.4s ease 0.15s forwards; opacity: 0; }
.odp-page-hero .subtitle { animation: fadeIn 0.5s ease 0.8s forwards; opacity: 0; }
.odp-page-hero .odp-breadcrumb { animation: fadeIn 0.4s ease 1s forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }

/* Header entrance — opacity only, no transform (prevents scroll jump) */
.odp-header { animation: navFadeIn 0.4s ease forwards; }
@keyframes navFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (min-width: 640px) {
  .odp-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .odp-utility-contact { display: flex; }
  .odp-cta-form-grid { grid-template-columns: 1fr 1fr; }
  .odp-cta-form-image { display: block; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .odp-form-row { grid-template-columns: repeat(2, 1fr); }
  .odp-timeline::before { display: block; }
  .odp-page-hero { min-height: 520px; }
  .odp-contact-grid { grid-template-columns: 2fr 3fr; }
}
@media (min-width: 1024px) {
  .odp-nav-links { display: flex; }
  .odp-nav-actions { display: flex; }
  .odp-mobile-toggle { display: none; }
  .odp-services-grid { grid-template-columns: repeat(3, 1fr); }
  .odp-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.15s !important;
  }
  [data-animate], [data-animate-child] {
    opacity: 1 !important;
    transform: none !important;
  }
}
