:root {
  --primary-red: #B22222;
  --secondary-red: #D74444;
  --dark-red: #8D1A1A;
  --luxury-black: #0A0A0B;
  --soft-bg: #FAFAFA;
  --section-alt: #F5F5F7;
  --gold-accent: #C6A667;
  --gold-light: #D4B87A;
  --text-primary: #1A1A1B;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border-light: #E5E7EB;
  --white: #FFFFFF;
  --gradient-hero: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 50%, var(--secondary-red) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 12px 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.nav-logo .logo-card {
  width: 180px;
  aspect-ratio: 2.5 / 1;
  background: #FFFFFF;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 24px rgba(178, 34, 34, 0.18), 0 1.5px 6px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(198, 166, 103, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo .logo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
  color: var(--primary-red);
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
  padding: 16px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

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

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: var(--primary-red);
}

.dropdown-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #6c757d;
}

.dropdown-item:hover svg {
  color: var(--primary-red);
}

.dropdown-divider {
  height: 1px;
  background: #e9ecef;
  margin: 12px 8px;
}

.dropdown-section {
  margin-top: 4px;
}

.dropdown-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.dropdown-section-header:hover {
  background: var(--section-alt);
}

.dropdown-section-header svg:first-child {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.dropdown-section-header .section-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.dropdown-section.expanded .dropdown-section-header .section-arrow {
  transform: rotate(90deg);
}

.dropdown-section-items {
  display: none;
  padding-left: 12px;
}

.dropdown-section.expanded .dropdown-section-items {
  display: block;
}

.dropdown-item.sub-item {
  padding: 8px 12px;
  font-size: 13px;
}

.dropdown-item.sub-item svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

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

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

.btn-primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(178,34,34,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178,34,34,0.45);
}

.btn-gold {
  background: #ffffff;
  color: var(--luxury-black);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 16px;
}

.btn-full {
  width: 100%;
}

.page-hero {
  padding: 160px 48px 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--section-alt) 100%);
  text-align: center;
}

.page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--luxury-black);
}

.page-hero h1 span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--section-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(178,34,34,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,166,103,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(178,34,34,0.1) 0%, rgba(178,34,34,0.05) 100%);
  border: 1px solid rgba(178,34,34,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--luxury-black);
}

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

.hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

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

.hero-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-video-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  background: var(--luxury-black);
  aspect-ratio: 16/10;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('/images/video-thumbnail.png') center center / cover no-repeat;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.hero-video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.hero-video-placeholder:hover::before {
  background: rgba(0,0,0,0.2);
}

.hero-video-placeholder > * {
  position: relative;
  z-index: 1;
}

.hero-video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button svg {
  width: 32px;
  height: 32px;
  fill: white;
  margin-left: 4px;
}

.hero-video-placeholder span {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.hero-video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: var(--luxury-black);
}

.hero-badges-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.floating-badge {
  position: relative;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.floating-badge.tjc {
  color: var(--primary-red);
}

.floating-badge.hipaa {
  color: #059669;
}

.floating-badge svg {
  width: 20px;
  height: 20px;
}

.trust {
  padding: 80px 48px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trust-badge:hover {
  opacity: 1;
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-alt);
  border-radius: 16px;
}

.trust-badge-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.5;
}

.trust-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.features {
  padding: 120px 48px;
  background: var(--section-alt);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--luxury-black);
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

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

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(178,34,34,0.1);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(178,34,34,0.1) 0%, rgba(178,34,34,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--luxury-black);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.demo {
  padding: 120px 48px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.demo::before {
  display: none;
}

.demo-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.demo .section-header {
  color: var(--luxury-black);
}

.demo .section-title {
  color: var(--luxury-black);
}

.demo .section-description {
  color: var(--text-secondary);
}

.demo-video {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  background: var(--dark-red);
}

.demo-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('/images/video-thumbnail.png') center center / cover no-repeat;
  color: white;
  cursor: pointer;
  position: relative;
}

.demo-video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.demo-video-placeholder:hover::before {
  background: rgba(0,0,0,0.2);
}

.demo-video-placeholder > * {
  position: relative;
  z-index: 1;
}

.demo-features {
  margin-top: 60px;
  text-align: center;
}

.demo-features h2 {
  color: var(--luxury-black);
  font-size: 28px;
  margin-bottom: 40px;
}

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

.demo-feature {
  background: var(--section-alt);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.demo-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(178,34,34,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.demo-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
}

.demo-feature h3 {
  color: var(--luxury-black);
  font-size: 18px;
  margin-bottom: 8px;
}

.demo-feature p {
  color: var(--text-secondary);
  font-size: 14px;
}

.testimonials {
  padding: 120px 48px;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--section-alt);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 80px;
  font-weight: 800;
  color: var(--primary-red);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--luxury-black);
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-accent);
}

.cta {
  padding: 120px 48px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.cta .btn-gold {
  padding: 20px 40px;
  font-size: 17px;
}

.cta .btn-outline {
  padding: 20px 40px;
  font-size: 17px;
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.3);
}

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

.contact {
  padding: 120px 48px;
  background: var(--section-alt);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.contact-info p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(178,34,34,0.1) 0%, rgba(178,34,34,0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-red);
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--luxury-black);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer {
  background: #f8f9fa;
  color: #1a1a2e;
  padding: 80px 48px 40px;
  border-top: 1px solid #e9ecef;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.8;
  max-width: 280px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  color: #495057;
}

.social-icon:hover svg {
  color: white;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #495057;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #6c757d;
}

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

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6c757d;
}

.footer-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-accent);
  fill: none;
  stroke-width: 1.5;
}

.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.chatbot-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(178,34,34,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  overflow: hidden;
}

.chatbot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(178,34,34,0.5);
}

.chatbot-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.chatbot-brain-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  height: 520px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: var(--gradient-hero);
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.chatbot-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chatbot-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.chatbot-header p {
  font-size: 12px;
  opacity: 0.8;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-close svg {
  width: 24px;
  height: 24px;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-message.bot {
  background: var(--section-alt);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--gradient-hero);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-input {
  padding: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 12px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
}

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

.chatbot-input button {
  width: 44px;
  height: 44px;
  background: var(--gradient-hero);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chatbot-input button:hover {
  transform: scale(1.05);
}

.chatbot-input button svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: var(--section-alt);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(26, 26, 30, 0.98) 0%, rgba(10, 10, 11, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(198, 166, 103, 0.3);
  padding: 20px 32px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-black);
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  color: #fff;
}

.cookie-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-accent);
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cookie-text a {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(178, 34, 34, 0.4);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  padding: 48px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

#videoModal[style*="flex"] {
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--luxury-black);
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.9);
  transform: rotate(90deg);
}

#demoVideo {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero h1 {
    font-size: 44px;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .demo-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 100px 24px 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .page-hero {
    padding: 120px 24px 60px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .features,
  .testimonials,
  .demo,
  .cta,
  .contact {
    padding: 80px 24px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer {
    padding: 60px 24px 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .chatbot-window {
    width: calc(100vw - 48px);
    right: -12px;
    height: 450px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  #videoModal {
    padding: 24px;
  }
  
  .modal-close {
    top: 10px;
    right: 10px;
  }
  
  .modal-content {
    max-width: calc(100vw - 48px);
  }
  
  .cookie-banner {
    padding: 16px 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-icon {
    display: none;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

@keyframes slideDown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

/* About Page */
.about-content {
  padding: 80px 48px;
}

/* Privacy Policy Page */
.privacy-content {
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-document {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 64px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.privacy-updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--luxury-black);
  margin-bottom: 16px;
}

.privacy-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--luxury-black);
  margin: 24px 0 12px;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.privacy-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.privacy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.privacy-section li strong {
  color: var(--luxury-black);
}

.privacy-contact {
  background: linear-gradient(135deg, rgba(215, 68, 68, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(215, 68, 68, 0.1);
  margin-top: 16px;
}

.privacy-contact p {
  margin-bottom: 8px;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--luxury-black);
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-stat-card {
  background: var(--section-alt);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.about-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.values-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--luxury-black);
}

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

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-red);
  fill: none;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-bottom: 80px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.05) 0%, rgba(215, 68, 68, 0.08) 100%);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(183, 28, 28, 0.1);
}

.mission-icon {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mission-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.5;
}

.mission-card h2,
.vision-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--luxury-black);
}

.mission-card p,
.vision-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Vision & Mission Cards - New Design */
.vm-card {
  background: linear-gradient(135deg, rgba(215, 68, 68, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(215, 68, 68, 0.12);
  transition: all 0.3s ease;
}

.vm-card:hover {
  box-shadow: 0 8px 30px rgba(215, 68, 68, 0.1);
  transform: translateY(-2px);
}

.vm-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.vm-icon-wrapper.vision-icon {
  background: linear-gradient(135deg, rgba(215, 68, 68, 0.1) 0%, rgba(215, 68, 68, 0.15) 100%);
}

.vm-icon-wrapper.mission-icon {
  background: linear-gradient(135deg, rgba(215, 68, 68, 0.1) 0%, rgba(215, 68, 68, 0.15) 100%);
}

.vm-icon-wrapper svg {
  width: 26px;
  height: 26px;
  stroke: #D74444;
  transition: all 0.3s ease;
}

.vm-icon-wrapper:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 20px rgba(215, 68, 68, 0.25);
}

.vm-icon-wrapper:hover svg {
  stroke: #B22222;
}

.vm-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--luxury-black);
}

.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Coming Soon Card */
.coming-soon-card {
  background: linear-gradient(135deg, rgba(183, 28, 28, 0.03) 0%, rgba(198, 166, 103, 0.05) 100%);
  border: 2px dashed rgba(183, 28, 28, 0.2);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.coming-soon-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-red);
  fill: none;
  stroke-width: 1.5;
}

.coming-soon-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--luxury-black);
}

.coming-soon-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* Careers Page */
.careers-content {
  padding: 80px 48px;
}

.careers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.careers-intro h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.careers-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.benefit-card {
  background: var(--section-alt);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
}

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

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.openings-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(183, 28, 28, 0.1);
}

.job-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.job-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Blog Page */
.blog-content {
  padding: 80px 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-image {
  background: var(--section-alt);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  background: #F8F9FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 68, 68, 0.1);
}

.blog-icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  stroke-width: 1.5;
  fill: none;
}

.blog-placeholder--compliance .blog-icon-circle {
  background: rgba(215, 68, 68, 0.1);
}

.blog-placeholder--compliance .blog-icon-circle svg {
  stroke: var(--primary-red);
}

.blog-placeholder--practices .blog-icon-circle {
  background: rgba(215, 68, 68, 0.1);
}

.blog-placeholder--practices .blog-icon-circle svg {
  stroke: var(--primary-red);
}

.blog-placeholder--product .blog-icon-circle {
  background: rgba(100, 116, 139, 0.1);
}

.blog-placeholder--product .blog-icon-circle svg {
  stroke: #64748B;
}

.blog-placeholder--casestudy .blog-icon-circle {
  background: rgba(215, 68, 68, 0.1);
}

.blog-placeholder--casestudy .blog-icon-circle svg {
  stroke: var(--primary-red);
}

.blog-info {
  padding: 32px;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.blog-info h2,
.blog-info h3 {
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-info h2 {
  font-size: 24px;
}

.blog-info h3 {
  font-size: 18px;
}

.blog-info > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Press Page */
.press-content {
  padding: 80px 48px;
}

.press-contact {
  background: var(--section-alt);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-bottom: 64px;
}

.press-contact h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.press-contact p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.press-releases h2,
.media-coverage h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.press-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 32px;
}

.press-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

.press-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

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

.coverage-card {
  background: var(--section-alt);
  border-radius: 12px;
  padding: 24px;
}

.coverage-source {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.coverage-card p {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

/* Help Center Page */
.help-content {
  padding: 80px 48px;
}

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

.help-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}

.help-icon {
  width: 56px;
  height: 56px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.help-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
}

.help-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

.help-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

/* Documentation Page */
.docs-content {
  padding: 80px 48px;
}

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

.docs-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.docs-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 8px 30px rgba(183, 28, 28, 0.1);
}

.docs-icon {
  width: 56px;
  height: 56px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.docs-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-red);
  fill: none;
}

.docs-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.docs-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.docs-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-red);
}

/* API Page */
.api-content {
  padding: 80px 48px;
}

.api-intro {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.api-intro h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.api-intro p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.api-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.api-feature {
  text-align: center;
  padding: 32px;
}

.api-icon {
  width: 64px;
  height: 64px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.api-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-red);
  fill: none;
}

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

.api-feature p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.api-endpoints h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.endpoint-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.endpoint {
  background: var(--section-alt);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.method {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.method.get {
  background: #10b981;
  color: white;
}

.method.post {
  background: #3b82f6;
  color: white;
}

.endpoint code {
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 14px;
  color: var(--luxury-black);
  flex-shrink: 0;
}

.endpoint p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Status Page */
.status-content {
  padding: 80px 48px;
}

.status-operational {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #059669 !important;
}

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

.status-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-card.operational .status-indicator {
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.status-info p {
  font-size: 13px;
  color: #10b981;
  margin: 0;
}

.status-card .uptime {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
}

.incident-history h2,
.uptime-chart h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.incident-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.incident {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
}

.incident-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.incident-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.incident-date {
  font-size: 13px;
  color: var(--text-muted);
}

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

.incident p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.uptime-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.uptime-bar {
  flex: 1;
  height: 32px;
  background: #10b981;
  border-radius: 4px;
  opacity: calc(var(--uptime) / 100);
}

.uptime-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

/* Responsive for new pages */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid,
  .benefits-grid,
  .help-categories,
  .docs-grid,
  .api-features,
  .status-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card.featured {
    grid-column: span 1;
    display: block;
  }
}

@media (max-width: 768px) {
  .about-content,
  .careers-content,
  .blog-content,
  .press-content,
  .help-content,
  .docs-content,
  .api-content,
  .status-content {
    padding: 60px 24px;
  }
  
  .values-grid,
  .benefits-grid,
  .help-categories,
  .docs-grid,
  .api-features,
  .status-overview,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .job-card {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .endpoint {
    flex-wrap: wrap;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* Article Pages */
.article-page {
  padding: 80px 48px;
  background: var(--white);
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-red);
  margin-bottom: 24px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 0.8;
}

.back-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.article-header .article-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.article-header h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--luxury-black);
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.article-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.article-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--luxury-black);
  margin: 48px 0 20px;
}

.article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--luxury-black);
  margin: 36px 0 16px;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content blockquote {
  background: var(--section-alt);
  border-left: 4px solid var(--primary-red);
  padding: 24px 32px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 12px;
}

.article-content blockquote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
}

.article-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.article-share span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  background: var(--section-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.share-btn:hover {
  background: var(--primary-red);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 2;
}

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

.press-contact-box {
  background: var(--section-alt);
  border-radius: 16px;
  padding: 32px;
}

.press-contact-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.press-contact-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.press-contact-box a {
  color: var(--primary-red);
}

/* Clickable Blog and Press Cards */
a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.blog-card.featured {
  display: grid;
}

a.press-card.clickable {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a.press-card.clickable:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(183, 28, 28, 0.1);
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-red);
}

@media (max-width: 768px) {
  .article-page {
    padding: 60px 24px;
  }
  
  .article-header h1 {
    font-size: 32px;
  }
  
  .article-content {
    font-size: 16px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 20px;
  }
}

/* Feature Categories Section */
.feature-categories {
  padding: 80px 0 120px;
  background: var(--white);
}

.feature-categories .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-category {
  margin-bottom: 64px;
  background: var(--soft-bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.feature-category:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.feature-category.highlight-category {
  background: linear-gradient(135deg, rgba(178,34,34,0.03) 0%, rgba(198,166,103,0.05) 100%);
  border: 2px solid rgba(198,166,103,0.3);
}

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

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 28px;
  height: 28px;
}

.category-icon.core-system { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); }
.category-icon.core-system svg { stroke: white; }

.category-icon.timeline-engine { background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%); }
.category-icon.timeline-engine svg { stroke: white; }

.category-icon.time-metrics { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.category-icon.time-metrics svg { stroke: white; }

.category-icon.compliance { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.category-icon.compliance svg { stroke: white; }

.category-icon.workflow { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.category-icon.workflow svg { stroke: white; }

.category-icon.analytics { background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%); }
.category-icon.analytics svg { stroke: white; }

.category-icon.awards { background: linear-gradient(135deg, var(--gold-accent) 0%, #B8956A 100%); }
.category-icon.awards svg { stroke: white; }

.category-icon.feedback { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }
.category-icon.feedback svg { stroke: white; }

.category-icon.root-cause { background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%); }
.category-icon.root-cause svg { stroke: white; }

.category-icon.action-queue { background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%); }
.category-icon.action-queue svg { stroke: white; }

.category-icon.monitoring { background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%); }
.category-icon.monitoring svg { stroke: white; }

.category-icon.after-discharge { background: linear-gradient(135deg, #F97316 0%, #C2410C 100%); }
.category-icon.after-discharge svg { stroke: white; }

.category-icon.notifications { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }
.category-icon.notifications svg { stroke: white; }

.category-icon.documentation { background: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%); }
.category-icon.documentation svg { stroke: white; }

.category-icon.survey-mode { background: linear-gradient(135deg, #22C55E 0%, #15803D 100%); }
.category-icon.survey-mode svg { stroke: white; }

.category-icon.reports { background: linear-gradient(135deg, #64748B 0%, #475569 100%); }
.category-icon.reports svg { stroke: white; }

.category-icon.integrations { background: linear-gradient(135deg, var(--primary-red) 0%, var(--gold-accent) 100%); }
.category-icon.integrations svg { stroke: white; }

.category-icon.community { background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%); }
.category-icon.community svg { stroke: white; }

.category-icon.admin { background: linear-gradient(135deg, #78716C 0%, #57534E 100%); }
.category-icon.admin svg { stroke: white; }

.category-icon.security { background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%); }
.category-icon.security svg { stroke: white; }

.category-title h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.category-title p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

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

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

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

.sat-feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.sat-feature-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(178,34,34,0.08);
  transform: translateY(-2px);
}

.sat-feature-card.compact {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sat-feature-card.compact h4 {
  margin: 0;
  font-size: 14px;
}

.sat-feature-card.addon-card {
  position: relative;
  padding: 32px 24px;
  text-align: center;
}

.addon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sat-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(178,34,34,0.08) 0%, rgba(215,68,68,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sat-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-red);
}

.sat-feature-icon.small {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.sat-feature-icon.small svg {
  width: 18px;
  height: 18px;
}

.sat-feature-icon.large {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.sat-feature-icon.large svg {
  width: 32px;
  height: 32px;
}

.sat-feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sat-feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.sat-feature-card.addon-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.sat-feature-card.addon-card p {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .category-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-features.wide-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-features.addon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-category {
    padding: 24px;
    margin-bottom: 32px;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .category-features {
    grid-template-columns: 1fr;
  }
  
  .category-features.wide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-features.addon-grid {
    grid-template-columns: 1fr;
  }
  
  .sat-feature-card.compact {
    flex-direction: row;
  }
  
  .category-title h2 {
    font-size: 20px;
  }
}
