/*=========================================================
    GLOBAL
=========================================================*/
:root {
  --primary: #0A1C4D;
  --primary-dark: #07163E;
  --secondary: #14295F;
  --orange: #FD8547;
  --orange-hover: #ff9b46;
  --white: #ffffff;
  --text: #DCE6FF;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  --transition: 0.35s ease;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
@media (min-width: 1396px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1300px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1380px;
  }
}
@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1480px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 90px;
}
body {
  font-family: "Roboto", sans-serif;
  background: #ffffff;
  color: #3C4257;
  overflow-x: hidden;
}
.bg-white {
  background: #fff;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*=========================================================
    HERO
=========================================================*/
.hero-section {
  position: relative;
  background: #fff;
  padding-top: 0;
  padding-bottom: 150px;
}
/*=========================================================
    NAVBAR
=========================================================*/
.navbar {
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 18px rgba(10, 28, 77, 0.06);
  transition: var(--transition);
}
.navbar .navbar-toggler {
  border: 1px solid #E4E8F1;
  position: absolute;
  right: 10px;
  top: 17px;
  border-radius: 8px;
}
.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(253, 133, 71, 0.2);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23022552' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-brand img {
  max-width: 80%;
}
.navbar-nav {
  gap: 20px;
}
.nav-link {
  color: #5C5C5C;
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link:focus {
  color: var(--orange);
}
.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(10, 28, 77, 0.14);
  padding: 10px;
  margin-top: 12px;
}
.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  color: #022552;
  font-size: 14.5px;
  transition: var(--transition);
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: #FFF1E8;
  color: var(--orange);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.login-btn {
  color: #5C5C5C;
  font-weight: 400;
}
.demo-btn {
  background: var(--orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 400;
  transition: 0.3s;
}
.demo-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  color: #fff;
}
/*=========================================================
    HERO CONTENT
=========================================================*/
.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 0px;
  padding-bottom: 0px;
}
.hero-content {
  max-width: 620px;
}
.hero-content h1 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 28px;
  color: #022552;
}
.hero-content p {
  font-size: 25px;
  color: #5C5C5C;
  line-height: 1.8;
  margin-bottom: 45px;
}
/*=========================================================
    BUTTONS
=========================================================*/
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 18px 34px;
  border-radius: 10px;
  font-weight: 400;
  transition: var(--transition);
}
.btn-orange:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-custom {
  border: 2px solid var(--orange);
  color: #022552;
  padding: 18px 34px;
  border-radius: 10px;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
/*=========================================================
    TRUST
=========================================================*/
.trust-area {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-area .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #022552;
  font-size: 17px;
}
/*=========================================================
    IMAGE AREA
=========================================================*/
.hero-image-wrapper {
  position: relative;
  height: 680px;
}
.doctor-image {
  position: absolute;
  top: 0;
  right: 100px;
  width: 100%;
  z-index: 5;
  user-select: none;
}
/*=========================================================
    FLOATING CARDS
=========================================================*/
.floating-card {
  position: absolute;
  width: 300px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 15px 20px;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0px 5px 10px 0px #00000040;
}
.floating-card:hover {
  transform: translateY(-8px);
}
.floating-card small {
  color: #7E8794;
  display: block;
  margin-bottom: 10px;
}
.floating-card h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}
.floating-card a {
  color: var(--orange);
  font-weight: 600;
}
.floating-card .card-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-right: 10px;
}
.floating-card.card-1 {
  top: 50px;
  right: 90px;
  animation: floatOne 6s ease-in-out infinite;
}
.floating-card.card-2 {
  top: 250px;
  right: 0px;
  animation: floatTwo 7s ease-in-out infinite;
}
.floating-card.card-3 {
  top: 500px;
  right: 0px;
  animation: floatThree 8s ease-in-out infinite;
}
/*=========================================================
    HERO WAVE
=========================================================*/
.hero-wave {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 57%;
  z-index: 1;
  opacity: 15%;
}
/*=========================================================
    BUTTON EFFECTS
=========================================================*/
.btn-orange::before,
.demo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.7s;
}
.btn-orange:hover::before,
.demo-btn:hover::before {
  left: 150%;
}
/*=========================================================
    KEYFRAMES
=========================================================*/
@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}
@keyframes floatThree {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}
/*=========================================================
    LAPTOP
=========================================================*/
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 52px;
  }
  .doctor-image {
    top: 120px;
  }
  .floating-card {
    width: 260px;
    padding: 20px;
  }
}
/*=========================================================
    TABLET
=========================================================*/
@media (max-width: 991px) {
  .navbar-collapse {
    background: #09183f;
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-collapse .nav-link {
    color: #DCE6FF;
  }
  .navbar-collapse .nav-link:hover {
    color: var(--orange);
  }
  .navbar-collapse .login-btn {
    color: #DCE6FF;
  }
  .navbar-nav {
    gap: 4px;
  }
  .navbar-actions {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .hero-content {
    text-align: center;
    margin: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .trust-area {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 70px;
    height: 620px;
  }
  .doctor-image {
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
  }
  .card-1 {
    left: 0;
    top: 20px;
  }
  .card-2 {
    left: 20px;
  }
  .card-3 {
    right: 0;
    top: 170px;
  }
}
/*=========================================================
    MOBILE
=========================================================*/
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 17px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-orange,
  .btn-outline-custom {
    width: 100%;
    text-align: center;
  }
  .hero-image-wrapper {
    height: 520px;
  }
  .doctor-image {
    width: 300px;
  }
  .floating-card {
    width: 210px;
    padding: 16px;
    position: relative;
  }
  .floating-card h4 {
    font-size: 15px;
  }
  .card-icon {
    width: 45px;
    height: 45px;
  }
  .hero-container {
    padding-top: 30px;
  }
}
/*=========================================================
    SMALL MOBILE
=========================================================*/
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-image-wrapper {
    height: auto;
    margin-top: 30px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
  }
  .doctor-image {
    display: none;
    width: 260px;
  }
  .card-1 {
    top: 0 !important;
    right: 0 !important;
    margin-right: 20px;
  }
  .card-2 {
    top: 0 !important;
    left: 0 !important;
  }
  .card-3 {
    top: 30px !important;
  }
  .floating-card {
    width: 180px;
    flex: 0 0 45%;
    animation: none !important;
  }
  .hero-wave svg {
    height: 120px;
  }
  .hero-section {
    padding-bottom: 80px;
  }
}
/* Ripple Effect */
.btn-orange,
.demo-btn {
  position: relative;
  overflow: hidden;
}

/*=========================================================
    SHARED SECTION UTILITIES
=========================================================*/
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section-title {
  color: #022552;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  color: #5C5C5C;
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
}
.section-head {
  margin-bottom: 55px;
}
.section-head.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}
section {
  padding: 100px 0;
  position: relative;
}
.bg-tint {
  background: #F5F8FE;
}
.bg-navy {
  background: var(--primary);
  color: var(--text);
}
.bg-navy .section-title {
  color: #fff;
}
.bg-navy .section-sub {
  color: #AEBBDF;
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/*=========================================================
    STATS STRIP
=========================================================*/
.stats-strip {
  background: var(--primary);
  padding: 0;
  margin-top: -1px;
}
.stats-strip .stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0;
  border-top: 1px solid var(--border);
}
.stat-block {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.stat-block:last-child {
  border-right: none;
}
.stat-block .stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(253, 133, 71, 0.15);
  border: 1px solid rgba(253, 133, 71, 0.35);
  color: var(--orange);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-block .num {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}
.stat-block .label {
  color: #AEBBDF;
  font-size: 14.5px;
  margin-top: 8px;
  display: block;
}

/*=========================================================
    TRUSTED BY
=========================================================*/
.trusted-section {
  padding: 75px 0;
  background: #fff;
  text-align: center;
}
.trusted-section .trusted-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trusted-section h2.trusted-title {
  color: #022552;
  font-size: 28px;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.4;
}
.trusted-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.trusted-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #E4E8F1;
  color: #022552;
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 40px;
  background: #F9FAFD;
  transition: var(--transition);
}
.trusted-pills span i {
  color: var(--orange);
  font-size: 15px;
}
.trusted-pills span:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #FFF6EF;
  transform: translateY(-3px);
}

/*=========================================================
    FEATURE CARDS (Core Platform Modules)
=========================================================*/
.feature-card {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(10, 28, 77, 0.04);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 28, 77, 0.12);
  border-color: transparent;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--orange), #ff9b46);
}
.feature-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #022552;
  margin-bottom: 12px;
}
.feature-card p {
  color: #667085;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 0;
}
.feature-card a.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 18px;
}

/*=========================================================
    WHY / BENEFITS ICON ROWS
=========================================================*/
.benefit-row {
  display: flex;
  gap: 22px;
  margin-bottom: 38px;
}
.benefit-row .b-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FFF1E8;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.benefit-row h4 {
  color: #022552;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.benefit-row p {
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/*=========================================================
    AI POWERED SECTION (dark)
=========================================================*/
.ai-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.ai-card:hover {
  background: rgba(253, 133, 71, 0.08);
  border-color: rgba(253, 133, 71, 0.4);
  transform: translateY(-6px);
}
.ai-card .ai-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.ai-card h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ai-card p {
  color: #AEBBDF;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/*=========================================================
    HOW IT WORKS (timeline)
=========================================================*/
.timeline-wrap {
  position: relative;
}
.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #E4E8F1 0 10px, transparent 10px 20px);
}
@media (max-width: 991px) {
  .timeline-wrap::before {
    display: none;
  }
}
.timeline-step {
  text-align: left;
  padding-top: 0;
}
.timeline-step .step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
.timeline-step h4 {
  color: #022552;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.timeline-step p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
}

/*=========================================================
    SOLUTIONS BY ROLE
=========================================================*/
.role-card {
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  background: #fff;
  border: 1px solid #ECEFF6;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 28, 77, 0.12);
}
.role-card .role-icon {
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 22px;
}
.role-card h3 {
  color: #022552;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.role-card p {
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}
.role-card ul {
  margin-top: 16px;
}
.role-card ul li {
  color: #445;
  font-size: 14px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-card ul li::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  color: var(--orange);
  font-size: 13px;
}

/*=========================================================
    COCM / CARE MANAGEMENT SPOTLIGHT
=========================================================*/
.cocm-panel {
  background: linear-gradient(120deg, #0A1C4D 0%, #14295F 60%, #0A1C4D 100%);
  border-radius: 28px;
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cocm-panel::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(253,133,71,0.25), transparent 70%);
  right: -120px;
  top: -120px;
}
.cocm-panel .section-title {
  color: #ffffff;
}
.cocm-panel .section-sub {
  color: #C3CDEC;
}
.cocm-panel .highlight-orange {
  color: var(--orange);
}
.cocm-panel .row {
  position: relative;
  z-index: 2;
}
.cocm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 133, 71, 0.15);
  border: 1px solid rgba(253, 133, 71, 0.4);
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.cocm-chip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.cocm-chip i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 3px;
}
.cocm-chip h5 {
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cocm-chip p {
  color: #C3CDEC;
  font-size: 13.5px;
  margin-bottom: 0;
  line-height: 1.6;
}

/*=========================================================
    RESULTS / METRIC CARDS
=========================================================*/
.result-card {
  background: #F5F8FE;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.result-card:hover {
  background: #fff;
  box-shadow: 0 20px 45px rgba(10, 28, 77, 0.1);
  transform: translateY(-6px);
}
.result-card .result-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #ff9b46);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(253, 133, 71, 0.3);
  transition: var(--transition);
}
.result-card:hover .result-icon {
  transform: rotate(-6deg) scale(1.06);
}
.result-card .result-icon i {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
}
.result-card h4 {
  color: #022552;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.result-card p {
  color: #667085;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/*=========================================================
    SECURITY SECTION
=========================================================*/
.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}
.security-list .sec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #022552;
  font-size: 15px;
  font-weight: 500;
}
.security-list .sec-item i {
  color: var(--orange);
  font-size: 18px;
}
@media (max-width: 576px) {
  .security-list {
    grid-template-columns: 1fr;
  }
}

/*=========================================================
    TESTIMONIALS
=========================================================*/
.testimonial-card {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(10, 28, 77, 0.1);
}
.testimonial-card .quote-mark {
  font-size: 34px;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.testimonial-card p.quote {
  color: #3C4257;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 26px;
  min-height: 120px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.testimonial-person strong {
  display: block;
  color: #022552;
  font-size: 14.5px;
}
.testimonial-person span {
  color: #8A94A6;
  font-size: 13px;
}

/*=========================================================
    PRICING PREVIEW
=========================================================*/
.pricing-card {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 22px;
  padding: 44px 34px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(10, 28, 77, 0.25);
}
.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-card:not(.featured):hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 28, 77, 0.1);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  right: 34px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.pricing-card h3 {
  color: #022552;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-card.featured h3 {
  color: #fff;
}
.pricing-card .price-tag {
  color: #022552;
  font-size: 15px;
  margin-bottom: 26px;
  display: block;
}
.pricing-card.featured .price-tag {
  color: #AEBBDF;
}
.pricing-card ul {
  margin-bottom: 30px;
}
.pricing-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #445;
  font-size: 14.5px;
  padding: 8px 0;
}
.pricing-card.featured ul li {
  color: #DCE6FF;
}
.pricing-card ul li i {
  color: var(--orange);
}
.pricing-card .btn-outline-custom,
.pricing-card .btn-orange {
  display: block;
  text-align: center;
  width: 100%;
}
.pricing-card.featured .btn-outline-custom {
  border-color: var(--orange);
  color: #fff;
}

/*=========================================================
    FAQ ACCORDION
=========================================================*/
.faq-item {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  color: #022552;
  font-size: 16.5px;
}
.faq-question i {
  color: var(--orange);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 26px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 24px;
}
.faq-answer p {
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

/*=========================================================
    FINAL CTA BANNER
=========================================================*/
.final-cta {
  background: linear-gradient(120deg, #0A1C4D, #14295F);
  border-radius: 32px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 12px;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(253,133,71,0.18), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(253,133,71,0.12), transparent 45%);
}
.final-cta h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.final-cta p {
  color: #AEBBDF;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 34px;
  position: relative;
  z-index: 2;
}
.final-cta .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/*=========================================================
    FOOTER
=========================================================*/
.site-footer {
  background: var(--primary-dark);
  padding-top: 90px;
  color: #AEBBDF;
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
.footer-brand .brand-navy {
  color: #ffffff;
}
.footer-brand .brand-orange {
  color: var(--orange);
}
.footer-brand-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #7C8AB5;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-footer p.footer-tag {
  color: #8A9BC7;
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.footer-col ul li {
  margin-bottom: 13px;
}
.footer-col ul li a {
  color: #8A9BC7;
  font-size: 14.5px;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.newsletter-row {
  display: flex;
  gap: 10px;
  max-width: 380px;
  margin-top: 8px;
}
.newsletter-row input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}
.newsletter-row input::placeholder {
  color: #7C8AB5;
}
.newsletter-row input:focus {
  outline: none;
  border-color: var(--orange);
}
.newsletter-row button {
  background: var(--orange);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 0 22px;
  font-weight: 600;
  transition: var(--transition);
}
.newsletter-row button:hover {
  background: var(--orange-hover);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p {
  color: #7C8AB5;
  font-size: 13.5px;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a {
  color: #7C8AB5;
  font-size: 13.5px;
}
.footer-bottom-links a:hover {
  color: var(--orange);
}

/*=========================================================
    PAGE HERO (for interior pages)
=========================================================*/
.page-hero {
  background: var(--primary);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,133,71,0.15), transparent 70%);
  top: -200px;
  right: -100px;
}
.page-hero h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.page-hero p {
  color: #AEBBDF;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/*=========================================================
    RESPONSIVE — NEW SECTIONS
=========================================================*/
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .cocm-panel {
    padding: 40px 28px;
  }
  .final-cta {
    padding: 50px 28px;
  }
  .final-cta h2 {
    font-size: 24px;
  }
  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex: 1 1 45%;
  }
  .page-hero h1 {
    font-size: 36px;
  }
  .page-hero {
    padding: 140px 0 60px;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 27px;
  }
  .pricing-card.featured {
    transform: none;
  }
}

/*=========================================================
    CONTACT PAGE
=========================================================*/
.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #F5F8FE;
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.contact-info-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.contact-info-card h5 {
  color: #022552;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-card p {
  color: #667085;
  font-size: 14.5px;
  margin-bottom: 0;
  line-height: 1.7;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 24px;
  padding: 46px;
  box-shadow: 0 25px 60px rgba(10, 28, 77, 0.08);
}
.contact-form-wrap label {
  color: #022552;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid #E4E8F1;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14.5px;
  margin-bottom: 22px;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(253, 133, 71, 0.15);
}
.contact-form-wrap textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.form-success {
  display: none;
  background: #EAF7EF;
  border: 1px solid #B7E4C7;
  color: #1E7A46;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14.5px;
  margin-bottom: 22px;
  align-items: center;
  gap: 10px;
}
.form-success.show {
  display: flex;
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 28px;
  }
}
