/* ============================================================
   Telehealth Australia Group — Styles
   Inspired by mater.org.au: deep navy heroes, organic curves,
   colorful icons, warm-institutional feel
   ============================================================ */

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

:root {
  --navy: #002B5C;
  --navy-mid: #003A7A;
  --navy-light: #1A4F8A;
  --blue: #0066CC;
  --teal: #00A89D;
  --teal-light: #00C4B8;
  --red: #E03C31;
  --orange: #F59E0B;
  --green: #22C55E;
  --green-bg: #DCFCE7;
  --amber-bg: #FEF3C7;
  --grey-badge: #6B7280;
  --grey-badge-bg: #F3F4F6;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-grey: #E2E8F0;
  --mid-grey: #94A3B8;
  --dark-grey: #475569;
  --text: #1E293B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--text); background: var(--white);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* --- Top utility bar --- */
.top-bar {
  background: var(--navy); padding: 8px 32px;
  display: flex; justify-content: flex-end; align-items: center; gap: 12px;
}
.top-bar-pills { display: flex; gap: 8px; }
.top-bar-pill {
  font-size: 12px; font-weight: 600; color: var(--white); text-decoration: none;
  padding: 4px 14px; border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; transition: all 0.2s;
}
.top-bar-pill:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* --- Nav --- */
nav {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--light-grey); transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,43,92,0.08); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.nav-logo-mark { display: flex; align-items: center; position: relative; width: 32px; height: 32px; }
.nav-logo-cross { position: absolute; width: 100%; height: 100%; }
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: 11px; color: var(--mid-grey); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  text-decoration: none; color: var(--navy); font-size: 15px;
  font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.nav-cta {
  background: var(--blue); color: var(--white); border-radius: 100px;
  margin-left: 12px; padding: 10px 24px;
}
.nav-links a.nav-cta:hover { background: var(--navy-mid); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; color: var(--navy); }

/* --- Hero --- */
.hero {
  background: var(--navy); color: var(--white); padding: 80px 32px 140px;
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%; background: rgba(0,168,157,0.08); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%; background: rgba(0,102,204,0.06); pointer-events: none;
}
.hero-curve { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-curve svg { width: 100%; height: 60px; display: block; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.12; max-width: 740px;
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero p.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-compact { padding: 72px 32px 120px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-size: 15px;
  font-weight: 600; text-decoration: none; transition: all 0.25s;
  cursor: pointer; border: 2px solid transparent; font-family: var(--font-body);
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,43,92,0.25); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--light-grey); }
.btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }
.btn-disabled { background: var(--grey-badge-bg); color: var(--grey-badge); cursor: default; pointer-events: none; border: none; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* --- Badges --- */
.badge { font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-live { background: var(--green-bg); color: var(--green); }
.badge-launching { background: var(--amber-bg); color: var(--orange); }
.badge-coming { background: var(--grey-badge-bg); color: var(--grey-badge); }

/* --- Quick Links Bar --- */
.quick-links { max-width: 960px; margin: -60px auto 0; padding: 0 32px; position: relative; z-index: 10; }
.quick-links-inner {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,43,92,0.1);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.ql-item {
  padding: 28px 16px; text-align: center; text-decoration: none;
  color: var(--navy); transition: all 0.2s; border-right: 1px solid var(--light-grey);
}
.ql-item:last-child { border-right: none; }
.ql-item:hover { background: var(--off-white); }
.ql-icon { width: 48px; height: 48px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.ql-icon svg { width: 36px; height: 36px; }
.ql-item span { font-size: 14px; font-weight: 700; color: var(--navy); }

/* --- Sections --- */
section { padding: var(--section-pad) 32px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 12px; }
.bg-navy .section-label { color: var(--teal-light); }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 44px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.bg-navy .section-title { color: var(--white); }
.section-subtitle { font-size: 17px; color: var(--dark-grey); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }
.bg-navy .section-subtitle { color: rgba(255,255,255,0.7); }

/* --- Stats --- */
.stats { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--light-grey); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--white); padding: 32px 24px; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--mid-grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Card grid --- */
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.feature-card { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,43,92,0.08); }
.feature-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-card-icon svg { width: 26px; height: 26px; }
.icon-teal { background: rgba(0,168,157,0.12); } .icon-teal svg { color: var(--teal); }
.icon-blue { background: rgba(0,102,204,0.1); } .icon-blue svg { color: var(--blue); }
.icon-red { background: rgba(224,60,49,0.1); } .icon-red svg { color: var(--red); }
.icon-orange { background: rgba(245,158,11,0.1); } .icon-orange svg { color: var(--orange); }
.icon-green { background: rgba(34,197,94,0.1); } .icon-green svg { color: var(--green); }
.icon-navy { background: rgba(0,43,92,0.08); } .icon-navy svg { color: var(--navy); }
.feature-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--dark-grey); line-height: 1.65; }
.bg-navy .feature-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.bg-navy .feature-card:hover { background: rgba(255,255,255,0.08); box-shadow: none; }
.bg-navy .feature-card h4 { color: var(--white); }
.bg-navy .feature-card p { color: rgba(255,255,255,0.65); }

/* --- What we do --- */
.what-we-do-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.what-we-do-text p { font-size: 17px; line-height: 1.8; color: var(--dark-grey); margin-bottom: 28px; }

/* --- Brand cards --- */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-bottom: 48px; }
.brand-card { border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; background: var(--white); }
.brand-card:hover { box-shadow: 0 12px 40px rgba(0,43,92,0.08); transform: translateY(-3px); }
.brand-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 20px 20px 0 0; }
.brand-card.live::before { background: var(--green); }
.brand-card.launching::before { background: var(--orange); }
.brand-card.coming::before { background: var(--mid-grey); }
.brand-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.brand-name { font-size: 19px; font-weight: 700; color: var(--navy); }
.brand-desc { font-size: 15px; color: var(--dark-grey); line-height: 1.65; margin-bottom: 20px; }
.brand-footer { display: flex; align-items: center; justify-content: space-between; }
.brand-domain { font-size: 13px; color: var(--mid-grey); font-weight: 600; }

/* --- Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-num { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: rgba(0,196,184,0.2); line-height: 1; margin-bottom: 12px; }
.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* --- Opps --- */
.opp-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.opp-item { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-radius: var(--radius); transition: all 0.2s; }
.opp-item-light { background: var(--white); border: 1px solid var(--light-grey); }
.opp-item-light:hover { border-color: var(--blue); }
.bg-navy .opp-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.opp-item span:first-child { font-weight: 600; font-size: 15px; }
.opp-status { font-size: 13px; padding: 5px 14px; border-radius: 100px; font-weight: 600; }
.opp-active { background: rgba(34,197,94,0.12); color: var(--green); }
.opp-eoi { background: rgba(245,158,11,0.12); color: var(--orange); }
.opp-register { background: rgba(148,163,184,0.12); color: var(--mid-grey); }

/* --- Forms --- */
.form-container { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 4px 24px rgba(0,43,92,0.04); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--navy); }
.form-group .required::after { content: ' *'; color: var(--red); font-weight: 400; }
.form-input, .form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--light-grey); border-radius: 10px; font-size: 15px;
  font-family: var(--font-body); color: var(--text); transition: border-color 0.2s; background: var(--white); width: 100%;
}
.form-input:focus, .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,204,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--dark-grey); cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; }
.form-submit { margin-top: 32px; }
.form-success { display: none; text-align: center; padding: 32px; background: var(--green-bg); border-radius: var(--radius); margin-top: 24px; }
.form-success.show { display: block; }
.form-success p { color: var(--green); font-weight: 700; font-size: 17px; }
.form-success .sub { font-weight: 400; font-size: 15px; color: var(--dark-grey); margin-top: 8px; }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
.about-story p { font-size: 17px; line-height: 1.85; color: var(--dark-grey); margin-bottom: 24px; }
.mission-box { background: var(--off-white); border-left: 4px solid var(--teal); padding: 32px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 40px; }
.mission-box h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.mission-box p { font-size: 18px; color: var(--dark-grey); font-style: italic; margin-bottom: 0; }
.founder-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px; position: sticky; top: 100px; }
.founder-avatar { width: 80px; height: 80px; background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-family: var(--font-display); font-size: 32px; font-weight: 700; color: white; }
.founder-card h4 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.founder-card .founder-title { font-size: 15px; color: var(--blue); font-weight: 600; margin-bottom: 16px; }
.founder-card p { font-size: 15px; color: var(--dark-grey); line-height: 1.75; margin-bottom: 20px; }
.founder-card a.linkedin-link { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--blue); text-decoration: none; font-weight: 600; padding: 8px 20px; border: 2px solid var(--blue); border-radius: 100px; transition: all 0.2s; }
.founder-card a.linkedin-link:hover { background: var(--blue); color: var(--white); }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { padding: 28px; background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); transition: all 0.2s; }
.contact-method:hover { border-color: var(--blue); }
.contact-method h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-method a { font-size: 15px; color: var(--blue); text-decoration: none; word-break: break-all; }
.contact-method a:hover { text-decoration: underline; }
.contact-method p { font-size: 15px; color: var(--dark-grey); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--light-grey); border-radius: var(--radius-lg); padding: 40px; box-shadow: 0 4px 24px rgba(0,43,92,0.04); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 24px; color: var(--navy); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }

/* --- CTA sections --- */
.cta-section { background: var(--navy); color: var(--white); padding: 80px 32px; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -200px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,168,157,0.06); }
.cta-section .section-title { color: var(--white); }

/* --- Footer --- */
footer { background: var(--navy); color: rgba(255,255,255,0.7); position: relative; overflow: hidden; }
footer::after { content: ''; position: absolute; bottom: -180px; right: 10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,102,204,0.08); pointer-events: none; }
.footer-main { max-width: var(--max-width); margin: 0 auto; padding: 64px 32px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.footer-brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--white); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 32px; position: relative; z-index: 1; }
.footer-bottom-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { font-size: 13px; }
.footer-bottom-inner a { color: var(--teal-light); text-decoration: none; font-size: 13px; }
.footer-bottom-inner a:hover { text-decoration: underline; }

/* --- Animations --- */
.fade-up { opacity: 0; transform: translateY(28px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .what-we-do-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--light-grey); padding: 16px 32px 24px; box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
  .nav-links.open a.nav-cta { margin-left: 0; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-container { padding: 32px 24px; }
  .quick-links-inner { grid-template-columns: 1fr 1fr; }
  .ql-item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  :root { --section-pad: 64px; }
  section { padding: var(--section-pad) 20px; }
  .hero { padding: 60px 20px 100px; }
  .hero-compact { padding: 56px 20px 100px; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .quick-links-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABOUT PAGE — Extended Layouts
   ============================================================ */

/* Mission block */
.about-mission-block {
  max-width: 720px;
  padding: 20px 0;
}
.about-mission-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  border-left: 4px solid var(--teal);
  padding-left: 28px;
}

/* Story grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.about-story-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--dark-grey);
  margin-bottom: 20px;
}
.about-story-content p:last-child { margin-bottom: 0; }

/* Beliefs */
.beliefs-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.belief-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-grey);
}
.belief-item:first-child { padding-top: 0; }
.belief-item:last-child { border-bottom: none; }
.belief-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.belief-icon svg { width: 24px; height: 24px; }
.belief-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.belief-item p {
  font-size: 15px;
  color: var(--dark-grey);
  line-height: 1.7;
}

/* Model grid */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.model-content p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

/* Leader card */
.leader-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 16px;
}
.leader-left { flex-shrink: 0; }
.leader-card .founder-avatar {
  width: 96px;
  height: 96px;
  font-size: 28px;
}
.leader-right h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.leader-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.leader-right p {
  font-size: 16px;
  color: var(--dark-grey);
  line-height: 1.75;
  margin-bottom: 16px;
}
.leader-location {
  font-weight: 600;
  color: var(--navy) !important;
  font-size: 15px !important;
}
.leader-right .linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 24px;
  border: 2px solid var(--blue);
  border-radius: 100px;
  transition: all 0.2s;
  margin-top: 4px;
}
.leader-right .linkedin-link:hover {
  background: var(--blue);
  color: var(--white);
}

@media (max-width: 900px) {
  .model-grid { grid-template-columns: 1fr; gap: 32px; }
  .leader-card { flex-direction: column; padding: 32px; }
  .belief-item { gap: 16px; }
}
@media (max-width: 600px) {
  .leader-card { padding: 24px; }
  .about-mission-text { font-size: 22px; padding-left: 20px; }
}
