/*
Theme Name: Xestro Healthcare Theme
Author: Your Name
Version: 1.0
*/

/* =====================
   DESIGN SYSTEM - COLORS
   ===================== */
:root {
  /* Primary Brand Colors */
  --primary-blue: #1e3a8a;
  --primary-blue-dark: #4338ca;
  --primary-blue-light: #6366f1;
  
  /* Secondary Colors */
  --secondary-orange: #ff6b35;
  --secondary-orange-dark: #e55a2b;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-accent: #f3f6ff;
  
  /* Text Colors */
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;
  
  /* Border Colors */
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-dark: #9ca3af;
  
  /* Shadow Colors */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Skip Links for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Focus states for better accessibility */
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0000ff;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-light: #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  font-size: 16px;
  padding-top: 120px; /* 40px banner + 80px header */
}

@media (max-width: 768px) {
  body {
    padding-top: 110px; /* 40px banner + 70px header (mobile) */
  }
}

/* =====================
   UPDATED CONTAINER SYSTEM
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* =====================
   UPDATED SPACING SYSTEM
   ===================== */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-padding-lg {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-padding-sm {
    padding: 2rem 0;
  }
  
  .section-padding-lg {
    padding: 4rem 0;
  }
}

/* =====================
   UPDATED GRID SYSTEM
   ===================== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* =====================
   UTILITY CLASSES
   ===================== */
.text-orange {
  color: var(--secondary-orange);
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* =====================
   UPDATED BUTTON STYLES
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:focus {
  background-color: var(--primary-blue-dark);
  box-shadow: 0 0 0 3px rgba(77, 73, 252, 0.3);
}

.btn-secondary {
  background-color: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background-color: var(--gray-200);
  border-color: var(--border-dark);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
}

.btn-ghost:hover {
  background-color: var(--primary-blue);
  color: var(--text-inverse);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-orange);
  color: var(--secondary-orange);
}

.btn-outline:hover {
  background-color: var(--secondary-orange);
  color: var(--text-inverse);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-cta {
  background-color: var(--primary-blue);
  color: var(--text-inverse);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
}

.btn-cta:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-1px);
}

.btn-newsletter {
  background-color: var(--primary-blue);
  color: var(--text-inverse);
  padding: 0.75rem 1.5rem;
  border-radius: 0 50px 50px 0;
}

.btn-newsletter:hover {
  background-color: var(--primary-blue-dark);
}

.btn.btn-primary.btn-contact-nav {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: var(--text-inverse) !important;
}

.btn.btn-primary.btn-contact-nav:hover {
  background-color: var(--primary-blue-dark) !important;
  border-color: var(--primary-blue-dark) !important;
  color: var(--text-inverse) !important;
}

/* Header Styles */
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: white;
  backdrop-filter: blur(10px);
  height: 80px;
  transition: top 0.3s ease;
}

/* When banner is hidden, move header to top */
.header.no-banner {
  top: 0;
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu a {
    padding: 0.75rem 1rem;
    border-radius: 50px;
    transition: background-color 0.2s ease;
  }
  
  .nav-menu a:hover {
    background-color: #f3f4f6;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }
  
  .nav-cta {
    gap: 0.5rem;
  }
  
  .nav-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1100px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  .logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo-img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 5rem !important;
    width: auto !important;
  }
  
  .nav-menu {
    display: flex !important;
    visibility: visible !important;
  }
}

/* Fix for 1100px breakpoint - ensure proper menu stacking */
@media (min-width: 769px) and (max-width: 1099px) {
  .nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    order: unset;
    width: auto;
    justify-content: flex-start;
    margin: 0;
    flex-wrap: nowrap;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu ul {
    flex-direction: column !important;
  }
  
  .nav-menu ul li {
    width: 100%;
  }
  
  .nav-menu a {
    padding: 0.75rem 1rem;
    border-radius: 50px;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .nav-menu a:hover {
    background-color: #f3f4f6;
  }
  
  .nav-menu ul li ul.sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #f9fafb;
    padding-left: 0;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  
  /* Show submenu when parent has submenu-open class or is hovered */
  .nav-menu ul li.submenu-open > ul.sub-menu,
  .nav-menu ul li:hover > ul.sub-menu {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  
  .submenu-indicator {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .nav-menu ul li.submenu-open .submenu-indicator,
  .nav-menu ul li:hover .submenu-indicator {
    transform: rotate(-135deg);
  }
  
  .nav-menu ul li ul.sub-menu li a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    order: 2;
  }
  
  .nav-cta {
    order: 3;
    margin-left: auto;
  }
  
  .logo {
    order: 1;
    display: flex !important;
    visibility: visible !important;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
}

.logo-img {
  height: 5rem;
  width: auto;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
}

.nav-menu {
  margin-left: auto !important;
  margin-right: 2rem;
}

.nav-menu ul {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu ul li {
  position: relative;
  display: inline-block;
}

.nav-menu ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #9cacc2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-menu ul li a:hover {
  color: #ff6b35;
}

/* Submenu styles */
.nav-menu ul li ul.sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  flex-direction: column !important;
}

.nav-menu ul li:hover > ul.sub-menu {
  display: block !important;
}

.nav-menu ul li ul.sub-menu li {
  display: block;
  width: 100%;
}

.nav-menu ul li ul.sub-menu li a {
  padding: 0.5rem 1rem;
  display: block;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item.has-submenu > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.submenu-indicator {
  border: solid #9cacc2;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item.has-submenu:hover .submenu-indicator {
  transform: rotate(-135deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}

.nav-item.has-submenu:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .nav-link {
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
  color: #9cacc2;
}

.sub-menu .nav-link:hover {
  background: #f3f4f6;
  color: #ff6b35;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
  .nav-menu {
    width: 100%;
  }

  .nav-menu ul {
    flex-direction: column !important;
    gap: 0;
    width: 100%;
  }

  .nav-menu ul li {
    width: 100%;
    display: block;
  }

  .nav-menu ul li a {
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav-menu ul li ul.sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #f9fafb;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Show submenu when parent has submenu-open class or is hovered */
  .nav-menu ul li.submenu-open > ul.sub-menu,
  .nav-menu ul li:hover > ul.sub-menu {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }

  .submenu-indicator {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .nav-menu ul li.submenu-open .submenu-indicator,
  .nav-menu ul li:hover .submenu-indicator {
    transform: rotate(-135deg);
  }
  
  .nav-menu ul li ul.sub-menu li a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

.nav-link {
  color: #9cacc2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    justify-content: flex-end;
  }
}

/* =====================
   UPDATED HERO SECTION
   ===================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);*/
  padding-top: 6rem;
  min-height: 100vh;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 17%, rgba(201, 220, 255, 1) 43%, rgba(255, 255, 255, 1) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: radial-gradient(circle at 20% 80%, rgba(77, 73, 252, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);*/
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.hero-content {
  max-width: 36rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    font-weight: 400;
  }
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
  }
}

.hero-cta {
  margin-bottom: 3rem;
}

.hero-cta .btn {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  background-color: #1D4ED8;
  color: white;
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
  font-family: "Inter", sans-serif;
}

.hero-cta .btn:hover {
  background-color: #1e40af;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hero-cta .btn:focus {
  background-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.3);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  transition: transform 0.8s ease-out;
  will-change: transform;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-partners {
  text-align: center;
}

@media (min-width: 640px) {
  .hero-partners {
    text-align: left;
  }
}

.partners-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.6;
}

@media (min-width: 640px) {
  .partners-list {
    justify-content: flex-start;
  }
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.7;
}

.partner {
  color: #6b7280;
  font-weight: 500;
}

.partner-logo {
  transition: opacity 0.2s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* Hero Mockups */
.hero-mockups {
  position: relative;
  height: 37.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
  transition: transform 0.5s ease;
  backdrop-filter: blur(20px);
}

.mockup-3d {
  position: absolute;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e2e8f0;
  transition: transform 0.5s ease;
  backdrop-filter: blur(20px);
}

.mockup-3d:hover {
  transform: translateY(-8px) rotateY(5deg);
}

.mockup-main {
  position: relative;
  z-index: 10;
  transform: rotate(-6deg);
  padding: 1.5rem;
  width: 20rem;
  margin-left: 2rem; /* Move to the right */
}

.mockup-main:hover {
  transform: rotate(0deg);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: #ff6b35;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.logo-text {
  font-weight: 600;
  color: #1f2937;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.mockup-avatar {
  width: 2rem;
  height: 2rem;
  background-color: #f3f4f6;
  border-radius: 50%;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1e293b;
}

.user-role {
  font-size: 0.75rem;
  color: #64748b;
}

.mockup-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-welcome {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.welcome-content h3 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.welcome-content p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.welcome-stats {
  display: flex;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.nav-item:hover {
  background: #f8fafc;
}

.nav-item.active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.nav-icon {
  font-size: 1rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  font-size: 0.875rem;
}

.menu-item:hover {
  background-color: #f9fafb;
}

.menu-item.active {
  background-color: #fef3f0;
}

.menu-item.active .menu-item-text {
  font-weight: 500;
}

.menu-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #d1d5db;
  border-radius: 50%;
}

.menu-dot.active {
  background-color: #ff6b35;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform: translateZ(0);
  width: auto;
  max-width: 240px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.02) translateZ(0);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
  z-index: 10;
}

/* Position floating cards around the main mockup */
.card-patient {
  top: 10%;
  right: 5%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  width: 200px;
  height: 200px;
  transform: rotate(-6deg);
}

.card-schedule {
  top: 60%;
  right: 15%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  width: 180px;
  height: 180px;
  transform: rotate(-6deg);
}

.card-priority {
  top: 20%;
  left: 10%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  width: 160px;
  height: 160px;
  transform: rotate(-6deg);
}

.card-project {
  bottom: 20%;
  left: 5%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  width: 140px;
  height: 140px;
  transform: rotate(-6deg);
}

.card-meeting {
  top: 40%;
  left: 60%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: 1px solid #6366f1;
  width: 150px;
  height: 150px;
  overflow: hidden;
  box-sizing: border-box;
  color: #fff;
  transform: rotate(-6deg);
}

.card-meeting:hover {
  background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
  border-color: #5856eb;
  transform: rotate(-6deg) translateY(-8px) scale(1.02) translateZ(0);
}

.card-meeting *, .card-meeting .meeting-name, .card-meeting .meeting-time {
  color: #fff;
}

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

.avatar {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.625rem;
}

.card-info {
  flex: 1;
}

.card-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.125rem;
  letter-spacing: -0.025em;
}

.card-desc {
  font-size: 0.625rem;
  color: #6b7280;
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.priority-label {
  font-weight: 600;
  font-size: 0.625rem;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.priority-task {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.125rem;
  letter-spacing: -0.025em;
}

.priority-time {
  font-size: 0.625rem;
  color: #6b7280;
}

.project-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.project-status {
  font-size: 0.625rem;
  color: #059669;
  font-weight: 500;
}

.meeting-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.meeting-time {
  font-size: 0.625rem;
  color: #6b7280;
  font-weight: 500;
}

.card-button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.card-button:hover {
  background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
  transform: translateY(-1px);
}

.card-schedule {
  bottom: 2rem;
  left: 1rem;
  transform: rotate(-6deg);
  width: 14rem;
  height: 10rem;
  z-index: 20;
}

.card-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.card-date {
  font-size: 0.625rem;
  color: #6b7280;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.625rem;
}

.schedule-row span:first-child {
  color: #6b7280;
  font-weight: 500;
}

.schedule-row span:last-child {
  color: #1f2937;
  font-weight: 600;
}

.card-priority {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-6deg);
  width: 12rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  z-index: 15;
  border: none;
}

.priority-label {
  font-weight: 600;
  font-size: 0.625rem;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.priority-task {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.125rem;
  letter-spacing: -0.025em;
}

.priority-time {
  font-size: 0.625rem;
  color: #6b7280;
}

.card-project {
  top: 2rem;
  left: 2rem;
  transform: rotate(-6deg);
  width: 8rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  z-index: 15;
  border: none;
}

.project-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.project-status {
  font-size: 0.625rem;
  color: #059669;
  font-weight: 500;
}

.meeting-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.meeting-time {
  font-size: 0.625rem;
  color: #6b7280;
  font-weight: 500;
}

/* Main Dashboard */
.main-dashboard {
  top: 20px;
  left: 50px;
  width: 350px;
  height: 450px;
  padding: 1.5rem;
  z-index: 10;
  transform: rotateY(15deg) rotateX(-5deg) rotate(-6deg);
}

/* Feature Highlight Section */
.feature-highlight {
  padding: 10rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-grid {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Mockups Container */
.highlight-mockups {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

/* Main Dashboard Mockup */
.mockup-main-dashboard {
  position: absolute;
  top: 20px;
  left: 50px;
  width: 320px;
  height: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 3;
  transform: rotate(-2deg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: #6366f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.dashboard-logo .logo-text {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 50%;
}

.dashboard-welcome {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.welcome-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.welcome-content p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

.welcome-illustration {
  position: absolute;
  right: 15px;
  top: 15px;
}

.doctor-avatar {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
}

.doctor-avatar::before {
  content: "👨‍⚕️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

.dashboard-tasks h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.task-calendar {
  background: #f8fafc;
  border-radius: 8px;
  padding: 12px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calendar-header span {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
}

.calendar-nav {
  display: flex;
  gap: 4px;
}

.calendar-nav button {
  width: 20px;
  height: 20px;
  border: none;
  background: #e5e7eb;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
}

.calendar-grid {
  display: flex;
  gap: 8px;
}

.calendar-day {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border-radius: 4px;
  color: #6b7280;
}

.calendar-day.active {
  background: #6366f1;
  color: white;
}

/* Sidebar Mockup */
.mockup-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 350px;
  background: #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  z-index: 1;
  transform: rotate(-5deg);
}

.sidebar-header {
  margin-bottom: 30px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-logo .logo-icon {
  width: 24px;
  height: 24px;
  background: #6366f1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.sidebar-logo span {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
}

.nav-item.active {
  color: #6366f1;
}

.nav-dot {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
}

.nav-dot.active {
  background: #6366f1;
}

/* Patient Panel Mockup */
.mockup-patient-panel {
  position: absolute;
  top: 60px;
  right: 0;
  width: 240px;
  height: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 2;
  transform: rotate(3deg);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.patient-avatar {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
}

.patient-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2px;
}

.patient-info span {
  font-size: 11px;
  color: #6b7280;
}

.priority-tasks h5 {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.task-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.task-item.urgent {
  background: linear-gradient(135deg, #090387 0%, #090387 100%);
  color: white;
}

.task-item.normal {
  background: linear-gradient(135deg, #6366f1 0%, #a9a8fe 100%);
  color: white;
}

.task-item.low {
  background: linear-gradient(135deg, #10b981 0%, #1e3a8a 100%);
  color: white;
}

.task-avatars {
  display: flex;
  gap: -4px;
}

.task-avatar {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: -4px;
}

/* Content Styles */
.highlight-content {
  max-width: 700px;
  width: 100%;
}

.highlight-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.highlight-features {
  margin-bottom: 2rem;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #4b5563;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid #1e3a8a;
}

.center {
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Use Cases Section with Background Pattern */
.use-cases {
  padding: 5rem 0 0 0;
  background: #EFF6FF; /* Light blue background */
  position: relative;
  overflow: hidden;
}

/* Remove the dotted grid background pattern for cleaner look */

.use-cases .container {
  position: relative;
  z-index: 2;
}

/* Update section header to match image design */
.use-cases .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.use-cases .section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.use-cases-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 50px; /* Pill-shaped container */
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .use-cases-tabs {
    gap: 0;
    margin-bottom: 2rem;
    padding: 6px;
    border-radius: 40px;
  }
  
  .tab-button {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .use-cases-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-radius: 20px;
    padding: 6px;
  }
  
  .tab-button {
    width: 100%;
    max-width: 200px;
    border-radius: 15px;
  }
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent; /* No background for inactive tabs */
  border-radius: 25px; /* Rounded corners for individual tabs */
  font-size: 14px;
  font-weight: 500;
  color: #4b5563; /* Dark grey text for all tabs */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.tab-button:hover {
  background: transparent; /* No background change on hover */
  color: #1e3a8a; /* Slightly darker text on hover */
}

.tab-button.active {
  background: #1e3a8a; /* Dark blue background for active tab (same as button) */
  border-color: transparent;
  color: white; /* White text for active tab */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-button svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #4b5563; /* Dark grey for all tab icons */
}

.tab-button.active svg {
  color: white; /* White for active tab icons */
}

.use-case-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  height: auto; /* Allow height to adjust to content */
}

.use-case-item.active {
  position: relative; /* Change from absolute to relative */
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  height: auto; /* Allow height to adjust to content */
}

.use-cases-content-wrapper {
  position: relative;
  min-height: auto; /* Remove fixed height, let content determine height */
  height: auto; /* Allow height to adjust to content */
}

.use-case-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: none;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-text {
  flex: 0 0 45%; /* Give text a fixed width */
  min-width: 0; /* Allow text to shrink if needed */
}

.use-case-mockup {
  flex: 1; /* Allow image to take remaining space */
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0; /* Allow container to shrink */
}

.use-case-mockup img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: contain;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .use-case-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .use-case-text {
    flex: none;
    width: 100%;
  }
  
  .use-case-mockup {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .use-case-grid {
    padding: 1.5rem;
  }
  
  .use-case-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
  }
  
  .use-case-text p {
    font-size: 1rem;
  }
}

.use-case-text h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #1e3a8a; /* Dark blue text */
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.use-case-text p {
  font-size: 1.125rem;
  color: #4b5563; /* Darker gray text for better readability */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.use-case-features {
  list-style: none;
  padding: 0;
}

.use-case-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #4b5563;
}

.use-case-features li::before {
  content: "•";
  color: #3b82f6; /* Blue bullet points */
  font-weight: bold;
}

/* Add CTA button styling to match image design */
.use-case-cta {
  margin-top: 2rem;
}

.use-case-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #1e3a8a; /* Dark blue button */
  color: white;
  text-decoration: none;
  border-radius: 12px; /* Rounded corners like in the image */
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.use-case-cta .btn:hover {
  background: #1e40af; /* Slightly lighter blue on hover */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.use-case-mockup {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  border: 1px solid #e5e7eb;
}

/* Enhanced mockup styling */
.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.preview-header span {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}

.preview-search {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.preview-welcome {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
  position: relative;
}

.welcome-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.welcome-text p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
}

.welcome-avatar {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.preview-tasks h5 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 12px;
  border: 1px solid #f1f5f9;
}

.task-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 500;
}

.task-status.urgent {
  background: #fef2f2;
  color: #dc2626;
}

.task-status.normal {
  background: #eff6ff;
  color: #2563eb;
}

/* Telehealth specific styles */
.telehealth-preview .preview-controls {
  display: flex;
  gap: 8px;
}

.control-btn {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.control-btn:hover {
  background: #e5e7eb;
}

.video-call-preview {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #f1f5f9;
}

.video-main {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.patient-video {
  flex: 1;
  background: #1f2937;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: white;
}

.doctor-video {
  width: 120px;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.video-placeholder span {
  font-size: 32px;
}

.video-placeholder.small span {
  font-size: 24px;
}

.video-placeholder p {
  font-size: 12px;
  margin: 0;
}

.doctor-video .video-placeholder {
  background: #374151;
  border-radius: 8px;
  padding: 16px;
  color: white;
}

.consultation-notes {
  background: white;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #f1f5f9;
}

.consultation-notes h5 {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.note-item {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
}

/* Practice Management specific styles */
.practice-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-card .stat-number {
  font-size: 18px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 4px;
}

.stat-card .stat-label {
  font-size: 10px;
  color: #6b7280;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.schedule-time {
  font-size: 11px;
  font-weight: 600;
  color: #6366f1;
  min-width: 60px;
}

.schedule-details span {
  font-size: 11px;
  font-weight: 500;
  color: #1f2937;
  display: block;
}

.schedule-details small {
  font-size: 10px;
  color: #6b7280;
}

/* Obstetrics specific styles */
.obstetrics-charts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chart-container {
  background: white;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chart-container h5 {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.chart-placeholder {
  height: 80px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.chart-bars {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 60px;
}

.bar {
  width: 16px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px 2px 0 0;
  min-height: 10px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric-item {
  background: white;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.metric-value {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 2px;
}

.metric-label {
  font-size: 9px;
  color: #6b7280;
}

.preview-date,
.preview-period {
  font-size: 12px;
  color: #6b7280;
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 4px;
}

.patient-avatar-preview {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.patient-avatar-preview::before {
  content: "👩‍💼";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

/* Enhanced focus styles for accessibility */
.tab-button:focus {
  outline: 3px solid #6366f1;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.btn:focus {
  outline: 3px solid #6366f1;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.nav-link:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

/* =====================
   UPDATED FEATURES SECTION
   ===================== */
.features-preview {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-family: "Inter", sans-serif;
}

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

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
    font-weight: 400;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

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

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  background: var(--bg-accent);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--primary-blue);
  color: var(--text-inverse);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: "Inter", sans-serif;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

/* =====================
   UPDATED TESTIMONIALS SECTION
   ===================== */
.testimonials {
  padding: 6rem 0;
  background: #EFF6FF; /* Light blue background matching use-cases section */
  position: relative;
  overflow: hidden;
}

/* Remove the grid pattern background for cleaner look */

.testimonials .container {
  position: relative;
  z-index: 1;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(77, 73, 252, 0.2);
}

/* Testimonial Carousel Wrapper */
.testimonial-carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  padding: 2rem 0;
}

.carousel-container {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: white;
  transform: scale(1.02);
  border: none;
  box-shadow: 0 20px 40px rgba(77, 73, 252, 0.3);
}

.testimonial-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 30px 60px rgba(77, 73, 252, 0.4);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.quote-icon {
  color: var(--secondary-orange);
  opacity: 0.8;
}

.testimonial-card.featured .quote-icon {
  color: rgba(255, 255, 255, 0.9);
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #fbbf24;
  font-size: 1.125rem;
}

.testimonial-card.featured .star {
  color: #fde68a;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card.featured .testimonial-text {
  color: white;
}

/* Testimonial Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-card.featured .author-name {
  color: white;
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.125rem;
}

.testimonial-card.featured .author-title {
  color: rgba(255, 255, 255, 0.8);
}

.author-location,
.author-company {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-card.featured .author-location,
.testimonial-card.featured .author-company {
  color: rgba(255, 255, 255, 0.7);
}

.verification-badge {
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card.featured .verification-badge {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.2);
}

/* Progress Bar */
.carousel-progress {
  margin-top: 2rem;
  padding: 0 1rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 33.33%;
}

/* Navigation Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.dot:hover {
  background: var(--primary-blue);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary-blue);
  transform: scale(1.2);
}

.dot.active::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  opacity: 0.3;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: var(--text-secondary);
  z-index: 10;
}

.carousel-arrow:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(77, 73, 252, 0.3);
}

.carousel-arrow.prev {
  left: -24px;
}

.carousel-arrow.next {
  right: -24px;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.trust-icon {
  color: var(--primary-blue);
  background: rgba(77, 73, 252, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.trust-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonial-carousel-wrapper {
    padding: 0 1rem;
  }
  
  .testimonial-slide {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-card.featured {
    transform: none;
  }
  
  .testimonial-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  
  .carousel-arrow.prev {
    left: -20px;
  }
  
  .carousel-arrow.next {
    right: -20px;
  }
  
  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .rating {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .verification-badge {
    align-self: flex-end;
  }
  
  .carousel-arrow {
    display: none;
  }
}

/* Integrations Section */
.integrations {
  padding: 5rem 0;
  background: #EFF6FF; /* Light blue background matching use-cases section */
}

.integrations .section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.integrations-logos {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .integrations-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .integrations-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .integrations-logos {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.integration-logo {
  display: flex;
  justify-content: center;
}

.integration-logo:hover {
  transform: translateY(-2px);
}

.integrations-logos .integration-logo .logo-circle {
  background-color: #ffffff !important;
  border-radius: 12px !important;
  border: 1px solid #e5e7eb !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 120px !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 280px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  cursor: pointer !important;
}

.integrations-logos .integration-logo .logo-circle:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}

.integrations-logos .integration-logo .logo-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
  max-width: 180px;
  max-height: 180px;
}

.integrations-logos .integration-logo .logo-circle svg {
  width: 24px;
  height: 24px;
}

.integrations-cta {
  text-align: center;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: white;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.toggle-label {
  color: #6b7280;
}

.toggle-switch {
  position: relative;
}

.toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  display: block;
  width: 3.5rem;
  height: 2rem;
  background-color: #ff6b35;
  border-radius: 1rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-color: white;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-input:checked + .toggle-slider::before {
  transform: translateX(1.5rem);
}

.discount-badge {
  background-color: #fef2f2;
  color: #dc2626;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  width: 350px;
  flex: 0 0 350px;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.pricing-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #0b0f19 0%, #0b0f19 100%);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.plan-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.starter-icon {
  background-color: #dbeafe;
  color: #2563eb;
}

.professional-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.enterprise-icon {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.period {
  color: #6b7280;
  margin-left: 0.5rem;
}

.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

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

.check-icon {
  color: #10b981;
}

.x-icon {
  color: #9ca3af;
}

.feature.excluded {
  color: #9ca3af;
}

.featured .feature.excluded {
  color: rgba(255, 255, 255, 0.6);
}

.featured .feature.excluded .x-icon {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-note {
  color: #6b7280;
  margin-bottom: 1rem;
}

.pricing-contact {
  font-size: 0.875rem;
  color: #6b7280;
}

.contact-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: #e55a2b;
}

/* =====================
   UPDATED CTA SECTION
   ===================== */
.cta {
  padding: 6rem 0;
  background: white;
  border-radius: 2rem 2rem 0 0;
  margin: 0 1rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-inner {
  background-color: black;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 400;
  color: antiquewhite;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3.5rem;
    font-weight: 400;
  }
}

.cta-subtitle {
  font-size: 1.375rem;
  color: antiquewhite;
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.cta-form {
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.email-input-group {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}

.email-input {
  flex: 1;
  padding: 1rem;
  border: none;
  background-color: white;
  color: #1f2937;
  font-size: 1rem;
}

.email-input:focus {
  outline: none;
}

.email-input::placeholder {
  color: #9ca3af;
}

.cta-button {
  margin-bottom: 2rem;
}

.cta-button .btn-primary {
  background-color: darkorange;
  color: white;
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
}

.cta-button .btn-primary:hover {
  background-color: #cc7000;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cta-button .btn-primary:focus {
  background-color: #cc7000;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3);
}

.cta-disclaimer {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background-color: #f9fafb;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

@media (max-width: 768px) {
  .footer-grid {
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }
  
  .newsletter-input {
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .btn-newsletter {
    border-radius: 0.5rem;
  }
}

.footer-company {
  grid-column: 1;
}

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

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.company-desc {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.newsletter {
  margin-top: 2rem;
}

.newsletter-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 20rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  background-color: white;
  color: #1f2937;
  border-radius: 0.5rem 0 0 0.5rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ff6b35;
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Error message styling */
.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.nav-column {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-list .nav-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-list .nav-link:hover {
  color: #ff6b35;
}

.footer-contact {
  grid-column: 1;
}

@media (min-width: 1024px) {
  .footer-contact {
    grid-column: 3;
  }
}

.contact-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.contact-email {
  margin-bottom: 2rem;
}

.email-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  color: #1d4ed8;
}

.social-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 0px solid #e5e7eb;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: #6b7280;
  font-size: 0.875rem;
}

.team-name {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .highlight-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .highlight-mockups {
    height: 300px;
    transform: scale(0.8);
  }

  .highlight-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    font-weight: 400;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
  }

  .section-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .cta-title {
    font-size: 2rem;
    font-weight: 400;
  }

  .hero-mockups {
    height: 20rem;
  }

  .mockup-main {
    width: 16rem;
    padding: 1rem;
  }

  .floating-card {
    display: none;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card.featured {
    transform: none;
  }

  .testimonial-card.featured:hover {
    transform: translateY(-4px);
  }

  .testimonials-stats {
    gap: 1rem;
  }

  .testimonials-stats .stat-number {
    font-size: 2rem;
  }

  .integrations-logos {
    gap: 1.5rem;
  }

  .logo-circle {
    width: 100%;
    max-width: 150px;
    min-height: 80px;
    border-radius: 12px !important;
  }

  .logo-circle svg {
    width: 20px;
    height: 20px;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
  }

  .practice-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .video-main {
    flex-direction: column;
  }

  .doctor-video {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .integrations-logos {
    gap: 1rem;
    justify-content: center;
  }

  .logo-circle {
    width: 100%;
    max-width: 150px;
    min-height: 80px;
    border-radius: 12px !important;
  }

  .logo-circle svg {
    width: 20px;
    height: 20px;
  }
}

/* Blog Post Styles */
/* Blog Hero Section */
.blog-post-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 150%, #3b82f610 0%, transparent 50%);
    pointer-events: none;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.post-breadcrumb {
    margin-bottom: 2rem;
}

.post-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
    color: #3b82f6;
}

.post-meta-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    flex-wrap: wrap;
}

.post-date,
.post-category {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.read-time {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.post-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Table of Contents */
.table-of-contents {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-of-contents h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 0.75rem;
}

.toc-item.toc-sub {
    padding-left: 1.5rem;
}

.toc-item a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

/* Author Info */
.author-info-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.author-info-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3b82f608 0%, #1d4ed808 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 3px solid white;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.author-bio {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.author-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #3b82f6;
}

.author-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog Content */
.blog-post-content {
    padding: 4rem 0;
    background: #ffffff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image-container {
    margin-bottom: 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    line-height: 1.8;
    color: #374151;
    font-size: 1.125rem;
    max-width: 720px;
    margin: 0 auto;
}

/* WordPress Content Formatting Styles */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
}

.post-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content h4 {
    font-size: 1.25rem;
}

.post-content h5 {
    font-size: 1.125rem;
}

.post-content h6 {
    font-size: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.post-content a {
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #1d4ed8;
}

.post-content strong,
.post-content b {
    font-weight: 700;
    color: #1e293b;
}

.post-content em,
.post-content i {
    font-style: italic;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-content li ul,
.post-content li ol {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.post-content ul ul {
    list-style-type: circle;
}

.post-content ul ul ul {
    list-style-type: square;
}

.post-content blockquote {
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-radius: 0.5rem;
    font-style: italic;
    color: #475569;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
    display: block;
}

.post-content figure {
    margin: 2rem 0;
}

.post-content figcaption {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

.post-content code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    color: #e11d48;
}

.post-content pre {
    background: #1e293b;
    color: #f1f5f9;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    line-height: 1.6;
}

.post-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
    font-size: 0.875rem;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow-x: auto;
    display: block;
}

.post-content table thead {
    background: #f8fafc;
}

.post-content table th,
.post-content table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.post-content table th {
    font-weight: 600;
    color: #1e293b;
}

.post-content hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 3rem 0;
}

/* WordPress alignment classes */
.post-content .alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.post-content .alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.post-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.post-content .alignwide {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-content .alignfull {
    max-width: 100%;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* WordPress caption styles */
.post-content .wp-caption {
    max-width: 100%;
    margin: 2rem 0;
}

.post-content .wp-caption img {
    margin: 0;
}

.post-content .wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.75rem;
    text-align: center;
    font-style: italic;
}

/* WordPress gallery styles */
.post-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.post-content .gallery-item {
    margin: 0;
}

.post-content .gallery-icon img {
    width: 100%;
    height: auto;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-content h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.75rem;
    }

    .post-content h3 {
        font-size: 1.375rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content ul,
    .post-content ol {
        padding-left: 1.5rem;
    }

    .post-content blockquote {
        padding: 1rem;
    }

    .post-content .alignleft,
    .post-content .alignright {
        float: none;
        margin: 1rem 0;
    }

    .post-content table {
        font-size: 0.875rem;
    }

    .post-content pre {
        padding: 1rem;
        font-size: 0.8125rem;
    }
}

/* Social Share */
.social-share {
    margin: 4rem auto;
    padding: 2.5rem;
    border-radius: 1rem;
    background: #f8fafc;
    max-width: 720px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-share::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #3b82f605 0%, transparent 70%);
    pointer-events: none;
}

.social-share h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.share-btn {
    padding: 0.875rem 2rem;
    background: white;
    border: 2px solid;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.share-btn.twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}

.share-btn.linkedin {
    color: #0077b5;
    border-color: #0077b5;
}

.share-btn.facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: currentColor !important;
    color: white !important;
}

.share-btn:hover svg {
    color: white;
}

/* Comments Section */
.comments-section {
    padding: 4rem 0;
    background: #ffffff;
}

.comments-content {
    max-width: 800px;
    margin: 0 auto;
}

.comments-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

/* Newsletter Section */
.post-newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.newsletter-desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: #3b82f6;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: #f8fafc;
}

.related-content {
    max-width: 1200px;
    margin: 0 auto;
}

.related-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.related-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f605 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.related-image {
    height: 200px;
    overflow: hidden;
}

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

.related-card .related-content {
    padding: 1.75rem;
    position: relative;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.related-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
    margin-top: auto;
}

.related-date {
    color: #64748b;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.related-card:hover {
    transform: translateY(-4px);
}

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

.no-related {
    text-align: center;
    padding: 2rem;
}

.no-related p {
    color: #64748b;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-post-hero {
        padding: 6rem 0 3rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .post-excerpt {
        font-size: 1.125rem;
    }

    .author-info-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .social-share {
        padding: 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}
.blog-post-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.blog-post-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 150%, #3b82f610 0%, transparent 50%);
  pointer-events: none;
}

.post-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.post-breadcrumb {
  margin-bottom: 2rem;
}

.post-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
  color: #3b82f6;
}

.post-meta-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
  flex-wrap: wrap;
}

.post-date,
.post-category {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.read-time {
  background: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.post-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-excerpt {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.author-info-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.author-info-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #3b82f608 0%, #1d4ed808 100%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 3px solid white;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.author-bio {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.author-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #3b82f6;
}

.blog-post-content {
  padding: 4rem 0;
  background: #ffffff;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.featured-image-container {
  margin-bottom: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  line-height: 1.8;
  color: #374151;
  font-size: 1.125rem;
  max-width: 720px;
  margin: 0 auto;
}

/* WordPress Content Formatting Styles */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content h1 {
  font-size: 2.5rem;
  margin-top: 3rem;
}

.post-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.post-content h3 {
  font-size: 1.5rem;
}

.post-content h4 {
  font-size: 1.25rem;
}

.post-content h5 {
  font-size: 1.125rem;
}

.post-content h6 {
  font-size: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-content a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.post-content a:hover {
  color: #1d4ed8;
}

.post-content strong,
.post-content b {
  font-weight: 700;
  color: #1e293b;
}

.post-content em,
.post-content i {
  font-style: italic;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.post-content li ul,
.post-content li ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.post-content ul ul {
  list-style-type: circle;
}

.post-content ul ul ul {
  list-style-type: square;
}

.post-content blockquote {
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin: 2rem 0;
  background: #f8fafc;
  border-radius: 0.5rem;
  font-style: italic;
  color: #475569;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
  display: block;
}

.post-content figure {
  margin: 2rem 0;
}

.post-content figcaption {
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}

.post-content code {
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
  color: #e11d48;
}

.post-content pre {
  background: #1e293b;
  color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  line-height: 1.6;
}

.post-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
  font-size: 0.875rem;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow-x: auto;
  display: block;
}

.post-content table thead {
  background: #f8fafc;
}

.post-content table th,
.post-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.post-content table th {
  font-weight: 600;
  color: #1e293b;
}

.post-content hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 3rem 0;
}

/* WordPress alignment classes */
.post-content .alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.post-content .alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.post-content .alignwide {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-content .alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* WordPress caption styles */
.post-content .wp-caption {
  max-width: 100%;
  margin: 2rem 0;
}

.post-content .wp-caption img {
  margin: 0;
}

.post-content .wp-caption-text {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
}

/* WordPress gallery styles */
.post-content .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.post-content .gallery-item {
  margin: 0;
}

.post-content .gallery-icon img {
  width: 100%;
  height: auto;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-content h1 {
    font-size: 2rem;
  }

  .post-content h2 {
    font-size: 1.75rem;
  }

  .post-content h3 {
    font-size: 1.375rem;
  }

  .post-content {
    font-size: 1rem;
  }

  .post-content ul,
  .post-content ol {
    padding-left: 1.5rem;
  }

  .post-content blockquote {
    padding: 1rem;
  }

  .post-content .alignleft,
  .post-content .alignright {
    float: none;
    margin: 1rem 0;
  }

  .post-content table {
    font-size: 0.875rem;
  }

  .post-content pre {
    padding: 1rem;
    font-size: 0.8125rem;
  }
}

.social-share {
  margin: 4rem auto;
  padding: 2.5rem;
  border-radius: 1rem;
  background: #f8fafc;
  max-width: 720px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-share::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, #3b82f605 0%, transparent 70%);
  pointer-events: none;
}

.social-share h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  position: relative;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.share-btn {
  padding: 0.875rem 2rem;
  background: white;
  border: 2px solid;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.share-btn.twitter {
  color: #1da1f2;
  border-color: #1da1f2;
}

.share-btn.linkedin {
  color: #0077b5;
  border-color: #0077b5;
}

.share-btn.facebook {
  color: #1877f2;
  border-color: #1877f2;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: currentColor !important;
  color: white !important;
}

.share-btn:hover svg {
  color: white;
}

.related-posts {
  padding: 4rem 0;
  background: #f8fafc;
}

.related-content {
  max-width: 1200px;
  margin: 0 auto;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.related-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f605 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.related-image {
  height: 200px;
  overflow: hidden;
}

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

.related-content {
  padding: 1.75rem;
  position: relative;
}

.related-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.related-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.related-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.25rem;
  margin-top: auto;
}

.related-date {
  color: #64748b;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.related-card:hover {
  transform: translateY(-4px);
}

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

@media (max-width: 768px) {
  .blog-post-hero {
    padding: 6rem 0 3rem;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-excerpt {
    font-size: 1.125rem;
  }

  .author-info-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .social-share {
    padding: 1.5rem;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero Parallax Styles */
.hero-parallax {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  padding: 8rem 0 1.5rem;
  background: white;
  display: flex;
  align-items: center;
}

.parallax-hero {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1000px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.parallax-layer:first-child {
  position: relative;
}

.parallax-layer > * {
  display: block;
  width: 100%;
  height: 100%;
}

/* =====================
   MAIN MOCKUP STYLES
   ===================== */
.mockup-main {
  position: relative;
  z-index: 10;
  transform: rotate(-6deg);
  padding: 1.5rem;
  width: 20rem;
  margin-left: 2rem;
}

.mockup-main:hover {
  transform: rotate(0deg);
}

/* =====================
   FLOATING CARD STYLES
   ===================== */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: auto;
  max-width: 240px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(0);
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.02) translateZ(0);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
  z-index: 10;
}

/* =====================
   INDIVIDUAL CARD POSITIONS
   ===================== */
.card-patient {
  top: 10%;
  right: 5%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  width: 200px;
  height: 200px;
  transform: rotate(-6deg);
}

.card-schedule {
  top: 60%;
  right: 15%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  width: 180px;
  height: 180px;
  transform: rotate(-6deg);
}

.card-priority {
  top: 20%;
  left: 10%;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  width: 160px;
  height: 160px;
  transform: rotate(-6deg);
}

.card-project {
  bottom: 20%;
  left: 5%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  width: 140px;
  height: 140px;
  transform: rotate(-6deg);
}

.card-meeting {
  top: 40%;
  left: 60%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border: 1px solid #6366f1;
  width: 150px;
  height: 150px;
  overflow: hidden;
  box-sizing: border-box;
  color: #fff;
  transform: rotate(-6deg);
}

.card-meeting:hover {
  background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
  border-color: #5856eb;
  transform: rotate(-6deg) translateY(-8px) scale(1.02) translateZ(0);
}

.card-meeting *, .card-meeting .meeting-name, .card-meeting .meeting-time {
  color: #fff;
}

.rounded-circle {
  border-radius: 50% !important;
  overflow: hidden;
}

.highlight-mockups {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.highlight-mockups {
  max-width: 700px;
  width: 100%;
}

.cta-inner {
  background: black;
  border-radius: 1rem;
  padding: 4rem 10rem;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

@media (max-width: 1024px) {
  .cta-inner {
    padding: 3rem 4rem;
  }
}

@media (max-width: 768px) {
  .cta-inner {
    padding: 2rem 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .cta-inner {
    padding: 1.5rem 1rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
}

/* =====================
   INTEGRATIONS PAGE STYLES
   ===================== */

/* Integrations Page Specific Styles */
.integrations-hero {
    padding: 8rem 2rem 4rem;
    background: #0b0f19;
    text-align: center;
    width: 100%;
}

.integrations-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.integrations-hero .hero-title {
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    font-family: "Inter", sans-serif;
}

.integrations-hero .hero-subtitle {
    font-size: 1.25rem;
    color: white;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.integration-categories {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    background: #f3f6ff;
    border-radius: 50%;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.category-card p {
    color: #6b7280;
    line-height: 1.6;
}

.integration-section {
    padding: 5rem 0;
    background: white;
}

.integration-section:nth-child(even) {
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.integration-logo img {
    max-width: 120px;
    height: auto;
    border-radius: 0.5rem;
}

.integration-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Inter", sans-serif;
}

.integration-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.integration-features {
    list-style: none;
    padding: 0;
}

.integration-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.integration-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.coming-soon {
    padding: 5rem 0;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.coming-soon-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.upcoming-integrations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.upcoming-icon {
    font-size: 1.5rem;
}

.upcoming-item span {
    font-weight: 500;
}

.integrations-cta {
  background: inherit;
}

.integrations-cta .cta-content {
    text-align: center;
}

.integrations-cta h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
}

.integrations-cta p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .integrations-hero .hero-title {
        font-size: 2rem;
        color: white;
        font-weight: 400;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-card {
        padding: 1.5rem;
    }
    
    .upcoming-integrations {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.contact-phone {
  margin-top: 0.1rem;
}

.contact-list li {
  margin-bottom: 0.1rem;
}

/* Blog Search Section */
.blog-search {
  margin-bottom: 2rem;
}

.search-container {
  position: relative;
}

.search-input {
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.search-submit {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-submit:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

/* Hero Section Styles - Extracted from front-page.php */
.hero-parallax {
  position: relative;
  overflow: visible;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-grid img {
  position: absolute;
  right: -32vw;
  top: 80%;
  transform: translateY(-50%) scale(1.35) rotate(-8deg);
  width: 1100px;
  max-width: none;
  height: auto;
  border-radius: 2rem;
  z-index: 1;
  transition: transform 1s cubic-bezier(.1,6,.2,4);
}

@media (max-width: 1500px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
  .hero-grid img {
    position: static;
    transform: scale(1.1) rotate(-4deg);
    width: 100%;
    max-width: 100%;
    margin: 8rem 0 0 0;
    right: auto;
    top: auto;
    z-index: auto;
  }
  .hero-cta {
    margin-bottom: 8rem;
  }
  .trust-signals {
    margin-bottom: 8rem !important;
  }
}

@media (max-width: 768px) {
  .hero-parallax {
    margin-bottom: 5rem;
    min-height: 400px;
  }
  
  .hero-grid {
    min-height: 300px;
  }
  
  .hero-grid img {
    transform: scale(0.9) rotate(-2deg);
    margin: 1rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .hero-parallax {
    margin-bottom: 3rem;
    min-height: 350px;
  }
  
  .hero-grid img {
    transform: scale(0.8) rotate(0deg);
  }
}

/* =====================
   PRICE COMPARISON PAGE STYLES
   ===================== */
.price-comparison {
  padding: 8rem 0 6rem;
  background: white;
}

/* Feature Icons */
.price-comparison .w-12 {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.price-comparison .w-12 .w-6 {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

/* Table Icons */
.price-comparison .comparison-table .w-8 {
  width: 1.75rem !important;
  height: 1.75rem !important;
}

.price-comparison .comparison-table .w-5 {
  width: 1rem !important;
  height: 1rem !important;
}

/* Disclaimer Icon */
.price-comparison .disclaimer-section .w-12 {
  width: 2rem !important;
  height: 2rem !important;
}

.price-comparison .disclaimer-section .w-6 {
  width: 1rem !important;
  height: 1rem !important;
}

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

.price-comparison-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.price-comparison-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-section {
  margin-bottom: 4rem;
}

.comparison-section h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.comparison-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.comparison-card h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.comparison-card p {
  color: #6b7280;
  line-height: 1.6;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: #f8fafc;
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #6b7280;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #1f2937;
}

.check-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.x-icon {
  color: #ef4444;
  font-size: 1.25rem;
}

.disclaimer {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 4rem;
}

.disclaimer h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.disclaimer p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .price-comparison {
    padding: 4rem 0;
  }

  .price-comparison-title {
    font-size: 2rem;
  }

  .comparison-section h2 {
    font-size: 1.75rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table th,
  .comparison-table td {
    white-space: nowrap;
    padding: 0.75rem;
  }
}

/* =====================
   LEARNING PAGE STYLES
   ===================== */
.learn-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.learn-title {
  font-size: 3rem;
  font-weight: 400;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.learn-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
}

.training-options {
  padding: 4rem 0;
  background: #ffffff;
}

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

.training-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.video-resources {
  padding: 4rem 0;
  background: #f8fafc;
}

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

.video-category {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.video-category h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}

.video-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-category a {
  color: #3b82f6;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.video-category a:hover {
  color: #2563eb;
}

.book-training {
  padding: 4rem 0;
  background: #ffffff;
}

.booking-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-options a {
  display: flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-options a:hover {
  color: #2563eb;
}

@media (max-width: 1024px) {
  .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .learn-title {
    font-size: 2.5rem;
  }
  
  .training-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Teams Calendar Styles */
.training-calendar {
  padding: 4rem 0;
  background: #f8fafc;
}

.calendar-content {
  max-width: 1000px;
  margin: 0 auto;
}

#teams-calendar {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fc {
  font-family: 'Inter', sans-serif;
}

.fc .fc-toolbar-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #1e293b;
}

.fc .fc-button-primary {
  background-color: #3b82f6;
  border-color: #3b82f6;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.fc .fc-button-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.fc-theme-standard td, 
.fc-theme-standard th {
  border-color: #e5e7eb;
}

.fc-theme-standard .fc-scrollgrid {
  border-color: #e5e7eb;
}

.fc-timegrid-slot {
  height: 3rem !important;
}

.fc-timegrid-slot-label {
  font-size: 0.875rem;
  color: #64748b;
}

.fc-event {
  background-color: #3b82f6;
  border-color: #3b82f6;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.fc-event:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.fc-event-title {
  font-weight: 500;
}

.fc-event-time {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* Event Details Modal */
.event-details-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.event-details-modal h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1e293b;
  margin-bottom: 1rem;
}

.event-details-modal p {
  color: #64748b;
  margin-bottom: 0.5rem;
}

.event-details-modal .close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
}

.event-details-modal .close-button:hover {
  color: #1e293b;
}

@media (max-width: 768px) {
  .fc .fc-toolbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .fc .fc-toolbar-title {
    font-size: 1.25rem;
  }
  
  .fc-header-toolbar {
    padding: 1rem !important;
  }
  
  .fc-view-harness {
    height: auto !important;
  }
}
