:root {
   --bg-1: #2b4257;
   /* soft light background */
   --bg-2: #88a9c3;
   /* warm light background */
   --panel: #fff;
   --accent: #b98b3b;
   /* warm gold */
   --muted: #6b6f86;
   --glass-bg: rgba(255, 255, 255, 0.13);
   ;
   /* --glass-bg: rgba(255, 255, 255, 0.55); */
   --glass-border: rgba(255, 255, 255, 0.18);
   --shadow: 0 0 40px rgba(8, 7, 16, 0.6);
   /* --shadow: 0 6px 24px rgba(16, 24, 40, 0.08); */
   --max-width: 1100px;
}

html,
body {
   height: 100%;
   margin: 0;
   font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
   background: var(--bg-1);
   color: #111
}

/* Alternating section backgrounds */
section {
   padding: 3rem 0;
   margin: 0
}

section:nth-of-type(even) {
   background: var(--bg-2)
}

section:nth-of-type(odd) {
   background: var(--bg-1)
}

section>.inner {
   max-width: var(--max-width);
   margin: 0 auto;
   padding: 0 2rem
}

/* Glass header */
header.site-header {
   position: fixed;
   left: 0;
   right: 0;
   top: 16px;
   margin: auto;
   z-index: 40;
   display: flex;
   justify-content: center
}

.nav-inner {
   width: calc(var(--max-width) - 2rem);
   background: var(--glass-bg);
   backdrop-filter: blur(10px);
   /* backdrop-filter: blur(8px); */
   -webkit-backdrop-filter: blur(8px);
   border: 1px solid var(--glass-border);
   border-radius: 12px;
   padding: 12px 18px;
   box-shadow: var(--shadow);
   display: flex;
   align-items: center;
   justify-content: space-between
}

.brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   color: #0b0b0b
}

.brand .logo {
   width: 40px;
   height: 40px;
   border-radius: 8px;
   background: linear-gradient(135deg, var(--accent), #e6c892);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 800
}

/* Navigation */
.nav-menu {
   display: flex;
   align-items: center
}

nav a {
   color: #0b0b0b;
   text-decoration: none;
   margin: 0 10px;
   font-weight: 600
}

nav a:hover {
   color: var(--accent)
}

/* Mobile menu button */
.menu-toggle {
   display: none;
   background: none;
   border: none;
   padding: 8px;
   cursor: pointer;
   position: relative;
   z-index: 100
}

.menu-toggle span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--accent);
   margin: 4px 0;
   transition: 0.3s
}

.menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0
}

.menu-toggle.active span:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px)
}

/* Mobile Navigation */
@media (max-width: 768px) {
   .menu-toggle {
      display: block
   }

   .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: var(--panel);
      flex-direction: column;
      padding: 80px 20px 20px;
      transition: 0.3s;
      box-shadow: var(--shadow);
   }

   .nav-menu.active {
      right: 0
   }

   nav a {
      display: block;
      margin: 10px 0;
      font-size: 1.1rem;
      text-align: center
   }

   .site-header {
      position: fixed;
      top: 0;
      padding: 8px 0
   }

   main {
      padding-top: 0;
   }
}

/* Hero */
#hero {
   background-image: url('/assets/imgs/vecteezy_abstract-geometric-background-hexagons-design-for-medical_49546304.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   position: relative;
   padding: 80px 0;
   margin: 0
}

.inner.hero {
   position: relative;
   z-index: 2;
   padding: 80px 0
}

.hero {
   text-align: center;
   max-width: 800px;
   margin: 0 auto
}

.hero h1 {
   font-size: 2.5rem;
   margin: 0 0 1rem;
   color: #091235;
   line-height: 1.2
}

.hero p {
   margin: 0 0 2rem;
   color: #091235;
   font-size: 1.1rem;
   line-height: 1.6
}

/* .cta {
   display: inline-block;
   padding: 12px 24px;
   border-radius: 8px;
   background: linear-gradient(90deg, var(--accent), #f0c57a);
   color: #091018;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 6px 18px rgba(185, 139, 59, 0.18)
} */

.card {
   background: #14202e;
   border-radius: 12px;
   padding: 0;
   box-shadow: var(--shadow);
   overflow: hidden
}

.card-image {
   width: 100%;
   height: 180px;
   background-size: cover;
   background-position: center;
   background-color: #f5f5f5
}

.card-content {
   padding: 18px
}

/* HPP-specific: flex layout */
.hpp-card {
   display: flex;
   flex-direction: column;
   height: 100%;
}

.hpp-card .card-image {
   flex: 0 0 180px;
}

.hpp-card .card-content {
   flex: 1 1 auto;
   display: flex;
   flex-direction: column;
}

.hpp-card .card-content .hpp-cta {
   margin: auto 0;
   align-self: center;
}

.card .card-content p,
.card .card-content ul,
.card .card-content li {
   color: #88a9c3;
}

.service h3 {
   margin: 0 0 8px;
   color: whitesmoke
}

.service p {
   margin: 0;
   color: #bfb5a1
}

section header {
   margin-bottom: 12px
}

h2.section-title {
   font-size: 1.25rem;
   margin: 0;
   color: #0d1321
}

p.lead {
   color: #4b3d30
}

/* Partner list */
.partners {
   display: flex;
   flex-wrap: wrap;
   gap: 12px
}

.partner {
   padding: 10px 14px;
   border-radius: 10px;
   background: linear-gradient(180deg, #fff, #fbf9f6);
   border: 1px solid #f0ebe5;
   font-weight: 600;
   color: #1b1b1b
}

.accordion-button {
   background-color: #1E3A5F;
   color: #ffffff;
   font-weight: 600
}

/* Footer */
footer {
   padding: 48px 0 24px;
   background: #0F141A
}

footer h3 {
   color: #f5f7fa;
   margin: 0 0 16px;
   font-size: 1.25rem
}

footer p {
   color: #c4c9cf;
   margin: 0
}

footer a {
   color: var(--accent);
   text-decoration: none
}

footer a:hover {
   text-decoration: underline
}

.footer-content {
   text-align: center
}

@media(max-width:720px) {
   .hero {
      flex-direction: column;
      align-items: flex-start
   }

   .nav-inner {
      width: calc(100% - 32px)
   }
}

html {
   scroll-behavior: smooth
}
