@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - zenohosp Theme */
:root {
  /* zenohosp Colors */
  --color-primary: #D1F470;
  /* zenohosp Lime Green */
  --color-primary-dark: #C5E864;
  --color-primary-light: #E2F8A0;
  --color-accent: #D1F470;
  /* Lime for CTA */

  /* zenohosp Dark/Light */
  --color-dark: #11110D;
  /* Obsidian */
  --color-text-main: #11110D;
  --color-text-dim: #6B6B66;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-subtle: #F5F5F2;
  /* Cream */
  --bg-dark-section: #11110D;
  /* Obsidian */
  --bg-light: #F5F5F2;
  --bg-hero-gradient: linear-gradient(180deg, #F5F5F2 0%, #FFFFFF 100%);

  /* Geometry - zenohosp rounded */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 40px rgba(209, 244, 112, 0.3);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Animations */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ani-float: float 6s ease-in-out infinite;
}

/* Animations Keyframes */
@keyframes float {

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

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

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll Reveal Utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 48px;
  }
}

@media (min-width: 1200px) {
  .nav-container {
    padding: 0 64px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
}

.logo-accent {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

/* Hero Section */
.home-hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05), transparent),
    radial-gradient(circle at bottom left, rgba(13, 148, 136, 0.05), transparent);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.home-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.home-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--color-text-dim);
}

/* Hero Switcher */
.hero-switcher {
  display: inline-flex;
  background: #F1F1F1;
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-bottom: 60px;
}

.switcher-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dim);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.switcher-btn.active {
  background: #fff;
  color: var(--color-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Container Utility - inherits from zenohosp-theme.css */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  /* Lime Green */
  color: var(--color-dark);
  /* Dark text on lime */
}

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

.btn-outline {
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-gradient {
  background: var(--color-cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout - container styles in zenohosp-theme.css */

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-sm {
  gap: 8px;
}

.gap-md {
  gap: 16px;
}

.gap-lg {
  gap: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  /* Lime Green */
  color: var(--color-dark);
  box-shadow: 0 4px 14px rgba(209, 244, 112, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
}

.btn-ghost:hover {
  color: var(--color-primary);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-cta-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.08);
}

/* Solutions Dropdown Navigation */
.has-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger svg {
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 8px;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #F5F5F2;
}

.dropdown-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dropdown-icon.hms {
  background: linear-gradient(135deg, #D1F470 0%, #A8C35A 100%);
}

.dropdown-icon.ot {
  background: linear-gradient(135deg, #7DD3FC 0%, #38BDF8 100%);
}

.dropdown-icon.pharma {
  background: linear-gradient(135deg, #FDA4AF 0%, #FB7185 100%);
}

.dropdown-icon.inv {
  background: linear-gradient(135deg, #C4B5FD 0%, #A78BFA 100%);
}

.dropdown-icon.assets {
  background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 100%);
}

.dropdown-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #11110D;
  margin-bottom: 2px;
}

.dropdown-info span {
  font-size: 0.8rem;
  color: #6B6B66;
}

.dropdown-footer {
  border-top: 1px solid #EAEAE6;
  margin-top: 8px;
  padding: 12px 16px 8px;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #11110D;
  text-decoration: none;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #D1F470;
}

/* Legacy nav-dropdown .dropdown-menu support */
.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-light);
}

.dropdown-item .icon {
  width: 40px;
  height: 40px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.dropdown-item h5 {
  margin-bottom: 2px;
}

.dropdown-item span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.nav-cta {
  margin-left: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero-gradient);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.75rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-item span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* =============================================
   SOLUTIONS SECTION
   ============================================= */
.solutions {
  background: var(--bg-white);
}

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.solution-tab {
  padding: 12px 24px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.solution-tab:hover {
  color: var(--color-primary);
}

.solution-tab.active {
  background: var(--color-primary);
  color: var(--text-white);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-panel {
  display: none;
}

.solution-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.solution-info p {
  margin-bottom: 24px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item .check {
  width: 24px;
  height: 24px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: var(--text-primary);
  font-weight: 500;
}

.solution-preview {
  position: relative;
}

.solution-preview img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 992px) {
  .solution-panel.active {
    grid-template-columns: 1fr;
  }

  .solution-preview {
    order: -1;
  }
}

/* Bento Solutions Section */
.home-solutions-section {
  padding: 100px 0;
  background-color: var(--bg-subtle);
}

.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.solution-bento-card {
  text-decoration: none;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.solution-bento-card.tall {
  grid-row: span 2;
}

.solution-bento-card.wide {
  grid-column: span 8;
}

.solution-bento-card.medium {
  grid-column: span 6;
}

.solution-bento-card.small {
  grid-column: span 4;
}

.solution-bento-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.solution-bento-card p {
  color: var(--color-text-dim);
  font-size: 1rem;
}

.solution-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.bento-visual {
  margin-top: 30px;
  height: 120px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

@media (max-width: 992px) {

  .solution-bento-card.wide,
  .solution-bento-card.medium,
  .solution-bento-card.small {
    grid-column: span 12;
  }
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  background: var(--bg-section);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.2) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.feature-card h4 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--bg-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 40px 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-cta-gradient);
  transition: height var(--transition-normal);
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card .number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--color-cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.why-card h4 {
  margin-bottom: 12px;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D9488' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--text-white);
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.cta p {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}

.footer-brand .logo {
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

.footer-column h5 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-light);
  font-size: 0.875rem;
}

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

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

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

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HMS PAGE STYLES
   ============================================= */

/* HMS Hero Section */
.hms-hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg,
      rgba(240, 253, 250, 1) 0%,
      rgba(204, 251, 241, 0.6) 25%,
      rgba(245, 208, 254, 0.3) 50%,
      rgba(254, 215, 170, 0.2) 75%,
      rgba(240, 253, 250, 1) 100%);
  position: relative;
  overflow: hidden;
}

.hms-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hms-hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--text-primary);
}

/* Software Preview */
.software-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #f8fafb;
  border-bottom: 1px solid #e5e7eb;
}

.preview-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary);
}

.logo-icon-sm {
  width: 28px;
  height: 28px;
  background: var(--color-cta-gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.preview-tabs {
  display: flex;
  gap: 4px;
}

.preview-tabs .tab {
  padding: 6px 14px;
  font-size: 0.8125rem;
  color: #6b7280;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.preview-tabs .tab.active {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-actions .action-btn {
  padding: 6px 14px;
  background: var(--color-primary);
  color: white;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.preview-body {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  min-height: 280px;
}

.preview-sidebar {
  background: #f9fafb;
  padding: 20px;
  border-right: 1px solid #e5e7eb;
}

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

.patient-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.patient-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.patient-info span {
  font-size: 0.75rem;
  color: #6b7280;
}

.patient-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.8125rem;
}

.patient-details .label {
  color: #6b7280;
}

.patient-details .value {
  color: var(--text-primary);
  font-weight: 500;
}

.preview-main {
  padding: 20px;
}

.visits-section h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.visit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 10px;
}

.doctor-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.visit-info {
  flex: 1;
}

.visit-info strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.visit-info span {
  font-size: 0.75rem;
  color: #6b7280;
}

.visit-date {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 500;
}

.preview-right {
  padding: 20px;
  background: #f9fafb;
  border-left: 1px solid #e5e7eb;
}

.appointments-section h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.appointment-card {
  background: white;
  padding: 14px;
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}

.appointment-card strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.appointment-card span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 4px;
}

/* HMS Feature Sections */
.hms-feature {
  padding: 100px 0;
}

.hms-feature .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-alt-left .feature-visual {
  order: -1;
}

/* Centered Feature Section */
.hms-feature-centered {
  padding: 100px 0;
  background: linear-gradient(180deg,
      rgba(240, 253, 250, 0.5) 0%,
      rgba(254, 215, 170, 0.15) 50%,
      rgba(240, 253, 250, 0.5) 100%);
}

.centered-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.centered-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.centered-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* EMR Flowchart */
.emr-visual {
  max-width: 900px;
  margin: 0 auto;
}

.emr-flowchart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.emr-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 120px;
}

.emr-node.center-node {
  padding: 32px;
  background: linear-gradient(135deg, var(--color-primary), #14b8a6);
  color: white;
}

.emr-node.center-node span {
  color: white;
}

.node-icon {
  font-size: 2rem;
}

.node-icon.large {
  font-size: 2.5rem;
}

.emr-node span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.emr-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e5e7eb, var(--color-primary), #e5e7eb);
}

/* Form Preview */
.form-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #f8fafb;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  color: var(--text-primary);
}

.form-icon {
  font-size: 1.25rem;
}

.form-fields {
  padding: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  flex: 1;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.form-field.wide {
  flex: 2;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 4px;
}

.form-field span {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-cta-gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  margin-top: 8px;
}

/* Calendar Preview */
.calendar-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

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

.calendar-header span {
  color: #6b7280;
  cursor: pointer;
}

.month-year {
  font-weight: 600;
  color: var(--text-primary) !important;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 24px;
}

.day-header {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  padding: 8px;
  font-weight: 600;
}

.day {
  text-align: center;
  padding: 10px;
  font-size: 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.day:hover {
  background: #f3f4f6;
}

.day.today {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.day.has-appointment {
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  font-weight: 600;
}

.upcoming-appointments h4 {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.apt-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.apt-time {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  min-width: 70px;
}

.apt-name {
  font-size: 0.8125rem;
  color: var(--text-primary);
}

/* Invoice Preview */
.invoice-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #f8fafb;
  border-bottom: 1px solid #e5e7eb;
}

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

.invoice-number {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.invoice-date {
  font-size: 0.8125rem;
  color: #6b7280;
}

.invoice-body {
  padding: 24px;
}

.invoice-patient {
  margin-bottom: 24px;
}

.invoice-patient .label {
  font-size: 0.75rem;
  color: #6b7280;
}

.invoice-patient strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
}

.invoice-patient span {
  font-size: 0.8125rem;
  color: #6b7280;
}

.invoice-items {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.invoice-items th,
.invoice-items td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

.invoice-items th {
  background: #f9fafb;
  font-weight: 600;
  color: #6b7280;
}

.invoice-items td:last-child {
  text-align: right;
  font-weight: 500;
}

.invoice-total {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.invoice-total strong {
  color: var(--color-primary);
}

.invoice-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invoice-status.paid {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

/* Analytics Preview */
.analytics-preview {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.period {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.stat-card.blue {
  background: rgba(59, 130, 246, 0.1);
}

.stat-card.green {
  background: rgba(16, 185, 129, 0.1);
}

.stat-card.purple {
  background: rgba(139, 92, 246, 0.1);
}

.stat-card.orange {
  background: rgba(249, 115, 22, 0.1);
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: #6b7280;
}

.chart-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 80px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-primary), #14b8a6);
  border-radius: 4px 4px 0 0;
}

.bar-1 {
  height: 40%;
}

.bar-2 {
  height: 70%;
}

.bar-3 {
  height: 55%;
}

.bar-4 {
  height: 85%;
}

.bar-5 {
  height: 65%;
}

.bar-6 {
  height: 90%;
}

.bar-7 {
  height: 75%;
}

/* Doctor Image Placeholder */
.feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg,
      rgba(240, 253, 250, 1) 0%,
      rgba(204, 251, 241, 0.8) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-illustration .doctor-head {
  font-size: 8rem;
}

/* HMS CTA Section */
.hms-cta {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.hms-cta h2 {
  font-size: 2rem;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.4;
}

/* Button Large */
.btn-lg {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

/* Responsive HMS */
@media (max-width: 992px) {
  .hms-hero-content h1 {
    font-size: 2.25rem;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar,
  .preview-right {
    border: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .preview-tabs {
    display: none;
  }

  .hms-feature .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-alt-left .feature-visual {
    order: 0;
  }

  .emr-flowchart {
    flex-direction: column;
  }

  .emr-connector {
    width: 2px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .hms-hero-content h1 {
    font-size: 1.75rem;
  }

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

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

/* =============================================
   NAV DROPDOWN STYLES (Additional)
   ============================================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
}

.dropdown-menu a.active {
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .navbar .btn {
    display: none;
  }
}

/* Footer Grid Enhancement */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--color-primary);
  color: white;
}

.footer-links h4 {
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

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

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   OPERATION THEATRE PAGE
   ============================================= */

/* OT Hero Section */
.ot-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero-gradient);
  padding: 140px 0 80px;
  text-align: center;
}

.ot-hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.video-thumbnail {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.ot-hero-video-badge span {
  font-weight: 500;
  color: var(--text-primary);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 600;
  padding-left: 12px;
  border-left: 1px solid var(--border-color);
}

.ot-hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

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

.ot-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.ot-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

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

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.ot-trust-logos {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.trust-logo-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9375rem;
  opacity: 0.7;
}

/* OT Feature Sections */
.ot-feature-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.ot-feature-section.ot-feature-alt {
  background: var(--bg-light);
}

.ot-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ot-feature-grid.reverse {
  direction: rtl;
}

.ot-feature-grid.reverse>* {
  direction: ltr;
}

.ot-feature-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.ot-feature-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ot-feature-desc.centered {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.ot-feature-links {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  padding: 10px 20px;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: all 0.2s;
}

.explore-link:hover {
  background: var(--color-primary);
  color: white;
}

.ot-feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* OT Scheduling Mockup */
.ot-scheduling-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.mockup-title {
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-tabs {
  display: flex;
  gap: 8px;
}

.mockup-tabs .tab {
  padding: 6px 14px;
  font-size: 0.8125rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  background: white;
  cursor: pointer;
}

.mockup-tabs .tab.active {
  background: var(--color-primary);
  color: white;
}

.ot-timeline {
  padding: 20px;
}

.time-slot {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.time-slot:last-child {
  margin-bottom: 0;
}

.time-slot .time {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 500;
  width: 50px;
  padding-top: 12px;
}

.surgery-card {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border-left: 4px solid;
}

.surgery-card.surgery-high {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: #EF4444;
}

.surgery-card.surgery-medium {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #F59E0B;
}

.surgery-card.surgery-low {
  background: rgba(16, 185, 129, 0.08);
  border-left-color: #10B981;
}

.surgery-type {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.surgery-details {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.surgeon-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
}

.surgeon-avatar {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.schedule-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}

.surgeries-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.add-surgery-btn {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

/* Team Assignment Mockup */
.team-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.team-mockup .mockup-header {
  display: flex;
  justify-content: space-between;
}

.surgery-label {
  font-size: 0.8125rem;
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.team-tree {
  padding: 24px;
}

.team-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.team-node.lead {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid var(--color-primary);
}

.node-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.lead-avatar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
}

.node-info {
  flex: 1;
}

.node-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
}

.node-role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.confirmed {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
}

.team-branch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-left: 24px;
  margin-bottom: 8px;
}

.team-footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
}

.add-member-btn,
.notify-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.add-member-btn {
  background: var(--color-primary);
  color: white;
}

.notify-btn {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

/* Equipment Mockup */
.equipment-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.equipment-mockup .mockup-header {
  display: flex;
  justify-content: space-between;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-light);
  font-size: 0.8125rem;
}

.equipment-list {
  padding: 16px 20px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--bg-light);
}

.equipment-icon {
  font-size: 1.5rem;
}

.equipment-info {
  flex: 1;
}

.equipment-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
}

.equipment-id {
  font-size: 0.75rem;
  color: var(--text-light);
}

.availability-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.availability-badge.available {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.availability-badge.in-use {
  background: rgba(59, 130, 246, 0.15);
  color: #2563EB;
}

.availability-badge.maintenance {
  background: rgba(239, 68, 68, 0.15);
  color: #DC2626;
}

.equipment-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
  text-align: center;
}

.summary-stat .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-stat .stat-value.green {
  color: #10B981;
}

.summary-stat .stat-value.orange {
  color: #F59E0B;
}

.summary-stat .stat-value.red {
  color: #EF4444;
}

.summary-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Dark Pre-Op / Post-Op Section */
.ot-dark-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 100px 0;
  color: white;
}

.dark-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.dark-section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.dark-section-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.preop-postop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.preop-card,
.postop-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.preop-card .card-header,
.postop-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.preop-card h3,
.postop-card h3 {
  color: white;
  font-size: 1.125rem;
}

.patient-tag {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.status-active {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
  border-radius: var(--radius-full);
}

.checklist-visual {
  margin-bottom: 20px;
}

.checklist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checklist-row:last-child {
  border-bottom: none;
}

.circle-check {
  width: 24px;
  height: 24px;
  background: #10B981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.circle-pending {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.checklist-row span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.checklist-row.pending span {
  color: rgba(255, 255, 255, 0.5);
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, #3b82f6 100%);
  border-radius: 3px;
}

.progress-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.recovery-timeline {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #10B981;
  border-radius: 50%;
}

.timeline-item.active .timeline-dot {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.timeline-item.upcoming .timeline-dot {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-content {
  display: flex;
  gap: 12px;
}

.timeline-time {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  min-width: 50px;
}

.timeline-event {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.timeline-item.upcoming .timeline-event {
  color: rgba(255, 255, 255, 0.5);
}

.dark-section-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dark-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.dark-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
}

/* Live OT Dashboard */
.ot-dashboard-section {
  background: var(--bg-section);
}

.centered-header {
  text-align: center;
  margin-bottom: 48px;
}

.centered-header .ot-feature-title {
  margin-bottom: 16px;
}

.ot-dashboard-mockup {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.dashboard-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #EF4444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.ot-rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
}

.ot-room-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.ot-room-card.active-surgery {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.ot-room-card.available {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
}

.ot-room-card.cleaning {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
}

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

.room-name {
  font-weight: 700;
  font-size: 1rem;
}

.room-status {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.room-status.in-progress {
  background: rgba(59, 130, 246, 0.15);
  color: #2563EB;
}

.room-status.free {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

.room-status.turnaround {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
}

.surgery-info {
  margin-bottom: 12px;
}

.surgery-info .surgery-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.surgery-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.timer-value {
  font-family: 'SF Mono', 'Monaco', monospace;
}

.surgery-progress {
  margin-bottom: 10px;
}

.progress-bar-small {
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 4px;
}

.progress-fill-small {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 2px;
}

.progress-fill-small.cleaning-fill {
  background: linear-gradient(90deg, #F59E0B 0%, #EAB308 100%);
}

.surgery-progress span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.room-surgeon {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.room-available-info {
  margin-bottom: 12px;
}

.room-available-info span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.room-ready {
  display: flex;
  gap: 8px;
}

.ready-badge {
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

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

.cleaning-status {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.eta {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.cleaning-progress {
  margin-top: 12px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-light);
  text-align: center;
}

.dash-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-stat-value.in-use {
  color: #3b82f6;
}

.dash-stat-value.available {
  color: #10B981;
}

.dash-stat-value.turnaround {
  color: #F59E0B;
}

.dash-stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Analytics Section */
.ot-analytics-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 100px 0;
}

.ot-analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.analytics-title {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 20px;
}

.analytics-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.analytics-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #14B8A6;
  font-weight: 600;
  padding: 12px 24px;
  border: 1.5px solid #14B8A6;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  transition: all 0.2s;
}

.analytics-link:hover {
  background: #14B8A6;
  color: white;
}

.analytics-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.analytics-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.analytics-icon {
  width: 20px;
  height: 20px;
  color: #14B8A6;
}

.analytics-dashboard {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
  font-weight: 600;
}

.period-select {
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: white;
  font-size: 0.8125rem;
}

.analytics-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
}

.analytics-stat-card {
  text-align: center;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.analytics-stat-card .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.analytics-stat-card .stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.stat-change.positive {
  color: #10B981;
}

.stat-change.negative {
  color: #10B981;
}

.analytics-chart {
  padding: 20px;
  text-align: center;
}

.chart-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.donut-chart {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
}

.donut {
  width: 100%;
  height: 100%;
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.center-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.center-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.chart-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  text-align: left;
  max-width: 280px;
  margin: 0 auto;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Integration Section */
.ot-integrations {
  background: var(--bg-white);
}

.integration-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

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

.node-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 10px;
}

.node-icon.hms {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
}

.node-icon.ot {
  background: linear-gradient(135deg, var(--color-primary) 0%, #14B8A6 100%);
  color: white;
  width: 90px;
  height: 90px;
  font-size: 1.5rem;
}

.node-icon.billing {
  background: linear-gradient(135deg, #F59E0B 0%, #EAB308 100%);
  color: white;
}

.integration-node span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.center-node span {
  font-weight: 600;
  color: var(--color-primary);
}

.flow-arrow {
  font-size: 2rem;
  color: var(--text-light);
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Responsive for OT page */
@media (max-width: 992px) {
  .ot-hero-title {
    font-size: 2.5rem;
  }

  .ot-feature-grid,
  .ot-feature-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .ot-feature-checklist {
    grid-template-columns: 1fr;
  }

  .preop-postop-grid,
  .ot-analytics-grid {
    grid-template-columns: 1fr;
  }

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

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

  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .team-branch {
    grid-template-columns: 1fr;
  }

  .integration-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 576px) {
  .ot-hero-title {
    font-size: 2rem;
  }

  .dark-section-features {
    grid-template-columns: 1fr;
  }

  .ot-rooms-grid {
    grid-template-columns: 1fr;
  }

  .analytics-stats-row {
    grid-template-columns: 1fr;
  }

  .equipment-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .compliance-badges {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============================================
   INVENTORY PAGE STYLES
   ============================================= */

/* Inventory Hero */
.inv-hero {
  min-height: 100vh;
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.inv-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.inv-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Announcement Banner */
.inv-announcement {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.announcement-badge {
  background: var(--color-cta-gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.announcement-text {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.announcement-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding-left: 12px;
  border-left: 1px solid var(--border-color);
}

.announcement-link:hover {
  text-decoration: underline;
}

/* Hero Title */
.inv-hero-title {
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.gradient-text-inv {
  background: linear-gradient(135deg, #0D9488 0%, #0284c7 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inv-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.inv-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

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

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Software Preview */
.inv-preview {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.inv-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #1e293b;
  color: white;
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
}

.preview-dots span:nth-child(2) {
  background: #f59e0b;
}

.preview-dots span:nth-child(3) {
  background: #22c55e;
}

.preview-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.preview-actions {
  font-size: 0.875rem;
  opacity: 0.8;
}

.inv-preview-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 350px;
}

/* Sidebar */
.inv-sidebar {
  background: #f8fafc;
  border-right: 1px solid var(--border-color);
  padding: 16px 12px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
  transition: all var(--transition-fast);
}

.sidebar-item:hover {
  background: white;
  color: var(--text-primary);
}

.sidebar-item.active {
  background: var(--color-primary);
  color: white;
}

.sidebar-item svg {
  flex-shrink: 0;
}

/* Main Dashboard */
.inv-main {
  padding: 20px;
}

.inv-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.inv-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.stat-icon.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.stat-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.stat-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

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

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Table Preview */
.inv-table-preview {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 16px;
  background: #f1f5f9;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
  align-items: center;
}

.table-row:last-child {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.good {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.status-badge.warning {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

/* Trust Section */
.inv-trust {
  padding: 60px 0;
  background: white;
  text-align: center;
}

/* Feature Sections */
.inv-feature-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.inv-feature-section.inv-feature-alt {
  background: var(--bg-light);
}

.inv-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.inv-feature-grid.reverse {
  direction: rtl;
}

.inv-feature-grid.reverse>* {
  direction: ltr;
}

.feature-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.feature-badge.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.feature-badge.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.inv-feature-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.inv-feature-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.inv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.inv-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}

.inv-feature-list li svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Stock Mockup */
.inv-stock-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

.stock-chart {
  margin-bottom: 20px;
}

.chart-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chart-bar-group {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.bar-container {
  height: 10px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #14b8a6);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.chart-bar-group.warning .bar-fill {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.bar-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.stock-alert-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: var(--radius-md);
  border-left: 4px solid #f97316;
}

.alert-icon {
  color: #f97316;
}

.alert-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.alert-content strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.alert-content span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Procurement Mockup */
.inv-procurement-mockup {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.po-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

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

.po-number {
  font-weight: 700;
  color: var(--text-primary);
}

.po-status {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.po-status.approved {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.po-vendor {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.po-vendor strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.po-vendor span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.po-items {
  margin-bottom: 16px;
}

.po-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.po-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.po-total strong {
  font-size: 1.125rem;
  color: var(--color-primary);
}

/* Approval Flow */
.approval-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
}

.approval-step.done .step-icon {
  background: #22c55e;
  color: white;
}

.approval-step.active .step-icon {
  background: var(--color-primary);
  color: white;
}

.approval-step span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.approval-step.done span,
.approval-step.active span {
  color: var(--text-primary);
  font-weight: 500;
}

.approval-line {
  width: 40px;
  height: 2px;
  background: #e2e8f0;
}

.approval-line.done {
  background: #22c55e;
}

.approval-line.active {
  background: linear-gradient(90deg, #22c55e, var(--color-primary));
}

/* Accent Section */
.inv-accent-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.inv-accent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.inv-accent-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
  border-radius: var(--radius-xl);
  align-items: center;
}

.inv-accent-card.orange-theme {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.inv-accent-card.teal-theme {
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.accent-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.accent-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.accent-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accent-feature {
  display: flex;
  gap: 12px;
}

.accent-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.accent-feature strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.accent-feature span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Expiry Timeline */
.expiry-timeline {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: #e2e8f0;
  color: var(--text-secondary);
  white-space: nowrap;
}

.timeline-item.critical .timeline-date {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.timeline-item.warning .timeline-date {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.timeline-content strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.timeline-content span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Report Preview */
.report-preview {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.report-header {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.report-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.report-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-number.green {
  color: #16a34a;
}

.stat-text {
  font-size: 0.75rem;
  color: var(--text-light);
}

.mini-chart {
  height: 60px;
}

.chart-line {
  color: var(--color-primary);
}

.chart-line svg {
  width: 100%;
  height: 100%;
}

/* Scanning Mockup */
.inv-scanning-mockup {
  display: flex;
  gap: 24px;
  align-items: center;
}

.phone-frame {
  width: 240px;
  background: #1e293b;
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #0f172a;
  border-radius: 12px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: white;
  border-radius: 20px;
  padding: 16px;
  min-height: 320px;
}

.scan-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 600;
}

.scan-area {
  position: relative;
  height: 160px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.scan-corners span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--color-primary);
}

.scan-corners span:nth-child(1) {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.scan-corners span:nth-child(2) {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.scan-corners span:nth-child(3) {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.scan-corners span:nth-child(4) {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.scan-line {
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ef4444, transparent);
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {

  0%,
  100% {
    transform: translateY(-60px);
    opacity: 0;
  }

  50% {
    transform: translateY(60px);
    opacity: 1;
  }
}

.scan-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-md);
}

.result-icon {
  width: 28px;
  height: 28px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.result-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.result-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.scan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scan-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.scan-feature-item .feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.scan-feature-item span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Integration Section */
.inv-integration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.inv-integration-header {
  text-align: center;
  margin-bottom: 60px;
}

.inv-integration-header h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.inv-integration-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.inv-integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.integration-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.integration-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.integration-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-icon.hms {
  background: rgba(13, 148, 136, 0.2);
  color: #2dd4bf;
}

.integration-icon.ot {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.integration-icon.pharmacy {
  background: rgba(251, 146, 60, 0.2);
  color: #fdba74;
}

.integration-icon.api {
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
}

.integration-card h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.integration-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

/* Advanced Features Section */
.inv-advanced-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.inv-advanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advanced-feature {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.advanced-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advanced-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.advanced-feature h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.advanced-feature p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.inv-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0284c7 100%);
  text-align: center;
}

.inv-cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.inv-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
}

.inv-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

/* Inventory Page Responsive */
@media (max-width: 992px) {
  .inv-hero-title {
    font-size: 2.75rem;
  }

  .inv-preview-content {
    grid-template-columns: 1fr;
  }

  .inv-sidebar {
    display: none;
  }

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

  .inv-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inv-feature-grid.reverse {
    direction: ltr;
  }

  .inv-accent-grid {
    grid-template-columns: 1fr;
  }

  .inv-accent-card {
    grid-template-columns: 1fr;
  }

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

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

  .inv-scanning-mockup {
    flex-direction: column;
  }

  .scan-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .inv-announcement {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .announcement-link {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .table-header span:nth-child(2),
  .table-row span:nth-child(2) {
    display: none;
  }

  .approval-flow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .approval-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .inv-hero-title {
    font-size: 2rem;
  }

  .inv-stats-row {
    grid-template-columns: 1fr;
  }

  .inv-integration-grid {
    grid-template-columns: 1fr;
  }

  .inv-advanced-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============================================
   PHARMACY PAGE STYLES
   ============================================= */

/* Pharmacy Hero */
.pharm-hero {
  min-height: 100vh;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0a47a3 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.pharm-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.pharm-hero-content {
  color: white;
}

.pharm-hero-content h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
}

.pharm-hero-content h1 .highlight {
  color: #fbbf24;
}

.pharm-hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.pharm-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-red {
  background: #dc2626;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.btn-cta-red:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

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

/* POS Mockup */
.pharm-hero-preview {
  position: relative;
}

.pos-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.pos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1e293b;
  color: white;
}

.pos-dots {
  display: flex;
  gap: 6px;
}

.pos-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.pos-dots span:nth-child(2) {
  background: #f59e0b;
}

.pos-dots span:nth-child(3) {
  background: #22c55e;
}

.pos-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.pos-time {
  font-size: 0.8125rem;
  opacity: 0.7;
}

.pos-body {
  display: grid;
  grid-template-columns: 140px 1fr 180px;
  min-height: 320px;
}

.pos-sidebar {
  background: #f8fafc;
  padding: 12px;
  border-right: 1px solid var(--border-color);
}

.pos-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.pos-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-item {
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
}

.category-item:hover {
  background: white;
}

.category-item.active {
  background: #0a47a3;
  color: white;
}

.pos-main {
  padding: 16px;
}

.pos-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pos-item {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pos-item:hover {
  border-color: #0a47a3;
}

.pos-item.selected {
  background: #dbeafe;
  border-color: #0a47a3;
}

.item-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.pos-item span {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-secondary);
}

.item-price {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: 4px;
}

.pos-cart {
  background: #f1f5f9;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.cart-header {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 2px solid var(--border-color);
  margin-top: auto;
}

.cart-total strong {
  color: #0a47a3;
  font-size: 1.125rem;
}

.cart-checkout {
  background: #dc2626;
  color: white;
  padding: 10px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 12px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cart-checkout:hover {
  background: #b91c1c;
}

/* Stats Section */
.pharm-stats-section {
  padding: 60px 0;
  background: #f0f4f8;
}

.pharm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.pharm-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a47a3;
  display: block;
}

.pharm-stat .stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Features Section */
.pharm-features-section {
  padding: 100px 0;
  background: white;
}

.pharm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.pharm-feature-card {
  padding: 32px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.pharm-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pharm-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.blue {
  background: rgba(10, 71, 163, 0.1);
  color: #0a47a3;
}

.feature-icon.green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.feature-icon.orange {
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
}

.pharm-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pharm-feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.feature-link {
  color: #0a47a3;
  font-weight: 600;
  font-size: 0.9375rem;
}

.feature-link:hover {
  text-decoration: underline;
}

.features-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.btn-link {
  color: #0a47a3;
  font-weight: 600;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Workflow Sections */
.pharm-workflow-section,
.pharm-inventory-section,
.pharm-reports-section {
  padding: 100px 0;
}

.pharm-workflow-section {
  background: #f0f4f8;
}

.pharm-inventory-section {
  background: white;
}

.pharm-reports-section {
  background: #f0f4f8;
}

.pharm-workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pharm-workflow-grid.reverse {
  direction: rtl;
}

.pharm-workflow-grid.reverse>* {
  direction: ltr;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(10, 71, 163, 0.1);
  color: #0a47a3;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-badge.green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.section-badge.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.workflow-content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.25;
}

.workflow-content>p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.workflow-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.workflow-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}

.workflow-features li svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Invoice Mockup */
.invoice-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.pharmacy-info strong {
  display: block;
  font-size: 1.125rem;
  color: #0a47a3;
}

.pharmacy-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.invoice-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.patient-info {
  background: #f8fafc;
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.patient-info .label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.patient-info strong {
  display: block;
  color: var(--text-primary);
}

.patient-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.invoice-items {
  margin-bottom: 20px;
}

.invoice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.item-details strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.item-details span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.item-amount {
  font-weight: 600;
  color: var(--text-primary);
}

.invoice-summary {
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9375rem;
}

.summary-row.discount {
  color: #16a34a;
}

.summary-row.total {
  border-top: 2px solid var(--border-color);
  padding-top: 12px;
  margin-top: 8px;
}

.summary-row.total strong {
  font-size: 1.25rem;
  color: #0a47a3;
}

.invoice-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-badge {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}

.print-btn {
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Stock Dashboard */
.stock-dashboard {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

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

.stock-header strong {
  font-size: 1.125rem;
}

.refresh-badge {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.stock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stock-stat {
  text-align: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.stock-stat .stock-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.stock-stat .stock-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.stock-stat.warning .stock-number {
  color: #f97316;
}

.stock-stat.danger .stock-number {
  color: #dc2626;
}

.stock-list {
  margin-bottom: 16px;
}

.stock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.stock-info strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.stock-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.stock-level {
  display: flex;
  align-items: center;
  gap: 12px;
}

.level-bar {
  width: 80px;
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: #16a34a;
  border-radius: var(--radius-full);
}

.level-fill.warning {
  background: #f97316;
}

.stock-level span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  min-width: 60px;
  text-align: right;
}

.warning-text {
  color: #f97316 !important;
  font-weight: 600;
}

.reorder-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: var(--radius-md);
  border-left: 4px solid #f97316;
}

.reorder-alert svg {
  color: #f97316;
}

.reorder-alert span {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.reorder-alert button {
  background: #f97316;
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

/* Prescription Section */
.pharm-prescription-section {
  padding: 100px 0;
  background: white;
}

.prescription-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prescription-feature {
  padding: 32px 24px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.prescription-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prescription-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(10, 71, 163, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a47a3;
}

.prescription-icon.warning {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.prescription-icon.success {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.prescription-icon.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.prescription-feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.prescription-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Report Highlights */
.report-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.report-highlight {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  font-size: 1.5rem;
}

.report-highlight strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.report-highlight span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* Analytics Dashboard */
.analytics-dashboard {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.analytics-header strong {
  font-size: 1.0625rem;
}

.analytics-header span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.analytics-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.analytics-card {
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.card-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.card-change.positive {
  color: #16a34a;
}

.analytics-chart {
  margin-bottom: 20px;
}

.chart-placeholder {
  background: #f8fafc;
  padding: 20px;
  border-radius: var(--radius-md);
  height: 100px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100%;
}

.chart-bars .bar {
  width: 20px;
  background: linear-gradient(180deg, #0a47a3, #3b82f6);
  border-radius: 4px 4px 0 0;
}

.top-products strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.product-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-color);
}

/* Integration Section */
.pharm-integration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.integration-header {
  text-align: center;
  margin-bottom: 60px;
}

.integration-header h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.integration-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.integration-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.integration-card-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.integration-card-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.int-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-icon.hms {
  background: rgba(13, 148, 136, 0.2);
  color: #2dd4bf;
}

.int-icon.ot {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.int-icon.inventory {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.int-icon.payment {
  background: rgba(251, 146, 60, 0.2);
  color: #fdba74;
}

.integration-card-item h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.integration-card-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

/* Mobile Section */
.pharm-mobile-section {
  padding: 100px 0;
  background: white;
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mobile-content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.mobile-content>p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.mobile-feature svg {
  color: #16a34a;
  flex-shrink: 0;
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #1e293b;
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition-fast);
}

.app-btn:hover {
  background: #0f172a;
}

/* Phone Mockup */
.phone-mockup-pharm {
  width: 280px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.phone-mockup-pharm .phone-notch {
  width: 100px;
  height: 28px;
  background: #0f172a;
  border-radius: 14px;
  margin: 0 auto 16px;
}

.phone-content {
  background: white;
  border-radius: 24px;
  padding: 20px;
  min-height: 400px;
}

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

.app-header span:first-child {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0a47a3;
}

.notification-dot {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.app-stat {
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.app-stat .value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.app-stat .label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.app-alerts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.alert-item.expiry {
  background: rgba(220, 38, 38, 0.1);
}

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

.app-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-action {
  aspect-ratio: 1;
  background: #f8fafc;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* CTA Section */
.pharm-cta-section {
  padding: 100px 0;
  background: #f0f4f8;
  text-align: center;
}

.pharm-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pharm-cta-content>p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.pharm-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-outline-dark:hover {
  border-color: var(--text-primary);
}

.cta-benefits {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-benefits span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Pharmacy Page Responsive */
@media (max-width: 992px) {
  .pharm-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pharm-hero-content h1 {
    font-size: 2.5rem;
  }

  .pharm-hero-ctas {
    justify-content: center;
  }

  .pharm-hero-preview {
    max-width: 600px;
    margin: 0 auto;
  }

  .pos-body {
    grid-template-columns: 1fr 1fr;
  }

  .pos-sidebar {
    display: none;
  }

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

  .pharm-features-grid {
    grid-template-columns: 1fr;
  }

  .pharm-workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pharm-workflow-grid.reverse {
    direction: ltr;
  }

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

  .report-highlights {
    grid-template-columns: 1fr;
  }

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

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .pos-body {
    grid-template-columns: 1fr;
  }

  .pos-cart {
    display: none;
  }

  .pharm-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .analytics-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pharm-hero-content h1 {
    font-size: 2rem;
  }

  .pharm-stats-grid {
    grid-template-columns: 1fr;
  }

  .prescription-features-grid {
    grid-template-columns: 1fr;
  }

  .integration-cards-grid {
    grid-template-columns: 1fr;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-benefits {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============================================
   ASSET MANAGEMENT PAGE STYLES
   ============================================= */

/* Asset Hero */
.asset-hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.asset-hero .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.asset-hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.asset-hero-content h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.asset-hero-content h1 .highlight {
  color: #0d9488;
}

.asset-hero-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.asset-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Asset Dashboard Mockup */
.asset-dashboard-mockup {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1e293b;
  color: white;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
  background: #22c55e;
}

.mockup-title {
  font-weight: 600;
  font-size: 0.875rem;
}

.mockup-time {
  font-size: 0.75rem;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.mockup-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 300px;
}

.asset-sidebar {
  background: #f8fafc;
  padding: 16px 12px;
  border-right: 1px solid var(--border-color);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  cursor: pointer;
}

.sidebar-item .icon {
  font-size: 1rem;
}

.sidebar-item:hover {
  background: white;
}

.sidebar-item.active {
  background: #0d9488;
  color: white;
}

.asset-main {
  padding: 16px;
}

.asset-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.mini-stat {
  background: #f8fafc;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
}

.mini-stat .mini-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mini-stat .mini-label {
  font-size: 0.6875rem;
  color: var(--text-light);
}

.mini-stat.green .mini-value {
  color: #16a34a;
}

.mini-stat.orange .mini-value {
  color: #f97316;
}

.mini-stat.red .mini-value {
  color: #dc2626;
}

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

.asset-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.asset-row .asset-icon {
  font-size: 1.25rem;
}

.asset-row .asset-info {
  flex: 1;
}

.asset-row .asset-info strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.asset-row .asset-info span {
  font-size: 0.6875rem;
  color: var(--text-light);
}

.status-badge {
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.operational {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.status-badge.maintenance {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

/* Stats Section */
.asset-stats-section {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.asset-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.asset-stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  display: block;
}

.asset-stat-item .stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Features Section */
.asset-features-section {
  padding: 100px 0;
  background: #f8fafc;
}

.asset-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.asset-feature-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.asset-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.asset-feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.feature-icon.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.asset-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.asset-feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Content Sections */
.asset-tracking-section,
.asset-maintenance-section,
.asset-lifecycle-section {
  padding: 100px 0;
}

.asset-tracking-section {
  background: white;
}

.asset-maintenance-section {
  background: #f8fafc;
}

.asset-lifecycle-section {
  background: white;
}

.asset-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.asset-content-grid.reverse {
  direction: rtl;
}

.asset-content-grid.reverse>* {
  direction: ltr;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-badge.teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.section-badge.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.section-badge.purple {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.asset-content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.25;
}

.asset-content>p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.asset-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.asset-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-primary);
}

.asset-feature-list li svg {
  flex-shrink: 0;
}

/* Asset Detail Card */
.asset-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.qr-placeholder {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-light);
}

.detail-title {
  flex: 1;
}

.detail-title strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

.detail-title span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.status-pill {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pill.active {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.detail-item .label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.detail-item .value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.warranty-badge {
  font-size: 0.8125rem;
  color: #f97316;
  font-weight: 500;
}

.action-btn {
  background: #0d9488;
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

/* Maintenance Calendar */
.maintenance-calendar {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

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

.calendar-head span {
  color: var(--text-light);
  cursor: pointer;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.calendar-days span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.calendar-days span.other {
  color: var(--text-light);
  opacity: 0.5;
}

.calendar-days span.today {
  background: #0d9488;
  color: white;
  font-weight: 600;
}

.calendar-days span.has-event {
  position: relative;
}

.calendar-days span.has-event::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.calendar-days span.has-event.preventive::after {
  background: #0d9488;
}

.calendar-days span.has-event.corrective::after {
  background: #f97316;
}

.calendar-days span.has-event.calibration::after {
  background: #7c3aed;
}

.calendar-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.calendar-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.preventive {
  background: #0d9488;
}

.dot.corrective {
  background: #f97316;
}

.dot.calibration {
  background: #7c3aed;
}

.upcoming-maintenance strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.maintenance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.maintenance-item .m-icon {
  font-size: 1.25rem;
}

.maintenance-item .m-info span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.maintenance-item .m-info small {
  font-size: 0.6875rem;
  color: var(--text-light);
}

/* Lifecycle Chart */
.lifecycle-chart {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
}

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

.chart-header strong {
  font-size: 1.0625rem;
}

.chart-header span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.depreciation-visual {
  margin-bottom: 24px;
}

.depreciation-bar {
  height: 32px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.depreciation-bar .bar-fill {
  height: 100%;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.bar-fill.imaging {
  background: linear-gradient(90deg, #0d9488, #14b8a6);
}

.bar-fill.surgery {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.bar-fill.icu {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.bar-fill.lab {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.lifecycle-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lc-stat {
  text-align: center;
  padding: 16px;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

.lc-stat .lc-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lc-stat .lc-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.lc-stat.warning .lc-value {
  color: #f97316;
}

/* Analytics Section */
.asset-analytics-section {
  padding: 100px 0;
  background: #f8fafc;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.analytics-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.analytics-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.analytics-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.analytics-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.analytics-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Integration Section */
.asset-integration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.integration-header {
  margin-bottom: 60px;
}

.integration-header h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.integration-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.integration-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.integration-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.integration-card .int-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.int-icon.hms {
  background: rgba(13, 148, 136, 0.2);
  color: #2dd4bf;
}

.int-icon.inventory {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.int-icon.procurement {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
}

.int-icon.finance {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.integration-card h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.integration-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

/* Mobile Section */
.asset-mobile-section {
  padding: 100px 0;
  background: white;
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mobile-content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.mobile-content>p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.app-buttons {
  display: flex;
  gap: 16px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #1e293b;
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background var(--transition-fast);
}

.app-btn:hover {
  background: #0f172a;
}

/* Phone Mockup */
.phone-mockup-asset {
  width: 280px;
  margin: 0 auto;
  background: #1e293b;
  border-radius: 36px;
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.phone-mockup-asset .phone-notch {
  width: 100px;
  height: 28px;
  background: #0f172a;
  border-radius: 14px;
  margin: 0 auto 16px;
}

.phone-screen {
  background: white;
  border-radius: 24px;
  padding: 20px;
  min-height: 400px;
}

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

.app-header-asset .app-logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0d9488;
}

.notification-dot {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
}

.scan-area {
  margin-bottom: 20px;
}

.scan-frame {
  background: #f8fafc;
  border: 2px dashed #0d9488;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: #0d9488;
  font-size: 0.875rem;
}

.recent-scans {
  margin-bottom: 20px;
}

.recent-scans strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.scan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.scan-item .scan-icon {
  font-size: 1.25rem;
}

.scan-item .scan-info span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.scan-item .scan-info small {
  font-size: 0.6875rem;
  color: var(--text-light);
}

.quick-actions-asset {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.qa-btn {
  aspect-ratio: 1;
  background: #f8fafc;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* CTA Section */
.asset-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  text-align: center;
}

.asset-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.asset-cta-content>p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.asset-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-trust-items {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-items span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Asset Page Responsive */
@media (max-width: 992px) {
  .asset-hero .container {
    grid-template-columns: 1fr;
  }

  .asset-hero-content h1 {
    font-size: 2.5rem;
  }

  .asset-hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .asset-sidebar {
    display: none;
  }

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

  .asset-features-grid {
    grid-template-columns: 1fr;
  }

  .asset-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .asset-content-grid.reverse {
    direction: ltr;
  }

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

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

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .asset-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lifecycle-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .asset-hero-content h1 {
    font-size: 2rem;
  }

  .asset-stats-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-features-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-trust-items {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============================================
   HOMEPAGE REDESIGN STYLES
   ============================================= */

/* Home Hero Section */
.home-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 50%, #f0fdf4 100%);
  overflow: hidden;
}

.home-hero .container {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-hero-content {
  max-width: 580px;
}

.home-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.home-hero-content .hero-badge svg {
  color: var(--color-accent);
}

.home-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 24px;
}

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

.home-hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 32px;
}

.home-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-badges span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Home Dashboard Mockup */
.home-hero-visual {
  perspective: 1000px;
}

.home-dashboard-mockup {
  background: #1e293b;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.home-dashboard-mockup:hover {
  transform: rotateY(-2deg) rotateX(2deg);
}

.home-dashboard-mockup .mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-dashboard-mockup .mockup-dots {
  display: flex;
  gap: 6px;
}

.home-dashboard-mockup .mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.home-dashboard-mockup .mockup-dots span:first-child {
  background: #ef4444;
}

.home-dashboard-mockup .mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.home-dashboard-mockup .mockup-dots span:nth-child(3) {
  background: #22c55e;
}

.home-dashboard-mockup .mockup-title {
  flex: 1;
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

.home-dashboard-mockup .mockup-live {
  font-size: 0.7rem;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: var(--radius-full);
}

.home-dashboard-mockup .mockup-body {
  display: flex;
  min-height: 320px;
}

.home-dashboard-mockup .mockup-sidebar {
  width: 160px;
  background: #0f172a;
  padding: 16px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.home-dashboard-mockup .sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}

.home-dashboard-mockup .sidebar-item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.home-dashboard-mockup .sidebar-item.active {
  color: white;
  background: rgba(13, 148, 136, 0.3);
  border-right: 3px solid var(--color-primary);
}

.home-dashboard-mockup .mockup-main {
  flex: 1;
  padding: 20px;
}

.home-dashboard-mockup .mockup-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.home-dashboard-mockup .mockup-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.home-dashboard-mockup .mockup-stat .stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 4px;
}

.home-dashboard-mockup .mockup-stat.blue .stat-value {
  color: #3b82f6;
}

.home-dashboard-mockup .mockup-stat.green .stat-value {
  color: #22c55e;
}

.home-dashboard-mockup .mockup-stat.orange .stat-value {
  color: #f59e0b;
}

.home-dashboard-mockup .mockup-stat.purple .stat-value {
  color: #a855f7;
}

.home-dashboard-mockup .mockup-stat .stat-label {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
}

.home-dashboard-mockup .mockup-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 16px;
}

.home-dashboard-mockup .chart-title {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.home-dashboard-mockup .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
}

.home-dashboard-mockup .chart-bar {
  flex: 1;
  background: rgba(13, 148, 136, 0.3);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.home-dashboard-mockup .chart-bar.active {
  background: var(--color-primary);
}

/* Home Stats Section */
.home-stats-section {
  padding: 60px 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.home-stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.home-stat-item .stat-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Home Trust Section */
.home-trust-section {
  padding: 48px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.home-trust-section .trust-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0 0 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  opacity: 0.7;
  transition: opacity 0.3s;
}

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

/* Home Solutions Section */
.home-solutions-section {
  padding: 100px 0;
  background: white;
}

.home-solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.home-solution-card {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}

.home-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.home-solution-card:hover::before {
  opacity: 1;
}

.home-solution-card .solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.home-solution-card .solution-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.home-solution-card .solution-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.home-solution-card .solution-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.home-solution-card .solution-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.home-solution-card .solution-icon.teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.home-solution-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.home-solution-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 auto;
  flex: 1;
}

.home-solution-card .solution-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s;
}

.home-solution-card:hover .solution-link {
  color: var(--color-primary-dark);
}

/* Home Features Section */
.home-features-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.home-feature-card {
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

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

.home-feature-card .feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.home-feature-card .feature-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.home-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.home-feature-card p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Home Integration Section */
.home-integration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.section-badge-light {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary-light);
  margin-bottom: 20px;
}

.home-integration-section .integration-header h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.home-integration-section .integration-header p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Integration Flow Layout */
.integration-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 50px;
}

.integration-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.flow-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  min-width: 110px;
  transition: all 0.3s ease;
}

.flow-module:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.flow-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.flow-icon.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.flow-icon.purple {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.flow-icon.red {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.flow-icon.orange {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.flow-icon.teal {
  background: rgba(13, 148, 136, 0.2);
  color: #2dd4bf;
}

.flow-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.4;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  opacity: 0.8;
}

/* Center Hub */
.flow-center-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px;
}

.hub-inner {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(13, 148, 136, 0.5), 0 0 80px rgba(13, 148, 136, 0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 40px rgba(13, 148, 136, 0.5), 0 0 80px rgba(13, 148, 136, 0.2);
  }

  50% {
    box-shadow: 0 0 60px rgba(13, 148, 136, 0.7), 0 0 100px rgba(13, 148, 136, 0.3);
  }
}

.hub-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.hub-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

/* Bottom Module with connector */
.integration-flow-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.flow-connector-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.bottom-module {
  margin-top: 8px;
}

/* Integration Features Grid */
.integration-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.int-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.int-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(13, 148, 136, 0.3);
}

.int-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.int-feature-icon svg {
  color: var(--color-primary-light);
}

.int-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.int-feature-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.int-feature-text span {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Home Why Section */
.home-why-section {
  padding: 100px 0;
  background: white;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.home-why-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.home-why-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
}

.home-why-card .why-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.home-why-card:hover .why-number {
  opacity: 1;
}

.home-why-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.home-why-card p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Home CTA Section */
.home-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.home-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.home-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
}

.home-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
}

.home-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.home-cta-buttons .btn-primary {
  background: white;
  color: var(--color-primary);
}

.home-cta-buttons .btn-primary:hover {
  background: #f8fafc;
}

.home-cta-buttons .btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.home-cta-buttons .btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Homepage Responsive Styles */
@media (max-width: 1200px) {
  .home-solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .home-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .home-hero-content h1 {
    font-size: 2.75rem;
  }

  .home-hero-ctas {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .home-dashboard-mockup {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
  }

  .home-dashboard-mockup:hover {
    transform: none;
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

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

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

  .integration-flow-row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }

  .flow-module {
    padding: 16px;
    min-width: 100px;
  }

  .flow-center-hub {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }

  .integration-flow-bottom {
    margin-top: 0;
  }

  .integration-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 100px 0 60px;
  }

  .home-hero-content h1 {
    font-size: 2.25rem;
  }

  .home-hero-content p {
    font-size: 1rem;
  }

  .home-hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .home-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 8px;
  }

  .home-dashboard-mockup .mockup-body {
    flex-direction: column;
  }

  .home-dashboard-mockup .mockup-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 8px 12px;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .home-dashboard-mockup .sidebar-item {
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 0.7rem;
  }

  .home-dashboard-mockup .mockup-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stats-section {
    padding: 40px 0;
  }

  .home-stat-item .stat-number {
    font-size: 2rem;
  }

  .trust-logos {
    gap: 24px;
  }

  .trust-logo {
    font-size: 0.85rem;
  }

  .home-solutions-section {
    padding: 60px 0;
  }

  .home-solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-solution-card {
    flex-direction: row;
    gap: 20px;
    padding: 24px;
  }

  .home-solution-card .solution-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .home-solution-card h3 {
    margin-bottom: 8px;
  }

  .home-solution-card p {
    font-size: 0.8rem;
  }

  .home-solution-card .solution-link {
    margin-top: 12px;
  }

  .home-features-section {
    padding: 60px 0;
  }

  .home-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-feature-card {
    padding: 24px;
  }

  .home-integration-section {
    padding: 60px 0;
  }

  .home-integration-section .integration-header h2 {
    font-size: 1.75rem;
  }

  .integration-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .home-why-section {
    padding: 60px 0;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-cta-section {
    padding: 60px 0;
  }

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

  .home-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .home-cta-buttons .btn {
    width: 100%;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============================================
   GENERAL CTA SECTION STYLES
   ============================================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  text-align: center;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Light Button Variants (for dark backgrounds) */
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: #0d9488;
  border: none;
  border-radius: var(--radius-full, 100px);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal, 0.3s ease);
  text-decoration: none;
}

.btn-light:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full, 100px);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal, 0.3s ease);
  text-decoration: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

/* CTA Section Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-light,
  .btn-outline-light {
    width: 100%;
    max-width: 280px;
  }
}