:root {
  --navy: #1b2a4a;
  --navy-light: #263b65;
  --navy-dark: #121d33;
  --teal: #0097a7;
  --teal-light: #00b4c8;
  --white: #ffffff;
  --gray-100: #f3f6f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-primary: "Inter", sans-serif;
  --transition: 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 800px;
}
section {
  padding: 5rem 0;
}
.center {
  text-align: center;
}
.bg-light {
  background-color: var(--gray-100);
}
.bg-dark {
  background-color: var(--navy-dark);
  color: var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 151, 167, 0.2);
}
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-outline-nav {
  border-color: var(--teal);
  color: var(--teal);
  padding: 0.5rem 1.25rem;
}
.btn-outline-nav:hover {
  background-color: var(--teal);
  color: var(--white);
}
.btn-block {
  width: 100%;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 1000;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.brand-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover:not(.btn) {
  color: var(--teal);
}
.hero {
  position: relative;
  padding: 7rem 0 7rem;
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(0) contrast(1.2);
  mix-blend-mode: luminosity;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--navy) 10%, transparent 100%);
  opacity: 0.8;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-logo {
  display: block;
  height: 210px;
  width: auto;
  margin-bottom: 2.5rem;
}
.eyebrow {
  display: inline-block;
  color: var(--teal-light);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero .main-headline {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero .subtitle {
  color: var(--gray-200);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-support-copy {
  color: var(--gray-300);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 3rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.trust-value {
  padding: 6rem 0 -2rem;
  background-color: var(--white);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: -8rem;
  position: relative;
  z-index: 3;
}
.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(27, 42, 74, 0.08);
  border-top: 4px solid var(--teal);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(27, 42, 74, 0.12);
}
.value-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}
.presentation-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--navy-light);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pres-header {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1rem;
}
.pres-type {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pres-title {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}
.pres-presenter {
  font-weight: 500;
  color: var(--gray-600);
}
.pres-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  font-size: 0.95rem;
}
.detail-item strong {
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lead-capture {
  background-color: var(--navy-light);
  color: var(--white);
}
.lead-capture-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead-text h2 {
  color: var(--white);
}
.lead-text p {
  color: var(--gray-300);
  font-size: 1.125rem;
}
.lead-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--gray-800);
}
/* original custom form styles (now reused for HubSpot via overrides) */
.oirrc-form .form-group {
  margin-bottom: 1.5rem;
}
.oirrc-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.oirrc-form input,
.oirrc-form select,
.oirrc-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.oirrc-form input:focus,
.oirrc-form select:focus,
.oirrc-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 1rem;
}
.differentiation .lead-subtitle {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
.diff-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}
.diff-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diff-list .check {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  stroke-width: 3;
  flex-shrink: 0;
}
.testimonial-slider-container {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  min-height: 280px;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    visibility 0.8s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}
.quote-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  padding: 0 1rem;
}
.quote-author-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--light-bg);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
}
.quote-logo {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.quote-author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  border-left: 1px solid var(--gray-300);
  padding-left: 1.5rem;
}
.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.author-title {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dots .dot.active {
  background-color: var(--teal);
  transform: scale(1.3);
}
.meeting-embed-container {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}
.footer {
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}
.footer-overlay-content {
  position: relative;
  z-index: 2;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p {
  color: var(--teal);
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.85rem;
}
.disclaimer-note {
  max-width: 400px;
  text-align: right;
  margin-bottom: 0;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .lead-capture-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero .main-headline {
    font-size: 2.75rem;
  }
}
@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 1rem 0;
  }
  .navbar-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    padding-top: 8rem;
  }
  .value-grid {
    margin-top: 0;
  }
  .trust-value {
    padding-top: 4rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .footer-container,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .disclaimer-note {
    text-align: center;
  }
}

/* ---------- HUBSPOT FORM OVERRIDES to match original .oirrc-form style ---------- */
.lead-form-wrapper .hs-form {
  width: 100%;
}
.lead-form-wrapper .hs-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lead-form-wrapper .hs-form-field {
  margin-bottom: 0;
}
.lead-form-wrapper .hs-form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}
.lead-form-wrapper .hs-form-required {
  color: #e31c5f;
  margin-left: 0.25rem;
}
.lead-form-wrapper .hs-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--gray-800);
}
.lead-form-wrapper .hs-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 151, 167, 0.1);
}
.lead-form-wrapper select.hs-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}
.lead-form-wrapper textarea.hs-input {
  resize: vertical;
  min-height: 100px;
}
.lead-form-wrapper .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--teal);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
  background-color: var(--teal);
}
.lead-form-wrapper .hs-button:hover {
  background-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 151, 167, 0.2);
}
.lead-form-wrapper .hs_recaptcha {
  display: none;
}
.lead-form-wrapper .form-note {
  margin: 1rem auto 0 auto;
  max-width: 80%;
}
.lead-form-wrapper .hs-form .inputs-list {
  list-style: none;
  padding-left: 0;
}
.lead-form-wrapper .hs-form .hs-form-field .hs-field-desc {
  font-size: 0.75rem;
  color: #5b6e8c;
  margin-top: 0.25rem;
}

/* Custom CSS */
.lead-form-wrapper .hs-error-msg {
  color: #e31c5f !important;
  font-size: 0.65rem !important;
  margin-top: 0.3rem !important;
  display: block !important;
  font-weight: 300 !important;
}
.lead-form-wrapper .hs-form .hs-input {
  width: 100% !important;
  display: block;
  max-width: 100%;
}
.lead-form-wrapper .hs-form-field label {
  line-height: 1.2em;
  margin-bottom: 8px;
  margin-top: 18px;
}
.lead-form-wrapper .hs-button {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .pres-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
