/* ══════════════════════════════════════════════════════════════
   APP-ACCURATE PALETTE — extracted from actual app screenshots
   Navy CTA:      #2E456D  (Resume Chapter / Save Avatar buttons)
   Gradient teal: #84C8C4  (app bg top)
   Gradient sky:  #B8D1EA  (app bg mid)
   Gradient end:  #A2D4D7  (app bg bottom)
   Frosted card:  rgba(255,255,255,0.52)
   Heading text:  #1C3A5E
   Green accent:  #5CB84A  (logo)
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:     #2E456D;
  --navy-d:   #1C3A5E;
  --navy-l:   #3D5A84;
  --teal-a:   #84C8C4;
  --teal-b:   #7ECECE;
  --sky-a:    #B8D1EA;
  --sky-b:    #A2D4D7;
  --green:    #5CB84A;
  --green-d:  #3A8A32;
  --green-l:  #7ECC6A;
  --gold:     #F0B428;
  --white:    #FFFFFF;
  --glass:    rgba(255,255,255,0.52);
  --glass-s:  rgba(255,255,255,0.72);
  --text-h:   #1C3A5E;
  --text-b:   #2E456D;
  --text-s:   #4A6285;
  --text-xs:  #6A83A5;
  --sans:     'Nunito', system-ui, sans-serif;
  --serif:    'Lora', Georgia, serif;
  --app-grad: linear-gradient(160deg, #84C8C4 0%, #9BCFE0 35%, #B8D1EA 65%, #A2D4D7 100%);
  --shadow:   0 8px 32px rgba(46,69,109,0.12), 0 2px 8px rgba(46,69,109,0.08);
  --shadow-lg:0 20px 60px rgba(46,69,109,0.18), 0 4px 16px rgba(46,69,109,0.10);
  --nav-height: 50px;
}

body { font-family: var(--sans); color: var(--text-b); background: #fff; overflow-x: hidden; line-height: 1.6; padding-top: var(--nav-height);}

h1 { font-family: var(--sans); font-weight: 800; font-size: clamp(2.1rem,5vw,3.5rem); line-height: 1.15; color: var(--text-h); }
h2 { font-family: var(--sans); font-weight: 700; font-size: clamp(1.55rem,3.5vw,2.3rem); line-height: 1.25; color: var(--text-h); }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.08rem; color: var(--text-h); }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-s); }

/* ── APP BACKGROUND ─────────────────────────────────────────── */
.app-bg { background: var(--app-grad); position: relative; }
.app-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 75% 20%, rgba(255,255,255,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 18% 78%, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* ── NAV ────────────────────────────────────────────────────── */
/* ================= NAV ================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;

  background: rgba(132,200,196,0.84);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);

  border-bottom: 1px solid rgba(255,255,255,0.5);
}

/* NAV INNER */
.nav-inner {
  height: var(--nav-height);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 120px; /* increased for bigger logo */
}

/* LOGO WRAPPER (FIX ALIGNMENT) */
.nav-logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE (SHARP + CENTERED + OUTLINE EFFECT) */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-logo img {
  height: 100%;
  max-height: 120px;
  width: auto;
  object-fit: contain;

  /* REMOVE that boxed look */
  padding: 0;
  border: none;
  background: transparent;

  /* Improve clarity slightly */
  image-rendering: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--navy-d);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green-d);
}

/* CTA */
.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 0.52rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 4px 14px rgba(46,69,109,0.3);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--navy-d);
  transform: translateY(-1px);
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:920px){

  .nav-inner {
    height: 75px;
  }

  .nav-logo img {
    height: 100px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;

    flex-direction: column;
    background: rgba(132,200,196,0.96);

    padding: 1.5rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
}

@media(max-width:600px){
  .nav-logo img {
    height: 90px;
  }
}
/* ── HERO ────────────────────────────────────────────────────── */
#hero { min-height: 100vh; padding-top: 66px; display: flex; align-items: center; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 4rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50px; padding: 0.38rem 1rem;
  font-size: 0.8rem; font-weight: 700; color: var(--navy);
  letter-spacing: 0.03em; margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero-text h1 { margin-bottom: 1.2rem; }
.hero-text h1 em { font-style: normal; color: var(--navy-l); }
.hero-text > p { font-size: 1.08rem; color: var(--text-b); font-weight: 500; max-width: 480px; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-navy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy); color: #fff;
  padding: 0.88rem 1.8rem; border-radius: 50px;
  font-size: 0.96rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 20px rgba(46,69,109,0.35); transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,69,109,0.45); }

.btn-glass {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.55); color: var(--navy);
  padding: 0.88rem 1.8rem; border-radius: 50px;
  font-size: 0.96rem; font-weight: 700; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.btn-glass:hover { background: rgba(255,255,255,0.75); transform: translateY(-2px); }

/* Three stacked phones */
.hero-phones { display: flex; justify-content: center; align-items: flex-end; position: relative; height: 500px; }
.phone-img {
  position: absolute;
  border-radius: 34px;
  border: 3px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.phone-main   { width: 210px; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 3; animation: fMain 4s ease-in-out infinite; }
.phone-left   { width: 168px; bottom: 30px; left: 8%;  z-index: 2; opacity: 0.88; transform: rotate(-7deg); animation: fLeft 4.5s ease-in-out infinite; }
.phone-right  { width: 168px; bottom: 30px; right: 8%; z-index: 2; opacity: 0.88; transform: rotate(7deg);  animation: fRight 5s ease-in-out infinite; }
@keyframes fMain  { 0%,100%{transform:translateX(-50%) translateY(0)}      50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes fLeft  { 0%,100%{transform:rotate(-7deg) translateY(0)} 50%{transform:rotate(-7deg) translateY(-7px)} }
@keyframes fRight { 0%,100%{transform:rotate(7deg)  translateY(0)} 50%{transform:rotate(7deg)  translateY(-7px)} }

/* ── SHARED SECTION PARTS ───────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5.5rem 0; }
.sec-header { text-align: center; margin-bottom: 3.2rem; }
.sec-label {
  display: inline-block; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-l); margin-bottom: 0.65rem;
}
.sec-header p { max-width: 500px; margin: 0.7rem auto 0; }

/* ── TWO PATHS ──────────────────────────────────────────────── */
#paths { padding: 5rem 0; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.path-card {
  padding: 2.6rem; border-radius: 24px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.07); pointer-events: none;
}
.path-clinical { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%); }
.path-patient  { background: linear-gradient(135deg, #84C8C4 0%, #9BCFE0 100%); }

.path-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.26rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
}
.path-clinical .path-tag { background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
.path-patient  .path-tag { background: rgba(46,69,109,0.14); color: var(--navy); }
.path-clinical h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.65rem; }
.path-patient  h3 { color: var(--navy-d); font-size: 1.3rem; margin-bottom: 0.65rem; }
.path-clinical > p { color: rgba(255,255,255,0.76); margin-bottom: 1.5rem; }
.path-patient  > p { color: var(--text-b); margin-bottom: 1.5rem; }
.path-list { list-style: none; margin-bottom: 2rem; }
.path-list li { display: flex; align-items: flex-start; gap: 0.65rem; padding: 0.28rem 0; font-size: 0.91rem; font-weight: 500; }
.path-clinical .path-list li { color: rgba(255,255,255,0.8); }
.path-patient  .path-list li { color: var(--text-b); }
.path-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 0.52rem; }
.path-clinical .path-list li::before { background: var(--green-l); }
.path-patient  .path-list li::before { background: var(--navy); }

.lnk-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #fff; font-weight: 700; font-size: 0.91rem; text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.35); padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.lnk-white:hover { border-color: #fff; }
.lnk-navy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--navy-d); font-weight: 700; font-size: 0.91rem; text-decoration: none;
  border-bottom: 2px solid rgba(46,69,109,0.28); padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.lnk-navy:hover { border-color: var(--navy); }

/* ── FRAMEWORK ──────────────────────────────────────────────── */
#framework { overflow: hidden; }
.fw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fw-card {
  background: #fff; border-radius: 20px; padding: 2rem 2.2rem;
  border: 1.5px solid rgba(46,69,109,0.08);
  box-shadow: 0 4px 18px rgba(46,69,109,0.06);
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.fw-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 20px 20px 0 0; }
.fw-cbt::before    { background: linear-gradient(90deg,#2E456D,#3D5A84); }
.fw-cra::before    { background: linear-gradient(90deg,#F0B428,#F5CA58); }
.fw-act::before    { background: linear-gradient(90deg,#5CB84A,#7ECC6A); }
.fw-stages::before { background: linear-gradient(90deg,#84C8C4,#9BCFE0); }
.fw-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(46,69,109,0.11); }
.fw-lbl {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 50px; margin-bottom: 0.85rem;
}
.fw-cbt .fw-lbl    { background: rgba(46,69,109,0.1);   color: var(--navy); }
.fw-cra .fw-lbl    { background: rgba(240,180,40,0.15); color: #8A6010; }
.fw-act .fw-lbl    { background: rgba(92,184,74,0.15);  color: var(--green-d); }
.fw-stages .fw-lbl { background: rgba(132,200,196,0.2); color: var(--text-b); }
.fw-card p  { font-size: 0.93rem; color: var(--text-s); margin-top: 0.5rem; }
.fw-detail  { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(46,69,109,0.07); font-size: 0.82rem; color: var(--text-xs); font-style: italic; }

/* ── FEATURES ───────────────────────────────────────────────── */
#features { background: #F4F8FB; }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.feat-card {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  border: 1.5px solid rgba(46,69,109,0.07);
  box-shadow: 0 3px 14px rgba(46,69,109,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(46,69,109,0.10); }
.feat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
  background: linear-gradient(135deg,#84C8C4,#9BCFE0);
}
.feat-card h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.feat-card p  { font-size: 0.88rem; color: var(--text-xs); }

/* ── JOURNEY ────────────────────────────────────────────────── */
#journey { overflow: hidden; }
.journey-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.journey-steps { display: flex; flex-direction: column; }
.j-step { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: 14px; transition: background 0.2s; }
.j-step:hover { background: rgba(46,69,109,0.04); }
.j-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.j-dot {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}
.j-dot-es   { background: linear-gradient(135deg,var(--teal-a),var(--teal-b)); }
.j-dot-gold { background: linear-gradient(135deg,var(--gold),#E89A10); }
.j-conn { width: 2px; min-height: 24px; flex: 1; background: linear-gradient(to bottom,var(--navy),rgba(46,69,109,0.12)); margin: 4px 0; }
.j-step:last-child .j-conn { display: none; }
.j-content { padding-top: 0.2rem; }
.j-content strong { display: block; font-size: 0.98rem; color: var(--text-h); margin-bottom: 0.18rem; }
.j-content span   { font-size: 0.86rem; color: var(--text-xs); }

.journey-screens { position: relative; height: 500px; }
.js-img { position: absolute; border-radius: 30px; border: 3px solid rgba(255,255,255,0.8); box-shadow: var(--shadow-lg); object-fit: cover; }
.js-main { width: 205px; top: 20px; left: 50%; transform: translateX(-50%); z-index: 3; }
.js-back { width: 164px; top: 70px; right: 15%; z-index: 2; opacity: 0.85; transform: rotate(5deg); }

/* ── PRINCIPLES ─────────────────────────────────────────────── */
#principles { background: #F4F8FB; }
.princ-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.princ-card {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  border: 1.5px solid rgba(46,69,109,0.07);
  box-shadow: 0 3px 14px rgba(46,69,109,0.06);
  transition: transform 0.22s;
}
.princ-card:hover { transform: translateY(-3px); }
.princ-emoji { font-size: 1.6rem; margin-bottom: 0.75rem; }
.princ-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.princ-card p  { font-size: 0.88rem; color: var(--text-xs); }

/* ── CLINICIAN ──────────────────────────────────────────────── */
#clinician { overflow: hidden; }
.clin-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.clin-card {
  padding: 2.8rem;
  background: linear-gradient(160deg,var(--navy) 0%,var(--navy-l) 100%);
  border-radius: 24px; box-shadow: 0 20px 60px rgba(46,69,109,0.25);
  position: relative; overflow: hidden;
}
.clin-card::before {
  content: '"'; position: absolute; top: -1rem; left: 1.5rem;
  font-size: 8rem; color: rgba(255,255,255,0.08);
  font-family: var(--serif); line-height: 1;
}
.clin-card blockquote {
  font-family: var(--serif); font-size: 1.08rem; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.75; position: relative; z-index: 1;
}
.clin-attr { margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.18); }
.clin-attr strong { display: block; color: #fff; font-size: 0.93rem; }
.clin-attr span   { color: rgba(255,255,255,0.58); font-size: 0.83rem; }
.clin-text h2 { margin-bottom: 1rem; }
.clin-text p  { margin-bottom: 0.9rem; }
.cred-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.4rem; }
.cred-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.95rem 1.1rem; border-radius: 12px;
  background: rgba(46,69,109,0.05); border-left: 3px solid var(--teal-a);
}
.cred-item .ci-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.cred-item strong { display: block; font-size: 0.87rem; color: var(--text-h); margin-bottom: 0.12rem; }
.cred-item span   { font-size: 0.84rem; color: var(--text-xs); }

/* ── BOUNDARIES ─────────────────────────────────────────────── */
#boundaries { padding: 4rem 0; }
.bnd-box { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.bnd-inner {
  background: #fff; border: 1.5px solid rgba(46,69,109,0.08);
  border-radius: 24px; padding: 2.8rem;
  box-shadow: 0 4px 20px rgba(46,69,109,0.07);
}
.bnd-header { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 2rem; }
.bnd-header h3 { font-size: 1.12rem; }
.bnd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.b-group h4 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-xs); margin-bottom: 0.85rem;
}
.b-list { list-style: none; }
.b-list li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.3rem 0; font-size: 0.9rem; color: var(--text-s); line-height: 1.5; }
.b-yes { color: var(--green-d); flex-shrink: 0; }
.b-no  { color: #CC3333; flex-shrink: 0; }

/* ── CTA ────────────────────────────────────────────────────── */
#contact { text-align: center; overflow: hidden; }
.cta-inner { max-width: 580px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.cta-inner h2 { color: var(--navy-d); margin-bottom: 0.9rem; }
.cta-inner > p { margin-bottom: 2.4rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.6rem; font-size: 0.8rem; color: var(--text-xs); }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 3.5rem 0 2rem; }
.foot-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.foot-brand img { height: 90px; margin-bottom: 0.75rem; opacity: 0.88; }
.foot-brand p { color: rgba(255,255,255,0.42); font-size: 0.84rem; max-width: 240px; line-height: 1.6; }
.foot-links { display: flex; gap: 3.5rem; }
.foot-col h5 { color: rgba(255,255,255,0.32); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.foot-col a { display: block; color: rgba(255,255,255,0.58); font-size: 0.87rem; text-decoration: none; margin-bottom: 0.4rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--teal-a); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem; }
.foot-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* ── REVEAL ─────────────────────────────────────────────────── */
.reveal   { opacity:0; transform:translateY(22px);  transition:opacity .6s ease,transform .6s ease; }
.reveal-l { opacity:0; transform:translateX(-22px); transition:opacity .6s ease,transform .6s ease; }
.reveal-r { opacity:0; transform:translateX(22px);  transition:opacity .6s ease,transform .6s ease; }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity:1; transform:none; }

/* ================= CLEAN RESPONSIVE SYSTEM ================= */

/* TABLET */
@media(max-width:920px){

  /* NAV */
  .nav-toggle { display:block; }

  .nav-links {
    position:absolute;
    top:66px;
    left:0;
    right:0;
    flex-direction:column;
    background:rgba(132,200,196,0.96);
    padding:1.5rem;
    display:none;
  }

  .nav-links.active { display:flex; }
  .nav-cta { display:none; }

  /* LAYOUT */
  .hero-inner,
  .paths-grid,
  .fw-grid,
  .journey-inner,
  .clin-inner {
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  /* GRIDS */
  .feat-grid,
  .princ-grid {
    grid-template-columns:repeat(2,1fr);
  }

  /* HERO PHONES — SCALE, DON'T HIDE */
  .hero-phones {
    height:360px;
    margin-top:2rem;
  }

  .phone-main { width:180px; }
  .phone-left,
  .phone-right { width:140px; opacity:0.85; }

  .phone-left { left:5%; }
  .phone-right { right:5%; }

  /* JOURNEY */
  .journey-screens {
    height:340px;
    margin-top:2rem;
  }

  /* FOOTER */
  .foot-top {
    flex-direction:column;
    gap:2rem;
  }

  .foot-links {
    gap:2rem;
  }
}

/* MOBILE */
@media(max-width:600px){

  /* GRID COLLAPSE */
  .feat-grid,
  .princ-grid,
  .paths-grid,
  .bnd-grid {
    grid-template-columns:1fr;
  }

  /* HERO PHONES — STILL VISIBLE */
  .hero-phones {
    height:300px;
  }

  .phone-main { width:150px; }
  .phone-left,
  .phone-right { width:110px; opacity:0.75; }

  .phone-left { left:2%; }
  .phone-right { right:2%; }

  /* CTA */
  .cta-btns {
    flex-direction:column;
    align-items:center;
  }

  /* FOOTER */
  .foot-bottom {
    flex-direction:column;
    text-align:center;
  }

  /* SPACING */
  section {
    padding:3.5rem 0;
  }

  h1 { font-size:2rem; }
  h2 { font-size:1.4rem; }
}
/* Mobile CTA inside menu */
.nav-cta-mobile a {
  display: block;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 0.7rem;
  border-radius: 40px;
  font-weight: 700;
  margin-top: 1rem;
}

/* Hide mobile CTA on desktop */
.nav-cta-mobile {
  display: none;
}

@media(max-width:920px){
  .nav-cta-mobile {
    display: block;
  }
}