/* ============================================================
   SITE.CSS: Upstar MHS: Layout & Component Styles
   ============================================================ */

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
[data-theme='dark'] .logo img {
  mix-blend-mode: lighten;
  filter: brightness(1.1);
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}
.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--color-surface-2);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
}
.theme-btn:hover { color: var(--color-text); }
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  border-radius: var(--radius-md);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-12));
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-4);
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .menu-btn { display: flex; }
  .header-actions .btn { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--color-text-inverse);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-shape--1 {
  width: 700px; height: 700px;
  background: var(--orange);
  top: -200px; right: -100px;
}
.hero-shape--2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -100px; left: -80px;
}
.hero-shape--3 {
  width: 300px; height: 300px;
  background: var(--yellow);
  top: 100px; left: 30%;
  opacity: 0.07;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}
.hero-content { max-width: 560px; }
.hero-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: #ffffff;
  margin-block: var(--space-4) var(--space-6);
  line-height: 1.1;
}
.hero-title em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 52ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--space-4);
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform var(--transition), background var(--transition);
}
.hero-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }
.hero-card--main {
  grid-column: 1 / -1;
}
.hero-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.hero-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: #ffffff;
  margin-bottom: var(--space-2);
}
.hero-card__text {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  max-width: 100%;
}
.hero-announcement {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(245,184,0,0.12);
  border: 1px solid rgba(245,184,0,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
}
.announcement-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.hero-announcement p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.85);
  max-width: 100%;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

/* ---- STRIP ---- */
.strip {
  padding-block: var(--space-4);
}
.strip--navy { background: var(--navy); }
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.strip--navy p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  max-width: 65ch;
}
.strip-link {
  color: var(--yellow);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  white-space: nowrap;
}
.strip-link:hover { text-decoration: underline; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header .badge { margin-bottom: var(--space-3); }
.section-header h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-inline: auto;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.service-card h3 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}
.service-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.service-link:hover { text-decoration: underline; }
.services-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- MISSION BAND ---- */
.mission-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  color: #fff;
}
.mission-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
}
.mission-band__text .badge { background: rgba(245,184,0,0.2); color: var(--yellow); }
.mission-band__text h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-block: var(--space-4);
}
.mission-band__text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 56ch;
}
.mission-band__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  min-width: 180px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .mission-band__inner { grid-template-columns: 1fr; }
  .mission-band__stats { flex-direction: row; flex-wrap: wrap; }
}

/* ---- WHO WE HELP ---- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-6);
}
.who-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.who-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.who-card__accent {
  height: 4px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  width: 48px;
}
.who-card h3 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.who-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--orange);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--space-3);
}
.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  max-width: 50ch;
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-actions .btn--primary {
  background: #fff;
  color: var(--orange);
}
.cta-actions .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: none;
}

/* ---- CONTACT BAR ---- */
.contact-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.contact-item__value {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}
a.contact-item__value:hover { color: var(--orange); }
.contact-divider {
  width: 1px;
  height: 60px;
  background: var(--color-divider);
}
@media (max-width: 600px) {
  .contact-divider { display: none; }
  .contact-bar__inner { gap: var(--space-6); justify-content: flex-start; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: var(--space-4); }
.logo--light { color: #fff; }
.logo--light .logo-text strong { color: #fff; }
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-address {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-address p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  max-width: 100%;
}
.footer-address a {
  color: rgba(255,255,255,0.5) !important;
  font-size: var(--text-xs) !important;
}
.footer-bottom {
  padding-block: var(--space-5);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  max-width: 100%;
}
.footer-crisis {
  color: rgba(255,255,255,0.5) !important;
}
.footer-crisis strong { color: var(--yellow); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-10); }
}
@media (max-width: 600px) {
  .footer-links { grid-template-columns: 1fr 1fr; }
}

/* ---- SCROLL ANIMATION ---- */
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-anim].visible {
  opacity: 1;
  transform: none;
}

/* ---- PHOTO STRIPS ---- */
.photo-row {
  display: flex;
  gap: var(--space-6);
  align-items: stretch;
  margin-block: var(--space-12);
}
.photo-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-block:hover img {
  transform: scale(1.03);
}
.photo-inline {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-height: 320px;
}
.photo-inline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-block: var(--space-8);
}
.photo-pair .photo-block {
  height: 220px;
}
@media (max-width: 600px) {
  .photo-pair { grid-template-columns: 1fr; }
  .photo-row { flex-direction: column; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
}
.page-hero__badge { margin-bottom: var(--space-4); }
.page-hero__badge .badge { background: rgba(245,184,0,0.18); color: var(--yellow); }
.page-hero h1 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  max-width: 56ch;
  line-height: 1.7;
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.about-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-card h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.value-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 100%;
}
@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---- SERVICES PAGE ---- */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}
.service-detail-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-divider);
}
.service-detail-row:last-child { border-bottom: none; }
.service-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-divider);
  line-height: 1;
}
.service-detail h3 {
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.service-detail p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-2) var(--space-4);
}
.service-detail li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  max-width: 100%;
}
.service-detail li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 600px) {
  .service-detail-row { grid-template-columns: 1fr; }
  .service-num { font-size: var(--text-2xl); }
}

/* ---- CONTACT / FORM PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-sidebar h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.contact-sidebar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.contact-info-item p, .contact-info-item a {
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  max-width: 100%;
}
.contact-info-item a:hover { color: var(--orange); }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ---- FORM STYLES ---- */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-sm);
}
.form-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: var(--content-default);
  margin-inline: auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.faq-body p {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- DIAGNOSES TAGS ---- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.tag {
  display: inline-flex;
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---- START SERVICES PAGE ---- */
.start-intro {
  background: var(--green-light);
  border: 1px solid rgba(46,125,79,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.start-intro svg { flex-shrink: 0; margin-top: 2px; }
.start-intro p {
  font-size: var(--text-sm);
  color: var(--green);
  font-weight: 500;
  max-width: 100%;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
.step-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.step-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.step-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 100%;
}

/* ============================================================
   HIRING SECTION
   ============================================================ */
.hiring-section {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.hiring-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (max-width: 768px) {
  .hiring-inner { grid-template-columns: 1fr; gap: var(--space-8); }
}
.hiring-text h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.hiring-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  line-height: 1.7;
}
.hiring-roles {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.hiring-role-pill {
  background: var(--green-light);
  color: var(--green);
  border: 1.5px solid rgba(27,153,139,0.25);
  border-radius: 999px;
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-display);
}
.hiring-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.hiring-card__icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.hiring-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}
.hiring-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hiring-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.badge--green {
  background: var(--green);
  color: #fff;
}
