/* ============================================
   DENTULU SLEEP — GLOBAL STYLESHEET
   ============================================ */

:root {
  --navy: #071B33;
  --deep-blue: #0D3B66;
  --medical-blue: #0077B6;
  --teal: #00A6A6;
  --trust-green: #3BB273;
  --alert-red: #C0392B;
  --soft-gray: #F5F7FA;
  --white: #FFFFFF;
  --gold: #F4C542;
  --text-dark: #0A1628;
  --text-mid: #3D5A80;
  --text-light: #6B7FA3;
  --border: #D6E4F0;
  --card-bg: #F0F6FC;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
        footer  ol, ul {
    padding-left: 0rem;
}
.nav-links {

    margin-bottom: 0rem;
}
/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 700; }
p { 
  color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: -0.07px;
 }

/* ---- LAYOUT ---- */

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- NAVIGATION ---- */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,27,51,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1180px; margin: 0 auto; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: white; letter-spacing: -0.5px;
}
.nav-logo-text { color: white; font-weight: 700; font-size: 1.1rem; }
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.btn-nav-secondary {
  padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  color: white; border: 1px solid rgba(255,255,255,0.25); text-decoration: none; transition: all 0.2s;
}
.btn-nav-secondary:hover { border-color: var(--teal); color: var(--teal); }
.btn-nav-primary {
  padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 700;
  background: var(--teal); color: white; text-decoration: none; transition: all 0.2s;
}
.btn-nav-primary:hover { background: #008F8F; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  background: var(--teal); color: white; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover { background: #008F8F; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,166,166,0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  background: transparent; color: white; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  background: transparent; color: var(--teal); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1.5px solid var(--teal); cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--teal); color: white; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, #0A3A5C 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,166,166,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(0,166,166,0.15); color: var(--teal);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px; border: 1px solid rgba(0,166,166,0.3);
}
.hero h1 { color: white; margin-bottom: 8px; }
.hero h1 .accent { color: var(--teal); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin: 20px 0 36px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ---- HERO VISUAL ---- */
.hero-visual { position: relative; }
.pathway-diagram {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(10px);
}
.pathway-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.pathway-steps { display: flex; flex-direction: column; gap: 10px; }
.pathway-step {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
}
.pathway-step:hover { background: rgba(0,166,166,0.1); border-color: rgba(0,166,166,0.3); }
.step-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,166,166,0.2); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.step-label { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }
.step-arrow { margin-left: auto; color: var(--teal); font-size: 12px; }
.pathway-connector { width: 2px; height: 8px; background: rgba(0,166,166,0.3); margin-left: 27px; }

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 20px;
  background: rgba(0,166,166,0.1); color: var(--teal);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px; border: 1px solid rgba(0,166,166,0.2);
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; color: var(--navy); }
.section-header p { 
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
  
 }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ---- PROBLEM SECTION ---- */
.section-problem { background: var(--navy); }
.problem-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.problem-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 22px 18px;
  transition: all 0.2s;
}
.problem-card:hover { background: rgba(192,57,43,0.1); border-color: rgba(192,57,43,0.3); }
.problem-icon { font-size: 22px; margin-bottom: 12px; }
.problem-card h4 { color: white; margin-bottom: 6px; font-size: 0.9rem; }
.problem-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }
.broken-pathway {
  margin-top: 48px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 16px;
  padding: 28px; text-align: center;
}
.broken-pathway-title { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.broken-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.flow-node {
  padding: 8px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.flow-node.bad { background: rgba(192,57,43,0.15); color: #E74C3C; border-color: rgba(192,57,43,0.3); }
.flow-arrow-broken { color: rgba(255,255,255,0.2); font-size: 16px; margin: 0 8px; }

/* ---- SOLUTION SECTION ---- */
.solution-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-step {
  background: var(--soft-gray); border-radius: 14px; padding: 24px 20px;
  border: 1px solid var(--border); position: relative;
  transition: all 0.2s;
}
.solution-step:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,166,166,0.12); }
.step-number {
  position: absolute; top: -12px; left: 20px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: white; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.solution-step h4 { margin-top: 10px; margin-bottom: 8px; color: var(--navy); }
.solution-step p { font-size: 0.85rem; }
.feature-card-small
{
      padding: 22px 16px;
    text-align: left;
    transition: all 0.2s;
    border-radius: 24px;
    border: 1px solid #E2E2E4;
    background: #FFF;
    padding: 20px;
    height: 100%;
}
.feature-card-small img
{
width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: contain;
}
.feature-card-small h3
{
      color: #060B13;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 39.6px;
    margin-bottom: 5px;
}
.feature-card-small p
{
     color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: -0.07px;
}
.feature-card-badge
{
   color: var(--teal);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 39.6px;
    margin-bottom: 5px;
}
/* ---- FEATURE CARDS ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
border-radius: 16px;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    height: 100%;
  padding: 28px 24px; border: 1px solid var(--border);
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--teal); box-shadow: 0 6px 28px rgba(0,119,182,0.1); transform: translateY(-2px); }
.feature-icon {
 margin-bottom: 16px;
}
.feature-icon img {
 width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: contain;
}
.feature-icon-a img 
{
 width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
    margin-bottom: 20px;
}
.feature-card h3 { 
    color: #1A1A1A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.feature-card p { 

    color: rgb(74, 74, 74);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: -0.07px;
    margin-bottom: 0;
 }

/* ---- COMPARISON TABLE ---- */
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  padding: 16px 20px; text-align: left; font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.comparison-table th:first-child { color: var(--text-light); }
.comparison-table th:nth-child(2) { color: var(--text-mid); background: #F9FBFD; }
.comparison-table th:nth-child(3) { color: var(--teal); background: rgba(0,166,166,0.06); }
.comparison-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table td:nth-child(2) { background: #F9FBFD; color: var(--text-mid); }
.comparison-table td:nth-child(3) { background: rgba(0,166,166,0.04); }
.check { color: var(--trust-green); font-size: 16px; }
.cross { color: var(--alert-red); font-size: 16px; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ---- APPLIANCE CARDS ---- */
.appliance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.appliance-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: white;
  transition: all 0.25s;
}
.appliance-card:hover { box-shadow: 0 8px 32px rgba(7,27,51,0.12); transform: translateY(-3px); }
.appliance-header {
  padding: 32px 24px 24px;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  text-align: center;
}
.appliance-emoji { font-size: 40px; display: block; margin-bottom: 12px; }
.appliance-header h3 { color: white; font-size: 1.05rem; }
.appliance-body { padding: 20px 24px; }
.appliance-features { list-style: none; }
.appliance-features li {
  padding: 7px 0; font-size: 0.87rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px;
}
.appliance-features li:last-child { border-bottom: none; }
.appliance-features li::before { content: '✓'; color: var(--trust-green); font-weight: 700; }

/* ---- PARTNER TABS ---- */
.partner-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tab-btn {
  padding: 9px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border); background: white; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s;
}
.tab-btn.active { background: var(--teal); color: white; border-color: var(--teal); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.partner-content {
  background: var(--soft-gray); border-radius: 16px;
  padding: 36px; border: 1px solid var(--border);
}
.partner-content h3 { color: var(--navy); margin-bottom: 12px; }
.partner-content p { font-size: 1rem; margin-bottom: 20px; }
.partner-bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.partner-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--text-mid); }
.partner-bullets li::before { content: '✓'; color: var(--trust-green); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ---- ECOSYSTEM GRAPHIC ---- */
.ecosystem-wrap {
  background: var(--navy); border-radius: 20px; padding: 48px;
  position: relative; overflow: hidden;
}
.ecosystem-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,166,166,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.ecosystem-center {
  text-align: center; margin-bottom: 36px;
}
.ecosystem-badge {
  display: inline-block; padding: 14px 28px; border-radius: 50px;
  background: var(--teal); color: white; font-weight: 800; font-size: 1.1rem;
}
.ecosystem-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ecosystem-node {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 14px; text-align: center;
  transition: all 0.2s;
}
.ecosystem-node:hover { background: rgba(0,166,166,0.12); border-color: rgba(0,166,166,0.35); }
.ecosystem-node-icon { font-size: 22px; margin-bottom: 8px; }
.ecosystem-node-label { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 600; }

/* ---- TRUST BADGES SECTION ---- */
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-badge {
  background: var(--soft-gray); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 18px; text-align: center;
  transition: all 0.2s;
}
.trust-badge:hover { border-color: var(--teal); }
.trust-badge-icon { font-size: 28px; margin-bottom: 10px; }
.trust-badge h4 { color: var(--navy); font-size: 0.88rem; margin-bottom: 6px; }
.trust-badge p { font-size: 0.78rem; }

/* ---- CTA SECTION ---- */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  padding: 80px 0; text-align: center;
}
.section-cta h2 { color: white; margin-bottom: 14px;  }
.section-cta p { color: rgba(255,255,255,0.9); font-size: 20px; margin-bottom: 36px;  margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cta-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border-radius: 8px; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
  color: white; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
}
.form-group select option { background: var(--navy); }
.form-group.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 10px;
  background: var(--teal); color: white; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { background: #008F8F; }

/* ---- IDEAL PATIENTS ---- */
.patient-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.patient-card {
  background: var(--soft-gray); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 18px;
  transition: all 0.2s;
}
.patient-card:hover { border-color: var(--medical-blue); box-shadow: 0 4px 16px rgba(0,119,182,0.1); }
.patient-icon { font-size: 24px; margin-bottom: 10px; }
.patient-card h4 { color: var(--navy); font-size: 0.88rem; margin-bottom: 6px; }
.patient-card p { font-size: 0.8rem; }

/* ---- UPDATE TIMELINE ---- */
.update-timeline { position: relative; }
.update-timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.update-item { display: flex; gap: 20px; padding: 16px 0; position: relative; }
.update-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; position: relative; z-index: 1;
}
.update-item.completed .update-dot { background: var(--teal); }
.update-content h4 { color: var(--navy); margin-bottom: 4px; }
.update-content p { font-size: 0.85rem; }

/* ---- DASHBOARD MOCKUP ---- */
.dashboard-mockup {
  background: var(--navy); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
}
.dash-header {
  background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px; display: flex; align-items: center; gap: 8px;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-body { padding: 20px; }
.dash-row { display: flex; gap: 12px; margin-bottom: 12px; }
.dash-stat {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 14px; border: 1px solid rgba(255,255,255,0.07);
}
.dash-stat-label { color: rgba(255,255,255,0.45); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.dash-stat-value { color: white; font-size: 1.3rem; font-weight: 800; }
.dash-stat-value span { font-size: 0.7rem; color: var(--trust-green); font-weight: 600; margin-left: 4px; }
.patient-list { background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.patient-list-header { padding: 10px 14px; background: rgba(255,255,255,0.05); display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 8px; }
.patient-list-header span { color: rgba(255,255,255,0.4); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.patient-row { padding: 10px 14px; display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 8px; border-top: 1px solid rgba(255,255,255,0.05); }
.patient-row span { color: rgba(255,255,255,0.75); font-size: 0.78rem; }
.status-badge { padding: 3px 8px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; display: inline-block; }
.status-green { background: rgba(59,178,115,0.2); color: #3BB273; }
.status-teal { background: rgba(0,166,166,0.2); color: var(--teal); }
.status-gold { background: rgba(244,197,66,0.2); color: var(--gold); }

/* ---- MAP SECTION ---- */
.map-section { background: var(--navy); }
.us-map-placeholder {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.map-dots { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; margin: 32px auto; max-width: 600px; }
.map-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,166,166,0.3); margin: auto; }
.map-dot.active { background: var(--teal); box-shadow: 0 0 8px rgba(0,166,166,0.6); }
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.map-stat { text-align: center; }
.map-stat-value { font-size: 2rem; font-weight: 800; color: var(--teal); }
.map-stat-label { color: rgba(255,255,255,0.8); font-size: 1rem; margin-top: 4px; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--navy); font-family: inherit;
}
.faq-question:hover { color: var(--teal); }
.faq-icon { color: var(--teal); font-size: 20px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.95rem; }

/* ---- FORM PAGES ---- */
.form-page { background: var(--soft-gray); min-height: calc(100vh - 68px); padding: 60px 0; }
.form-card {
  background: white; border-radius: 20px; padding: 48px;
  box-shadow: 0 4px 32px rgba(7,27,51,0.08); max-width: 700px; margin: 0 auto;
}
.form-card h1 { color: var(--navy); margin-bottom: 8px; font-size: 1.8rem; }
.form-card .subtitle { color: var(--text-mid); margin-bottom: 36px; }
.form-card .form-group label { color: var(--text-mid); }
.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  background: var(--soft-gray); border-color: var(--border); color: var(--text-dark);
}
.form-card .form-group input:focus,
.form-card .form-group select:focus,
.form-card .form-group textarea:focus { border-color: var(--teal); background: white; }
.form-card .form-group input::placeholder { color: var(--text-light); }
.form-card .form-submit { background: var(--teal); }
.hipaa-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(0,166,166,0.06); border: 1px solid rgba(0,166,166,0.2);
  border-radius: 10px; padding: 14px 16px; margin-top: 20px;
}
.hipaa-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.hipaa-text { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }

/* ---- RESOURCES ---- */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; transition: all 0.25s;
}
.resource-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,166,166,0.1); }
.resource-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 16px; }
.resource-item { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.resource-item:last-child { border-bottom: none; }
.resource-item a { color: var(--medical-blue); font-size: 0.88rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.resource-item a:hover { color: var(--teal); }
.resource-type { font-size: 0.7rem; padding: 2px 7px; border-radius: 4px; background: var(--soft-gray); color: var(--text-light); font-weight: 600; flex-shrink: 0; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h5 { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; line-height: 1.6; }
.footer-disclaimer { color: rgba(255,255,255,0.3); font-size: 0.72rem; line-height: 1.6; max-width: 700px; }

/* ---- STICKY CTA BAR ---- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px;
  display: none;
}
.sticky-cta-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta p { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.sticky-cta-btns { display: flex; gap: 10px; }
@media (max-width: 768px) { .sticky-cta { display: block; } }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  padding: 72px 0 60px;
}
.page-hero h1 { color: white; margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 20px;  margin-bottom: 28px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 1rem; text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,1) !important; font-size: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-nodes { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr 1fr; }
  .solution-timeline { grid-template-columns: 1fr; }
  .appliance-grid { grid-template-columns: 1fr; }
  .patient-cards { grid-template-columns: 1fr 1fr; }
  .map-stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .partner-bullets { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .ecosystem-nodes { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
  .form-card { padding: 28px 20px; }
}
.logo-img {
    height: 38px;
    width: auto;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-top: 14px;
    line-height: 1.6;
    max-width: 250px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col h5 {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
}

    .navbar-expand-lg .navbar-nav .nav-link {
      color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding-left:0;
    padding-right:0;
    }

    @media (max-width: 991.98px){
    .hero-visual{
        display:none !important;
    }
}

.section-eyebrow
{

    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.feature-card-b
{
    border-radius: 24px;
    background: #F5F6F9;
    padding: 28px;
}

.feature-card-b h3
{
    color: #060B13;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px;
    margin-bottom: 10px;
}

.feature-card-b p
{
color: #909090;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.07px;
    margin-bottom: 0;
}