:root {
  --color-primary: #1a1a1a;
  --color-primary-dark: #000000;
  --color-primary-light: #333333;
  --color-secondary: #1a1a1a;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-border: #e5e5e5;
  --color-success: #22c55e;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-secondary);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links a {
  color: #666;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #1a1a1a;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown .nav-dropdown-menu:hover {
  display: flex;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: #666;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-sans);
  padding: 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  color: #1a1a1a;
}

.dropdown-icon {
  font-size: 0.75rem;
  font-style: normal;
  transition: var(--transition);
}

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

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  margin-top: -0.5rem;
  padding-top: calc(0.5rem + 8px);
}

.nav-dropdown-menu a {
  padding: 12px 20px;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: #fafafa;
  color: #1a1a1a;
}

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: #1a1a1a;
  color: white;
  border: 1px solid #1a1a1a;
}

.btn-primary:hover {
  background: #000000;
  border-color: #000000;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: white;
  color: #1a1a1a;
  border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
  background: #fafafa;
  border-color: #d0d0d0;
}

.btn-large {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

/* Modern Hero Section */
.modern-hero {
  padding: 140px 0 100px;
  background: #1a1a1a;
  color: white;
  border-bottom: none;
}

.modern-hero h1,
.modern-hero .hero-title,
.modern-hero p,
.modern-hero .hero-description {
  color: #ffffff !important;
}

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

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-description {
  font-size: 1.375rem;
  color: #ffffff !important;
  opacity: 0.95;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Stats on dark background (hero) */
.modern-hero .stat-value {
  color: white;
}

.modern-hero .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features-section {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: var(--spacing-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: #d0d0d0;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: var(--radius-sm);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.01em;
}

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

/* Use Cases Section */
.use-cases-section {
  padding: var(--spacing-3xl) 0;
  background: #fafafa;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-card {
  padding: var(--spacing-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.use-case-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.01em;
}

.use-case-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Microsoft-style Hero Section (kept for backward compatibility) */
.ms-hero-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  min-height: 500px;
}

.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  animation: fadeIn 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

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

.ms-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ms-hero-content {
  max-width: 550px;
}

.ms-hero-heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.ms-hero-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.ms-btn-primary {
  background: white;
  color: #1a1a1a;
}

.ms-btn-primary:hover {
  background: #f5f5f5;
}

.ms-btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ms-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.ms-image-placeholder {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.ms-image-placeholder svg {
  width: 100%;
  height: 100%;
}

/* JotPulse Dashboard Preview */
.jotpulse-dashboard {
  background: white;
  padding: 0;
}

.dashboard-preview {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  background: #f3f2f1;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1dfdd;
}

.dashboard-logo {
  font-weight: 700;
  font-size: 18px;
  color: #0078d4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-logo::before {
  content: '';
  width: 24px;
  height: 24px;
  background: #0078d4;
  border-radius: 3px;
}

.dashboard-menu {
  font-size: 18px;
  color: #323130;
  cursor: pointer;
}

.dashboard-content {
  flex: 1;
  padding: 20px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-title {
  font-size: 24px;
  font-weight: 600;
  color: #323130;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: #f3f2f1;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: #0078d4;
  color: white;
}

.stat-icon.purple {
  background: #8764b8;
  color: white;
}

.stat-icon.green {
  background: #107c10;
  color: white;
}

.stat-info {
  flex: 1;
}

.stat-label {
  font-size: 12px;
  color: #605e5c;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
  color: #323130;
}

.dashboard-chart {
  background: #f3f2f1;
  border-radius: 6px;
  padding: 16px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.chart-bar {
  flex: 1;
  background: #0078d4;
  border-radius: 2px 2px 0 0;
  min-height: 20px;
}

/* Company Visual - Abstract Design */
.company-visual {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.company-abstract-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.abstract-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 15%;
  animation-delay: 1.5s;
}

.shape-5 {
  width: 90px;
  height: 90px;
  bottom: 30%;
  right: 20%;
  animation-delay: 2.5s;
}

.shape-6 {
  width: 70px;
  height: 70px;
  top: 60%;
  right: 10%;
  animation-delay: 0.5s;
}

.abstract-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
}

.abstract-lines svg {
  width: 100%;
  height: 100%;
}

.abstract-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  animation: sparkle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 40%;
  right: 30%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  bottom: 35%;
  left: 40%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  top: 55%;
  right: 25%;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 60%;
  animation-delay: 0.3s;
}

.particle:nth-child(6) {
  bottom: 25%;
  right: 45%;
  animation-delay: 0.8s;
}

.particle:nth-child(7) {
  top: 70%;
  left: 30%;
  animation-delay: 1.2s;
}

.particle:nth-child(8) {
  top: 15%;
  right: 50%;
  animation-delay: 0.7s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.3;
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* Carousel Controls */
.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  border-color: white;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: auto;
  }
  
  .hero-slide {
    animation: none;
  }
  
  .ms-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ms-hero-image {
    order: -1;
  }
  
  .ms-hero-heading {
    font-size: 48px;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-carousel-controls {
    margin-top: 24px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

/* Microsoft-style Product Showcase */
.ms-product-showcase {
  padding: 80px 0;
  background: var(--color-bg);
}

.ms-product-showcase.ms-product-alt {
  background: var(--color-bg-alt);
}

.ms-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ms-product-card:nth-child(even) .ms-product-image {
  order: 2;
}

.ms-product-card:nth-child(even) .ms-product-content {
  order: 1;
}

.ms-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-img-placeholder {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/10;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ms-img-placeholder svg {
  width: 100%;
  height: 100%;
}

.ms-product-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.ms-product-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.ms-product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.ms-product-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.ms-product-link span {
  transition: transform 0.2s;
}

.ms-product-link:hover span {
  transform: translateX(4px);
}

/* Microsoft-style For Business Section */
.ms-for-business {
  padding: 80px 0;
  background: var(--color-bg);
}

.ms-section-heading {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 48px;
  text-transform: lowercase;
}

.ms-section-heading::first-letter {
  text-transform: uppercase;
}

.ms-business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.ms-business-card {
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ms-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.ms-business-visual {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.ms-business-img {
  width: 100%;
  height: 100%;
  background: #323130;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-business-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 24px 24px 12px;
}

.ms-business-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0 24px 24px;
}

.ms-business-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin: 0 24px 24px;
}

.ms-business-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.ms-business-link span {
  transition: transform 0.2s;
}

.ms-business-link:hover span {
  transform: translateX(4px);
}

/* Microsoft-style What's New Section */
.ms-whats-new {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.ms-whats-new-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.ms-whats-new-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ms-whats-new-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ms-whats-new-item a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.ms-category {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ms-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.3;
}

.ms-whats-new-item:hover .ms-title {
  color: var(--color-primary);
}

/* Hero */
.hero {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(to bottom, var(--color-bg-alt), var(--color-bg));
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
}

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

/* Features */
.features {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  padding: var(--spacing-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.feature-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Use Cases */
.use-cases {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.use-case-card {
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.use-case-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

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

.use-case-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.use-case-card > p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

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

.use-case-list li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  color: var(--color-text-light);
  position: relative;
}

.use-case-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* Integrations */
.integrations {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.integration-card {
  padding: var(--spacing-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.integration-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.integration-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  padding: var(--spacing-xl);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.testimonial-content {
  margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

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

.author-name {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.125rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* How It Works */
.how-it-works {
  padding: var(--spacing-3xl) 0;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.step-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 auto var(--spacing-md);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.step-card p {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Page Hero Modern */
.page-hero-modern {
  padding: 100px 0 60px;
  background: var(--color-bg);
  border-bottom: 1px solid #e5e5e5;
}

.page-hero-content-modern {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-content-modern h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero-content-modern p {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

/* Page Content Modern */
.page-content-modern {
  padding: 80px 0;
  background: var(--color-bg);
}

.content-sections-modern {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-section-modern h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.content-section-modern p {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-section-modern p:last-child {
  margin-bottom: 0;
}

.content-section-modern strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Products Showcase Modern */
.products-showcase-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.product-card-modern {
  padding: 32px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.product-card-modern:hover {
  background: white;
  border-color: #d0d0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-icon-modern {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
}

.product-icon-modern svg {
  width: 32px;
  height: 32px;
  color: #1a1a1a;
}

.product-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-card-modern p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.coming-soon-badge-modern {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

/* Investors Page */
.investors-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.investor-card-modern {
  padding: 32px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.investor-card-modern:hover {
  background: white;
  border-color: #d0d0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.investor-icon-modern {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
}

.investor-icon-modern svg {
  width: 28px;
  height: 28px;
  color: #1a1a1a;
}

.investor-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.investor-card-modern p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.product-stats-modern {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.product-stats-modern li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.product-stats-modern li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 600;
}

.investor-info-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.investor-info-card-modern {
  padding: 24px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.investor-info-card-modern h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.investor-info-card-modern p {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Leadership Page */
.leadership-single-modern {
  max-width: 700px;
  margin: 0 auto;
}

.leader-card-modern {
  padding: 60px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.leader-avatar-modern {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.leader-card-modern h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.leader-title-modern {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 24px;
  font-weight: 500;
}

.leader-bio-modern {
  max-width: 600px;
  margin: 0 auto;
}

.leader-bio-modern p {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Newsroom Page */
.news-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.news-card-modern {
  padding: 32px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.news-card-modern:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-date-modern {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
}

.news-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.news-card-modern p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: #1a1a1a;
  color: white;
}

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

.cta h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: white;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta .btn-primary {
  background: white;
  color: #1a1a1a;
  border: none;
  padding: 16px 40px;
  font-weight: 600;
}

.cta .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  background: var(--color-secondary);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand p {
  margin-top: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Product Page Specific */
/* Product Page Modern Styles */
.product-hero-modern {
  padding: 100px 0 80px;
  background: var(--color-bg);
  border-bottom: 1px solid #e5e5e5;
}

.product-hero-content-modern {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.product-hero-content-modern h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.product-features-modern {
  padding: 100px 0;
  background: var(--color-bg);
}

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

.section-header-modern h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-header-modern p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

.features-list-modern {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-item-modern {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 60px;
}

.feature-item-modern:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-content-modern {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 16px;
  flex-shrink: 0;
}

.feature-icon-modern svg {
  width: 40px;
  height: 40px;
  color: #1a1a1a;
}

.feature-text-modern h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-text-modern p {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.7;
}

.product-benefits-modern {
  padding: 100px 0;
  background: #fafafa;
}

.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card-modern {
  padding: 40px;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.benefit-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.benefit-card-modern p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Legacy product-hero (kept for backward compatibility) */
.product-hero {
  padding: var(--spacing-3xl) 0;
  background: #1a1a1a;
  color: white;
}

.product-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.product-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.product-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
}

.product-features {
  padding: var(--spacing-3xl) 0;
}

.feature-section {
  margin-bottom: var(--spacing-3xl);
}

.feature-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.feature-section-content.reverse {
  direction: rtl;
}

.feature-section-content.reverse > * {
  direction: ltr;
}

.feature-section-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.feature-section-text p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.feature-section-visual {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-content {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-content svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Support Page */
.support-hero {
  padding: 100px 0 80px;
  background: #1a1a1a;
  color: white;
}

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

.support-hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.support-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.support-content {
  padding: 80px 0;
  background: #ffffff;
}

/* Contact Support Widget */
.contact-support-widget {
  max-width: 1000px;
  margin: 0 auto 100px;
}

.contact-widget-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
  background: #1a1a1a;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  color: white;
}

.contact-widget-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  flex-shrink: 0;
}

.contact-widget-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.contact-widget-text {
  flex: 1;
}

.contact-widget-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.contact-widget-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.contact-widget-content .btn {
  flex-shrink: 0;
  background: white;
  color: #1a1a1a;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
}

.contact-widget-content .btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQs Main Section */
.faqs-main-section {
  max-width: 1000px;
  margin: 0 auto 100px;
  background: white;
  padding: 80px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.faqs-main-section > h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
  text-align: center;
}

.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-category-section {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.faq-category-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-category-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

.faq-item-expanded {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.faq-item-expanded:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item-expanded[aria-expanded="true"] {
  background: white;
  border-color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.faq-question-btn:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question-btn span {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  line-height: 1.5;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item-expanded[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-expanded[aria-expanded="true"] .faq-answer-content {
  max-height: 1000px;
}

.faq-answer-content p {
  padding: 0 28px 28px;
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

/* Common Topics Main */
.common-topics-main {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 80px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.common-topics-main h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
  text-align: center;
}

.topics-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.topic-card-modern {
  padding: 32px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.topic-card-modern:hover {
  background: white;
  border-color: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.topic-card-modern h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.topic-card-modern p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Products Showcase */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.product-showcase-card {
  padding: var(--spacing-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.product-showcase-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-lg);
}

.product-showcase-icon svg {
  width: 32px;
  height: 32px;
}

.product-showcase-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.product-showcase-card p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-top: var(--spacing-md);
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.leadership-single {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-3xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.leader-card {
  padding: var(--spacing-xl);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.leader-card-large {
  max-width: 100%;
  text-align: center;
  padding: var(--spacing-2xl);
}

.leader-card-large .leader-bio {
  text-align: left;
  max-width: 700px;
  margin: var(--spacing-lg) auto 0;
}

.leader-card-large .leader-bio p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  color: var(--color-text-light);
  font-size: 1rem;
}

.leader-card-large .leader-bio p:last-child {
  margin-bottom: 0;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.leader-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.leader-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.leader-bio {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.news-card {
  padding: var(--spacing-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.news-date {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.news-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.news-card p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

/* Investors Page */
.investors-hero {
  padding: 80px 0;
  background: var(--color-primary);
  color: white;
  text-align: center;
}

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

.investors-hero h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.investors-hero p {
  font-size: 24px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.investors-content {
  padding: 80px 0;
  background: var(--color-bg);
}

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

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

.investors-section h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.investors-section > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

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

.investor-card {
  padding: 32px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.investor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.investor-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: 4px;
}

.investor-icon svg {
  width: 32px;
  height: 32px;
}

.investor-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.investor-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin: 0;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.product-showcase-item {
  padding: 32px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

.product-showcase-item h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.product-showcase-item > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.product-showcase-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.product-showcase-item ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-light);
}

.product-showcase-item ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.investor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.investor-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.investor-link span {
  transition: transform 0.2s;
}

.investor-link:hover span {
  transform: translateX(4px);
}

.investor-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.investor-info-card {
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.investor-info-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.investor-info-card p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0;
}

.investor-cta {
  margin-top: 32px;
}

/* About Page */
.about-hero {
  padding: var(--spacing-3xl) 0;
  background: var(--color-bg-alt);
}

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

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--color-text-light);
}

.about-content {
  padding: var(--spacing-3xl) 0;
}

.about-section {
  max-width: 700px;
  margin: 0 auto var(--spacing-2xl);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
}

.about-section p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

/* Careers Page */
.careers-hero {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(to bottom, var(--color-secondary), #1e293b);
  color: white;
}

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

.careers-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.careers-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.careers-content {
  padding: var(--spacing-3xl) 0;
}

.job-listings {
  max-width: 800px;
  margin: 0 auto;
}

.job-card {
  padding: var(--spacing-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  margin-bottom: var(--spacing-md);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.job-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.job-card-meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.job-card-meta span {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.job-card p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.job-card .btn {
  margin-top: var(--spacing-xs);
}

/* Mobile Menu */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-md);
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-lg);
}

.nav-links.active a {
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
}

.nav-links.active a:last-child {
  border-bottom: none;
}

.nav-links.active .nav-dropdown {
  width: 100%;
}

.nav-links.active .nav-dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: var(--spacing-sm);
  border-bottom: 1px solid var(--color-border);
}

.nav-links.active .nav-dropdown-menu {
  position: static;
  display: flex;
  box-shadow: none;
  border: none;
  background: var(--color-bg-alt);
  margin-top: var(--spacing-xs);
  margin-left: var(--spacing-md);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Pricing Page */
.pricing-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: white;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing-hero p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pricing-toggle {
  display: inline-flex;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 4px;
  gap: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.toggle-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  white-space: nowrap;
  position: relative;
}

.toggle-btn:hover {
  color: #1a1a1a;
}

.toggle-btn.active {
  background: #1a1a1a;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.save-badge {
  font-size: 0.6875rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.toggle-btn.active .save-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.toggle-btn:not(.active) .save-badge {
  background: #fbbf24;
  color: #1a1a1a;
}

.pricing-plans {
  padding: 60px 0 100px;
  background: #fafafa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 48px 44px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.pricing-card-featured {
  border-color: #1a1a1a;
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(251, 191, 36, 0.3);
  letter-spacing: 0.02em;
}

.pricing-card-header {
  margin-bottom: 28px;
  padding-top: 4px;
}

.pricing-card-header h3 {
  font-size: 1.625rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  word-break: normal;
  overflow-wrap: normal;
}

.pricing-card-price {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
  overflow: visible;
}

.price-amount {
  font-size: 3.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
  white-space: nowrap;
}

.price-period {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: #666;
  margin-left: 8px;
  font-weight: 500;
  vertical-align: baseline;
  white-space: nowrap;
}

.price-equivalent {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: var(--spacing-xs);
  font-style: normal;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  flex-grow: 1;
  overflow: hidden;
}

.pricing-features li {
  padding: 10px 0;
  color: #1a1a1a;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  min-width: 0;
  flex: 1;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.pricing-features li > *:not(::before) {
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: normal;
}

.pricing-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  font-size: 0.8125rem;
  margin-right: 4px;
}

.pricing-features li strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Prevent breaking in price numbers - keep prices together */
.pricing-features li strong:first-child {
  white-space: nowrap;
}

.pricing-card-enterprise .pricing-card-price {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.pricing-card-enterprise .price-amount {
  font-size: 1.75rem;
  color: #1a1a1a;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pricing-card .btn-block {
  margin-top: auto;
}

.pricing-card .btn-primary {
  background: #1a1a1a;
  color: white;
  border: 1px solid #1a1a1a;
}

.pricing-card .btn-primary:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card .btn-secondary {
  background: white;
  color: #1a1a1a;
  border: 1px solid #e5e5e5;
}

.pricing-card .btn-secondary:hover {
  background: #fafafa;
  border-color: #d0d0d0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .ms-business-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ms-whats-new-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .investors-hero h1 {
    font-size: 48px;
  }
  
  .investors-section {
    margin-bottom: 60px;
  }
  
  .investors-section h2 {
    font-size: 32px;
  }
  
  .investors-grid {
    grid-template-columns: 1fr;
  }
  
  .products-showcase {
    grid-template-columns: 1fr;
  }
  
  .investor-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links:not(.active) {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .ms-hero-section {
    padding: 60px 0;
  }
  
  .ms-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ms-hero-heading {
    font-size: 48px;
  }
  
  .ms-hero-image {
    order: -1;
  }
  
  .ms-product-showcase {
    padding: 60px 0;
  }
  
  .ms-product-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ms-product-card .ms-product-image {
    order: -1 !important;
  }
  
  .ms-product-content h2 {
    font-size: 32px;
  }
  
  .ms-for-business,
  .ms-whats-new {
    padding: 60px 0;
  }
  
  .ms-business-grid,
  .ms-whats-new-list {
    grid-template-columns: 1fr;
  }
  
  .ms-section-heading {
    font-size: 32px;
  }
  
  .hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .feature-section-content {
    grid-template-columns: 1fr;
  }
  
  .job-card-meta {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .pricing-hero h1 {
    font-size: 2.5rem;
  }
  
  .pricing-hero p {
    font-size: 1.125rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1025px) {
    .pricing-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
  
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  /* Support Page Mobile */
  .support-hero {
    padding: 60px 0 40px;
  }
  
  .support-hero h1 {
    font-size: 2rem;
  }
  
  .support-hero p {
    font-size: 1rem;
  }
  
  .contact-support-widget {
    margin-bottom: 60px;
  }
  
  .contact-widget-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  
  .contact-widget-text h2 {
    font-size: 1.5rem;
  }
  
  .faqs-main-section {
    padding: 40px 24px;
    margin-bottom: 60px;
  }
  
  .faqs-main-section > h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .faq-category-section h3 {
    font-size: 1.5rem;
  }
  
  .faq-question-btn {
    padding: 20px;
  }
  
  .faq-question-btn span {
    font-size: 1rem;
  }
  
  .faq-answer-content p {
    padding: 0 20px 20px;
  }
  
  .common-topics-main {
    padding: 40px 24px;
  }
  
  .common-topics-main h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  
  .topics-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .topic-card-modern {
    padding: 24px;
  }
  
  /* Modern Hero Mobile */
  .modern-hero {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    gap: 32px;
    padding-top: 40px;
    margin-top: 40px;
  }
  
  .stat-value {
    font-size: 2rem;
  }
}

