/* =========================================================
   DESIGN TOKENS â€” from XD specs
   ========================================================= */
:root {
  /* Colors */
  --cp-navy: #0d2060;
  --cp-navy-dark: #081644;
  --cp-navy-mid: #1a3580;
  --cp-purple: #7b5ea7;
  --cp-purple-light: #a585d6;
  --cp-white: #ffffff;
  --cp-bg: #f7f9ff;
  --cp-text: #0d2060;
  --cp-text-body: #3a4a6b;
  --cp-text-muted: #6b7da0;
  --cp-border: #d8e2f5;
  --cp-light-blue: #e8edf8;
  --cp-orange: #f59e0b;
  --cp-green: #84cc16;
  --cp-cyan: #22d3ee;
  --cp-red: #ef4444;

  /* Typography */
  --cp-font: "Manrope", sans-serif;

  /* Container */
  --cp-container: 1440px;

  /* Radii */
  --cp-radius-sm: 8px;
  --cp-radius-md: 16px;
  --cp-radius-lg: 24px;
  --cp-radius-full: 999px;

  /* Shadows */
  --cp-shadow: 0 4px 24px rgba(13, 32, 96, 0.09);
  --cp-shadow-lg: 0 8px 40px rgba(13, 32, 96, 0.16);

  /* Transitions */
  --cp-ease: 0.25s ease;
}

/* =========================================================
   BASE RESET
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--cp-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cp-text-body);
  background: var(--cp-white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  height: 100%;
}

main {
  flex: 1 0 auto;
}

.otgs-development-site-front-end {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--cp-ease);
}

/* Override Bootstrap container to 1440 */
.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--cp-container) !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

@media (max-width: 768px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Full-bleed sections (footer, hero, cta-banner) use width:100%, inner container limits content */
.full-bleed {
  width: 100%;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--cp-font);
  font-weight: 800;
  color: var(--cp-navy);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--cp-navy);
  text-align: center;
  margin-bottom: 55px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: var(--cp-radius-full);
  font-family: var(--cp-font);
  font-size: 0.938rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--cp-ease);
  text-decoration: none;
  line-height: 1;
}

.cp-btn-navy {
  background: var(--cp-navy);
  color: #fff;
  border-color: var(--cp-navy);
}

.cp-btn-navy:hover {
  background: #0d3d8e;
  border-color: var(--cp-navy-dark);
  color: #fff;
}

.cp-btn-outline-white {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.cp-btn-outline-white:hover {
  background: #fff;
  color: var(--cp-navy);
}

.cp-btn-white {
  background: #fff;
  color: var(--cp-navy);
  border-color: #fff;
}

.cp-btn-white:hover {
  background: transparent;
  color: #fff;
}

.cp-btn-outline-navy {
  color: var(--cp-navy);
  border-color: var(--cp-navy);
  background: transparent;
}

.cp-btn-outline-navy:hover {
  background: var(--cp-navy);
  color: #fff;
}

.cp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--cp-navy);
  transition: color var(--cp-ease);
}

.cp-link-arrow svg {
  transition: transform var(--cp-ease);
}

.cp-link-arrow:hover {
  color: var(--cp-navy);
}

.cp-link-arrow:hover svg {
  transform: translateX(6px);
}

/* =========================================================
   PAGE HERO BANNER (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  height: 200px;
  background: var(--cp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: bottom;
  opacity: 1;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.563rem;
  font-weight: 700;
  margin: 0;
}
