/* ===================================
   CSS Variables (Design Tokens)
   =================================== */
:root {
  /* Cardiology-inspired palette: Deep burgundy/crimson with warm neutrals */
  --background: oklch(0.98 0.005 30);
  --foreground: oklch(0.15 0.02 30);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.15 0.02 30);

  /* Primary: Deep Burgundy/Crimson - represents the heart */
  --primary: oklch(0.35 0.15 15);
  --primary-foreground: oklch(0.98 0.005 30);

  /* Secondary: Warm cream/beige */
  --secondary: oklch(0.95 0.01 60);
  --secondary-foreground: oklch(0.25 0.02 30);

  /* Muted: Soft warm gray */
  --muted: oklch(0.94 0.008 60);
  --muted-foreground: oklch(0.45 0.02 30);

  /* Accent: Rose gold / warm copper */
  --accent: oklch(0.65 0.12 35);
  --accent-foreground: oklch(0.15 0.02 30);

  --border: oklch(0.9 0.01 60);
  --input: oklch(0.92 0.008 60);
  --ring: oklch(0.35 0.15 15);

  /* Custom cardiology tokens */
  --heart: oklch(0.45 0.18 15);
  --heart-light: oklch(0.85 0.08 15);
  --pulse: oklch(0.55 0.15 25);

  --radius: 0.5rem;

  /* Font families */
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, monospace;
}

/* ===================================
   Base Styles
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--heart-light);
  color: var(--foreground);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-primary {
  color: var(--primary);
}

.text-light-muted {
  opacity: 0.8;
}

.hidden {
  display: none !important;
}

/* Icon sizes */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ===================================
   Button Styles
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: oklch(0.3 0.15 15);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--foreground);
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-full {
  width: 100%;
}

.btn-submit {
  height: 3rem;
}

/* ===================================
   Header Styles
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .header-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link:hover .logo-icon {
  transform: scale(1.1);
}

.logo-icon {
  position: relative;
  transition: transform 0.3s ease;
}

.heart-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-name {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--foreground);
  display: block;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--foreground);
}

/* White text when over hero section */
.header.over-hero .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header.over-hero .nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--foreground);
}

/* White text when over hero */
.header.over-hero .phone-link {
  color: rgba(255, 255, 255, 0.8);
}

.header.over-hero .phone-link:hover {
  color: rgba(255, 255, 255, 1);
}

/* Mobile menu button over hero */
.header.over-hero .mobile-menu-btn {
  color: rgba(255, 255, 255, 1);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-divider {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 21, 21, 0.95) 0%, rgba(21, 21, 21, 0.8) 50%, rgba(21, 21, 21, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 2rem;
  }
}

.hero-text {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  position: relative;
  color: var(--primary);
  font-weight: 400;
}

.hero-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  color: var(--primary);
  opacity: 0.3;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ===================================
   Marquee Bar
   =================================== */
.marquee-bar {
  background: var(--primary);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 2rem;
}

.marquee-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-right: 2rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================================
   Section Headers
   =================================== */
.section-header-sm {
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-sublabel {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title-lg {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 48rem;
}

@media (min-width: 640px) {
  .section-title-lg {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title-lg {
    font-size: 3rem;
  }
}

/* Static section title (no link styling) */
.section-title-static {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--foreground);
  pointer-events: none;
}

@media (min-width: 640px) {
  .section-title-static {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title-static {
    font-size: 3rem;
  }
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-label-light {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.section-title-light {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary-foreground);
  max-width: 48rem;
}

@media (min-width: 640px) {
  .section-title-light {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title-light {
    font-size: 3rem;
  }
}

/* ===================================
   About Section
   =================================== */
.about-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .about-section {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-title {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-link-wrapper {
  margin-top: 2rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.link-arrow:hover {
  color: var(--primary);
}

.link-arrow:hover svg {
  transform: translateX(0.25rem);
}

.link-arrow svg {
  transition: transform 0.3s ease;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-highlights {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.highlights-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.highlights-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 3rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .highlights-title {
    font-size: 1.875rem;
  }
}

.highlights-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: rgba(107, 44, 44, 0.3);
}

.highlight-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
  transform: scale(1.05);
}

.highlight-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
}

.highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(107, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.highlight-number {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

/* Clean highlight cards (no images) */
.highlight-card-clean {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.highlight-card-clean:hover {
  border-color: rgba(107, 44, 44, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-clean-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.highlight-clean-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.highlight-clean-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.highlight-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 0.5rem;
}

.highlight-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===================================
   Certifications Section
   =================================== */
.certifications-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.02);
}

@media (min-width: 1024px) {
  .certifications-section {
    padding: 8rem 0;
  }
}

.certs-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .certs-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.certs-intro {
  color: var(--muted-foreground);
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .certs-intro {
    text-align: right;
  }
}

.certs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-card {
  position: relative;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: rgba(107, 44, 44, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(107, 44, 44, 0.2);
  transition: background 0.3s ease;
}

.cert-card:hover .cert-accent {
  background: var(--primary);
}

.cert-content {
  padding: 2rem;
  padding-left: 2.5rem;
}

.cert-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cert-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(107, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  color: var(--primary);
}

.cert-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  background: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.cert-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.cert-card:hover .cert-title {
  color: var(--primary);
}

.cert-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cert-check {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-check svg {
  color: var(--primary);
}

.cert-card:hover .cert-check {
  opacity: 1;
}

.memberships {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.memberships-label {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.memberships-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.membership-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
}

.membership-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(107, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-icon span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.membership-name {
  font-size: 0.875rem;
}

/* ===================================
   Expertise Section
   =================================== */
.expertise-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .expertise-section {
    padding: 8rem 0;
  }
}

.expertise-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .expertise-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.expertise-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-color: rgba(107, 44, 44, 0.5);
  background: rgba(0, 0, 0, 0.02);
}

.accordion-item:hover:not(.active) {
  border-color: var(--border);
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.accordion-title {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
  color: var(--primary);
}

.accordion-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-chevron {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 10rem;
  opacity: 1;
}

.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.expertise-image-container {
  position: relative;
  height: 37.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-image-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-image-wrapper.active {
  opacity: 1;
  z-index: 10;
}

.expertise-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.8) 0%, transparent 50%, transparent 100%);
}

.expertise-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.expertise-image-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--card);
  margin-bottom: 0.5rem;
}

.expertise-image-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Expertise Mobile */
.expertise-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .expertise-mobile {
    display: none;
  }
}

.expertise-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--card);
}

.expertise-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.expertise-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.7) 0%, transparent 100%);
}

.expertise-card-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.expertise-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise-card-icon svg {
  color: var(--primary);
}

.expertise-card-image-content h3 {
  font-weight: 500;
  color: var(--card);
  font-size: 1.125rem;
}

.expertise-card-image-medical {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f8f8f8;
}

.expertise-card-image-medical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-card-image-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.expertise-card-image-header h3 {
  font-weight: 500;
  color: var(--foreground);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .expertise-card-image-header h3 {
    font-size: 1.125rem;
  }
}

.expertise-card-content {
  padding: 1.25rem;
}

.expertise-card-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===================================
   Hospitals Section
   =================================== */
.hospitals-section {
  padding: 6rem 0;
  background: var(--foreground);
}

@media (min-width: 1024px) {
  .hospitals-section {
    padding: 8rem 0;
  }
}

.hospitals-intro {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-bottom: 3rem;
}

.hospitals-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hospitals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hospital-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hospital-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.hospital-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hospital-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hospital-card:hover .hospital-image img {
  transform: scale(1.05);
}

.hospital-content {
  padding: 1.5rem;
}

.hospital-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hospital-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

.hospital-card:hover .hospital-name {
  color: rgba(255, 255, 255, 0.9);
}

.hospital-header svg {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.hospital-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hospital-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ===================================
   Technology Section
   =================================== */
.technology-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.02);
}

@media (min-width: 1024px) {
  .technology-section {
    padding: 8rem 0;
  }
}

.tech-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.tech-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tech-card:hover .tech-image img {
  transform: scale(1.1);
}

.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.9) 0%, rgba(21, 21, 21, 0.2) 50%, transparent 100%);
}

.tech-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.tech-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--card);
  margin-bottom: 0.5rem;
}

.tech-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===================================
   Approach Section
   =================================== */
.approach-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .approach-section {
    padding: 8rem 0;
  }
}

.approach-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.approach-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.approach-note {
  font-size: 0.875rem !important;
  color: rgba(0, 0, 0, 0.5) !important;
}

/* ===================================
   Insurance Section
   =================================== */
.insurance-section {
  padding: 6rem 0;
  background: rgba(107, 44, 44, 0.05);
}

@media (min-width: 1024px) {
  .insurance-section {
    padding: 8rem 0;
  }
}

.insurance-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .insurance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.insurance-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.insurance-cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.insurance-cta-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(107, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insurance-cta-icon svg {
  color: var(--primary);
}

.insurance-cta-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.insurance-cta-phone {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.insurance-cta-phone:hover {
  color: var(--primary);
}

.insurance-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.insurance-card-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.insurance-providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.insurance-provider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.insurance-provider:hover {
  background: rgba(0, 0, 0, 0.02);
}

.insurance-provider svg {
  color: var(--primary);
  flex-shrink: 0;
}

.insurance-provider span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.insurance-card-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--background);
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 8rem 0;
  }
}

.cta-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .cta-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-card {
  padding: 2rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-number {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.cta-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: oklch(0.25 0.15 15);
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(107, 44, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--primary);
}

.contact-label {
  font-weight: 500;
  color: var(--foreground);
}

.contact-value {
  color: var(--muted-foreground);
}

.contact-phone {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.contact-phone:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--card-foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.form-input {
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--foreground);
  min-height: 7.5rem;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--foreground);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.heart-icon-light {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.footer-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-foreground);
  display: block;
}

.footer-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  max-width: 24rem;
  line-height: 1.6;
}

.footer-links-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-foreground);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-list li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--primary-foreground);
}

.footer-brand-large {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  display: flex;
  justify-content: center;
}

.footer-brand-svg {
  width: 100%;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.05);
}

.footer-brand-text {
  font-size: 4.5rem;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Animations
   =================================== */
@keyframes pulse-line {

  0%,
  100% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.1);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-pulse-line {
  animation: pulse-line 2s ease-in-out infinite;
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}