@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Brand Palette */
  --teal:         #00BFA6;
  --teal-dark:    #009E8A;
  --teal-deeper:  #007A6B;
  --teal-light:   #E8FBF8;
  --teal-glow:    rgba(0,191,166,0.18);
  --teal-glow-lg: rgba(0,191,166,0.32);

  --navy:         #0A1628;
  --navy-2:       #0F1E35;
  --navy-3:       #162843;
  --navy-soft:    #1A2F4A;

  --blue-mid:     #0D4F8B;

  /* Gradient Accents */
  --grad-teal:    linear-gradient(135deg, #00BFA6 0%, #0077B6 100%);
  --grad-dark:    linear-gradient(135deg, #0A1628 0%, #162843 100%);
  --grad-hero:    linear-gradient(120deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.80) 55%, rgba(0,119,182,0.25) 100%);
  --grad-card:    linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --chalk:        #F0F5F7;
  --chalk-2:      #E8EFF3;
  --border:       #DDE8EE;
  --border-2:     #C5D6DE;
  --border-glass: rgba(255,255,255,0.12);

  /* Text */
  --text-primary:   #0A1628;
  --text-secondary: #3D5166;
  --text-muted:     #6E8899;
  --text-ghost:     rgba(255,255,255,0.55);

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(10,22,40,.06);
  --shadow-sm:  0 2px 12px rgba(10,22,40,.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,.16);
  --shadow-xl:  0 32px 80px rgba(10,22,40,.22);
  --shadow-teal: 0 8px 32px rgba(0,191,166,.28);
  --shadow-teal-lg: 0 16px 48px rgba(0,191,166,.36);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Aliases used across components */
  --glass-bg:      rgba(255,255,255,0.06);
  --glass-border:  rgba(255,255,255,0.12);
  --color-primary: #00BFA6;
  --radius-sm:     6px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-full:   9999px;
  --spacing-xs:    4px;
  --spacing-sm:    8px;
  --spacing-md:    16px;
  --spacing-lg:    24px;
  --spacing-xl:    32px;
  --spacing-xxl:   48px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; outline: none; }\n\na:focus-visible {\n  outline: 2px solid var(--color-primary);\n  outline-offset: 2px;\n}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--navy);
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--navy);
}
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--navy);
}
p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 44px;
  width: 100%;
}

section {
  padding: 128px 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--grad-teal);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Section tags */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--teal-light);
  color: var(--teal-deeper);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.max-width-560 { max-width: 560px; }
.max-width-640 { max-width: 640px; }
.max-width-720 { max-width: 720px; }
.col-text { max-width: 560px; }

/* Gradient text */
.gradient-text {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   GRIDS
============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--grad-teal);
  color: #fff;
  padding: 15px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: transform 0.22s var(--ease-spring), box-shadow 0.22s ease, opacity 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal-lg);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: var(--teal);
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
  color: var(--teal-deeper);
  padding: 15px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,.18);
  transition: all 0.22s var(--ease-spring);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-spring), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 16px 16px 0 0;
}
.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--border-2);
}
.card:hover::before { transform: scaleX(1); }

/* Glass Card */
.card-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.card-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

/* ============================================================
   PHOTO FRAMES
============================================================ */
.photo-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}

/* ============================================================
   FORM INPUTS
============================================================ */
.form-group { margin-bottom: 22px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.01em;
}

input, select, textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background-color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
  background-color: #FAFFFE;
}
textarea { resize: vertical; }

.success-message-box {
  display: none;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 16px;
  color: var(--teal-deeper);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================================
   CHECKLIST
============================================================ */
.checklist { list-style: none; margin: 28px 0; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--grad-teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0,191,166,0.3);
}
.check-icon svg { width: 10px; height: 10px; }
.checklist-dark .check-icon { background: rgba(255,255,255,0.15); }
.checklist-dark .check-icon svg path { stroke: var(--teal); }
.checklist-dark .checklist-item { color: rgba(255,255,255,0.82); }

/* ============================================================
   NAVIGATION
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(221,232,238,0.7);
  transition: box-shadow 0.35s ease, background 0.35s;
}
header.scrolled::before {
  box-shadow: 0 4px 32px rgba(10,22,40,.1);
  background: rgba(255,255,255,0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo-link { display: flex; align-items: center; z-index: 1; }
.logo-img { max-height: 40px; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-teal);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover {
  color: var(--teal);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active {
  color: var(--teal);
}
.nav-link.active::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 280px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(10,22,40,.16);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), visibility 0.25s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Nav Social + CTA */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.22s ease;
}
.social-icon-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-2px);
}
.social-icon-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; }
  .nav-menu { display: none; }
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  overflow-y: auto;
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-menu-list { list-style: none; flex: 1; }
.mobile-menu-item { border-bottom: 1px solid var(--border); }
.mobile-menu-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 20px 0;
  transition: color 0.2s;
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--teal); }
.mobile-submenu-list { list-style: none; padding-left: 24px; margin-bottom: 14px; }
.mobile-submenu-link {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-submenu-link:hover, .mobile-submenu-link.active { color: var(--teal); }
.mobile-cta-wrapper { margin-top: auto; padding-top: 32px; }
.mobile-cta-wrapper .btn-primary { width: 100%; justify-content: center; }

/* ============================================================
   HERO
============================================================ */
.hero-sec {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}
.hero-sec h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero-sec p {
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,191,166,0.18);
  border: 1px solid rgba(0,191,166,0.35);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* Sub-hero (smaller hero for inner pages) */
.sub-hero {
  min-height: 60vh;
  padding: 140px 0 80px;
}

/* ============================================================
   SECTION BACKGROUNDS
============================================================ */
.section-white  { background: var(--white); }
.section-chalk  { background: var(--chalk); }
.section-navy   { background: var(--navy); }
.section-navy-2 { background: var(--navy-2); }

/* Mesh gradient backgrounds */
.section-mesh {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,191,166,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(13,79,139,0.06) 0%, transparent 50%),
    var(--chalk);
}
.section-mesh-dark {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0,191,166,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(13,79,139,0.1) 0%, transparent 50%),
    var(--navy);
}

/* ============================================================
   INTRO STATEMENT STRIP
============================================================ */
.intro-statement {
  background: var(--grad-teal);
  padding: 32px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intro-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.04) 24px,
    rgba(255,255,255,0.04) 48px
  );
}
.intro-statement p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--white);
  line-height: 1.5;
  position: relative;
}
.intro-statement p strong { font-weight: 700; }

/* ============================================================
   STATS ROW
============================================================ */
.stats-row {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 20px 28px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   BULLET LIST (Homepage Overview)
============================================================ */
.bullet-list { list-style: none; margin: 32px 0; }
.bullet-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.bullet-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}
.bullet-item:hover .bullet-icon {
  background: var(--teal);
  transform: scale(1.08);
  box-shadow: var(--shadow-teal);
}
.bullet-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.bullet-text { font-size: 0.93rem; line-height: 1.7; }

/* ============================================================
   PARTNER / TECH PILLS
============================================================ */
.partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.partner-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deeper);
  border: 1.5px solid var(--teal);
  padding: 7px 20px;
  border-radius: 99px;
  background: transparent;
  transition: all 0.22s ease;
}
.partner-pill:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

/* ============================================================
   WHO WE ARE (Full bleed)
============================================================ */
.who-we-are-sec {
  padding: 128px 0;
  color: var(--white);
  text-align: center;
  position: relative;
}
.who-we-are-sec h2 { color: var(--white); margin-bottom: 40px; }
.accent-cards-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.accent-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--teal);
  padding: 18px 28px;
  border-radius: 0 10px 10px 0;
  max-width: 560px;
  width: 100%;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}
.accent-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

/* ============================================================
   METRIC BOXES
============================================================ */
.metrics-row { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.metric-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  padding: 14px 22px;
  border-radius: 0 10px 10px 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-deeper);
  flex: 1;
  min-width: 160px;
}
.metric-box::before {
  content: '✦';
  color: var(--teal);
  font-size: 0.75rem;
}

/* ============================================================
   SECURITY CARDS
============================================================ */
.security-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.security-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.security-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.security-card:hover::before { transform: scaleX(1); }
.security-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.security-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.security-card p { font-size: 0.9rem; line-height: 1.75; }

/* ============================================================
   WHY ONHR DARK SECTION
============================================================ */
.why-onhr-sec {
  background: var(--grad-dark);
  color: var(--white);
}
.why-onhr-sec h2 { color: var(--white); }
.portrait-inset {
  border: 3px solid rgba(0,191,166,0.35);
  border-radius: 20px;
  width: 340px;
  height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(0,191,166,.15);
  margin: 0 auto;
  position: relative;
}
.portrait-inset img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PRE-FOOTER CTA
============================================================ */
.pre-footer-cta {
  background: var(--grad-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pre-footer-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,191,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pre-footer-cta::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(13,79,139,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.pre-footer-cta .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.pre-footer-cta h2 { color: var(--white); max-width: 640px; margin: 0; }
.pre-footer-cta .btn-white { flex-shrink: 0; }
.pre-footer-cta p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 10px; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #060D18;
  padding: 80px 0 36px;
  color: rgba(255,255,255,0.65);
}
.footer-top-border {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 72px;
}
.footer-logo {
  max-height: 38px;
  filter: brightness(12) saturate(0);
  opacity: 0.85;
  margin-bottom: 22px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.5);
}
.footer-address {
  font-size: 0.8rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.38);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials .social-icon-btn {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.footer-socials .social-icon-btn:hover {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}
.footer-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* Additional reveal directions */
.reveal-left { opacity: 0; transform: translateX(-48px); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(48px); }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   RECRUITMENT — SERVICE CARDS
============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--grad-teal);
  border-radius: 14px 0 0 14px;
  transition: height 0.35s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--border-2);
}
.service-card:hover::after { height: 100%; }
.service-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-light);
  margin-bottom: 14px;
  line-height: 1;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; line-height: 1.7; }

/* AUDIENCE CARDS */
.audience-cards { display: flex; flex-direction: column; gap: 14px; }
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  cursor: default;
}
.audience-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.audience-card h3 { margin-bottom: 6px; }
.audience-card p { font-size: 0.88rem; line-height: 1.65; }

/* GEO CARDS */
.geo-sec { background: var(--section-mesh-dark); }
.geo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.geo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0,191,166,0.3);
}
.geo-card-img { height: 210px; width: 100%; }
.geo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.geo-card-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.geo-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.geo-card-sub {
  font-size: 0.75rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
}
.geo-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; flex-grow: 1; }
.geo-card-highlight {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* TIMELINE */
.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}
.timeline-row::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--blue-mid));
  opacity: 0.25;
  z-index: 0;
}
.timeline-step {
  text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.timeline-step::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.step-number {
  margin-bottom: 22px;
  transition: all 0.3s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.timeline-step:hover .step-number {
  background: var(--grad-teal);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.15);
  box-shadow: var(--shadow-teal);
}
.timeline-step h3 { font-size: 1rem; margin-bottom: 8px; }
.timeline-step p { font-size: 0.82rem; line-height: 1.65; padding: 0 8px; }

/* REC WHY ITEM */
.rec-why-item {
  border-left: 3px solid var(--teal);
  padding-left: 22px;
  margin-bottom: 26px;
  transition: all 0.2s ease;
}
.rec-why-item:hover { padding-left: 28px; }
.rec-why-item h3 { font-size: 1.05rem; margin-bottom: 5px; }
.rec-why-item p { font-size: 0.88rem; line-height: 1.65; }

/* FUNCTIONAL PILLS */
.functional-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 16px;
}
.functional-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 20px;
  border-radius: 99px;
  transition: all 0.22s ease;
}
.functional-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

/* TRUST CHIPS (Hero recruitment) */
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}

/* ============================================================
   BENEFIT CARDS (Assisted Living)
============================================================ */
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.benefit-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.benefit-card-img { height: 250px; width: 100%; overflow: hidden; }
.benefit-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.benefit-card:hover .benefit-card-img img { transform: scale(1.05); }
.benefit-card-body { padding: 32px; flex-grow: 1; }
.benefit-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.benefit-card p { font-size: 0.88rem; line-height: 1.72; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-info-block { margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.contact-info-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.contact-info-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-weight: 600; color: var(--navy); margin-bottom: 4px; font-size: 0.88rem; }
.contact-info-value { font-size: 0.94rem; color: var(--text-secondary); }

/* ============================================================
   ABOUT US PAGE
============================================================ */
/* Values cards */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--teal);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.value-card:hover .value-icon {
  background: var(--teal);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-teal);
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; }

/* Timeline (story) */
.story-timeline { margin-top: 64px; }
.story-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 48px;
}
.story-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 59px;
  top: 50px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, var(--teal), transparent);
  opacity: 0.3;
}
.story-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: right;
  padding-top: 4px;
}
.story-content h3 { margin-bottom: 8px; }
.story-content p { font-size: 0.93rem; line-height: 1.75; }

/* Team card */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 24px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--teal-light);
  transition: all 0.3s ease;
}
.team-card:hover .team-photo {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.team-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.team-bio { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  section { padding: 90px 0; }
  .grid-2 { grid-template-columns: 1fr !important; gap: 56px; }
  .grid-3, .grid-3-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .photo-frame { height: 340px !important; }
  .portrait-inset { width: 300px; height: 370px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .timeline-row { grid-template-columns: repeat(2, 1fr); }
  .timeline-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pre-footer-cta .container { flex-direction: column; text-align: center; }
  .pre-footer-cta h2 { margin-bottom: 24px; }
  .story-step { grid-template-columns: 90px 1fr; }
}

@media (max-width: 860px) {
  .nav-menu, .nav-socials { display: none; }
  .nav-hamburger { display: block; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  section { padding: 64px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.85rem; }
  .grid-3, .grid-3-2, .grid-4 { grid-template-columns: 1fr; }
  .photo-frame { height: 280px !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item::after { display: none !important; }
  .stat-num { font-size: 2.8rem; }
  .hero-sec { padding: 110px 0 72px; text-align: left; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-ghost, .btn-white { width: 100%; justify-content: center; }
  .timeline-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { flex-direction: column; gap: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .story-step { grid-template-columns: 1fr; gap: 8px; }
  .story-step::after { display: none; }
  .story-year { text-align: left; font-size: 1.5rem; }
  .portrait-inset { width: 240px; height: 300px; }
}
