/* ========================================
   COGNIBAT - CONSTRUCTION SAFETY TRAINING
   Main Stylesheet - Refactored & Organized
   ======================================== */

/* ========================================
   CSS VARIABLES & DESIGN TOKENS
   ======================================== */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background-color: #f7fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========================================
   COMPONENT STYLES
   ======================================== */

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-outline {
  background: transparent;
  color: #1a202c;
  border: 2px solid #e2e8f0;
}

.btn-outline:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
  transform: translateX(4px);
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */

/* Page Containers */
.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========================================
   NAVIGATION SYSTEM
   ======================================== */

/* Main Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
  z-index: 1003;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a202c;
}

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

.brand-logo {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link.nav-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1a202c;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #667eea;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-signin {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white !important;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  border: none;
}

.mobile-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}



/* ========================================
   PAGE SECTIONS
   ======================================== */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  flex: 1;
  margin-top: 70px; /* Account for fixed navbar */
}

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

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

.hero-text {
  max-width: 500px;
}

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

.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.safety-animation {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.safety-icon {
  font-size: 10rem;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.safety-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.safety-helmet {
  position: absolute;
  font-size: 3rem;
  top: 20px;
  left: 50px;
  animation: float-dot 4s ease-in-out infinite;
}

.safety-tools {
  position: absolute;
  font-size: 2.5rem;
  top: 120px;
  right: 30px;
  animation: float-dot 4s ease-in-out infinite;
  animation-delay: 1s;
}

.safety-signs {
  position: absolute;
  font-size: 2.5rem;
  bottom: 40px;
  left: 40px;
  animation: float-dot 4s ease-in-out infinite;
  animation-delay: 2s;
}

.safety-equipment {
  position: absolute;
  font-size: 2.5rem;
  top: 200px;
  left: 20px;
  animation: float-dot 4s ease-in-out infinite;
  animation-delay: 3s;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-dot 4s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
  top: 20px;
  left: 50px;
  animation-delay: 0s;
}

.floating-dot:nth-child(2) {
  top: 150px;
  right: 30px;
  animation-delay: 1s;
}

.floating-dot:nth-child(3) {
  bottom: 80px;
  left: 80px;
  animation-delay: 2s;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* AI Training Approach Section */
.ai-approach {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

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

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

.approach-icon {
  font-size: 4rem;
  text-align: center;
  margin: 0;
  display: block;
}

.approach-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.approach-idea {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(0deg, #667eea, #764ba2);
  border-radius: 10px;
  padding: 2rem;
  color: white;
}

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

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-text h4 {
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-text p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Multilingual Training Section */
.multilingual-training {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.multilingual-training .multilingual-title {
  color: white;
}

.multilingual-training .multilingual-subtitle {
  color: white;
}

.multilingual-training .multilingual-description {
  color: white;
}

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

.multilingual-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1a202c;
  font-weight: 700;
}

.multilingual-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.multilingual-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #4a5568;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.multilingual-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-text h4 {
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.benefit-text p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.supported-languages {
  background: #f7fafc;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: inline-block;
}

.supported-languages p {
  color: #1a202c;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

/* Responsive design for multilingual benefits */
@media (max-width: 1200px) {
  .multilingual-benefits {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .multilingual-benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  flex: 1;
}

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

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-caption {
  font-size: 1.25rem;
  margin-bottom: 0;
  margin-top: 2rem;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
}

.feature-icon {
  font-size: 2.5rem;
  filter: brightness(0) invert(1);
}

.feature-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-highlight {
  transform: scaleX(1);
}

.feature-card h3 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
  flex: 1;
}

.how-it-works .section-subtitle {
  color: #4a5568;
}

.how-it-works .section-title {
  color: #1a202c;
  line-height: 1.2;
}

.how-it-works .step-content h3 {
  color: #1a202c;
}

.how-it-works .step-content p {
  color: #4a5568;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 5rem;
  position: relative;
  margin-left: 5rem;
  margin-right: 5rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 40px;
  right: -2rem;
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

.step:last-child .step-connector,
.step:nth-child(2) .step-connector {
  display: none;
}

.step-content h3 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content p {
  color: #4a5568;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: #ffffff;
  text-align: center;
  flex: 1;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
  font-weight: 700;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #4a5568;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Deployment Options Section */
.deployment-options {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.deployment-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.deployment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.deployment-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.deployment-card h3 {
  color: #1a202c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.deployment-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.deployment-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.deployment-features li {
  color: #4a5568;
  margin-bottom: 0.75rem;
  padding-left: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deployment-cta {
  margin-top: auto;
}

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

.deployment-cta .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.pricing-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
}

.price .period {
  font-size: 0.9rem;
  color: #4a5568;
}

.discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yearly-price {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #1a202c;
  color: white;
  padding: 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
  flex: 1;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-description-row {
  text-align: center;
  margin: 2rem 0;
  padding: 0 2rem;
}

.footer-brand {
  margin-bottom: 0;
}

.footer-brand .brand-icon {
  font-size: 2rem;
  margin-right: 0.75rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  text-align: center;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.admin-link {
  color: #667eea !important;
  font-weight: 500;
}

.admin-link:hover {
  color: #764ba2 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes float-dot {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.2); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   ADDON PAGE SPECIFIC STYLES
   ======================================== */

/* Addon Hero Section */
.addon-hero {
  min-height: 50vh;
  padding: 1rem 0;
  display: flex;
  margin-top: 5rem;
  align-items: center;
  background: white;
}

.addon-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.addon-hero .hero-text {
  max-width: 700px;
}

.addon-hero .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: black;
}

.addon-hero .hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  opacity: 0.9;
  color: black;
}

/* Addon Multilingual Section */
.addon .multilingual-training {
  padding: 3rem 0;
}

.addon .multilingual-content {
  max-width: 900px;
  margin: 0 auto;
}

.addon .multilingual-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.addon .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.addon .benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.addon .benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.addon .benefit-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

/* Addon CTA Section */
.cta-section {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

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

.cta-actions {
  margin-top: 2rem;
}

.cta-actions .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.cta-section .section-title {
  font-size: 2.5rem;
  color: black;
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* About Page Layout */
.about-page {
  min-height: 100vh;
  background: #ffffff;
  padding-top: 80px; /* Add padding to account for fixed navbar */
}

.about-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0 4rem;
  text-align: center;
}

.about-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.about-header .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.about-content {
  padding: 0 0 4rem;
}

/* About Page Sections */
.about-page section {
  margin-bottom: 5rem;
}

.about-page section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a202c;
  text-align: center;
}

.about-page section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Standards Grid */
.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.standard-card.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.standard-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.standard-card p {
  color: white;
  font-weight: 500;
  line-height: 1.6;
}

.standard-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.standard-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
}

.standard-card li:last-child {
  border-bottom: none;
}

/* ISO Description Card */
.iso-description-card {
  background: white;
  color: #1a202c;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.iso-description-card p {
  color: #1a202c;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.standards-list h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.standard-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.standard-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.standard-item p {
  font-size: 0.95rem;
  margin: 0;
  text-align: left;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.benefit-card p {
  font-size: 0.95rem;
  text-align: center;
  margin: 0;
}

/* About CTA Section */
.about-page .cta-section {
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
}

.about-page .cta-section h2 {
  color: #1a202c;
}

.about-page .cta-section p {
  color: #4a5568;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Page Specific Sections */
.mission-section,
.ai-expertise-section,
.why-choose-section,
.team-section {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-section h2,
.ai-expertise-section h2,
.why-choose-section h2,
.team-section h2 {
  color: #1a202c;
}

.mission-section p,
.ai-expertise-section p,
.why-choose-section p,
.team-section p {
  color: #1a202c;
  font-weight: 500;
}

/* ========================================
   NEW SECTIONS STYLES
   ======================================== */

/* Risk Map Section */
.risk-map {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.risk-map .section-title,
.risk-map .section-subtitle {
  color: #2d3748;
}

.risk-map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.risk-dashboard {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.risk-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid;
}

.metric-card.high-risk {
  border-left-color: #e53e3e;
  background: #fed7d7;
}

.metric-card.medium-risk {
  border-left-color: #dd6b20;
  background: #feebc8;
}

.metric-card.low-risk {
  border-left-color: #38a169;
  background: #c6f6d5;
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.metric-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.metric-description {
  font-size: 0.875rem;
  color: #718096;
}

.risk-breakdown h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

.site-risk {
  margin-bottom: 1.5rem;
}

.site-name {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.risk-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.risk-level {
  height: 100%;
  border-radius: 4px;
}

.risk-level.high {
  background: #e53e3e;
}

.risk-level.medium {
  background: #dd6b20;
}

.risk-level.low {
  background: #38a169;
}

.risk-amount {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
}

.risk-benefits {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.risk-benefits h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2d3748;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.benefits-list li:last-child {
  border-bottom: none;
}

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

.cta-note {
  font-size: 0.875rem;
  color: #718096;
  margin-top: 0.5rem;
}

/* ROI Section */
.roi-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.roi-section .section-title,
.roi-section .section-subtitle {
  color: white;
}

.roi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.roi-calculator {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-calculator h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}

.cost-breakdown {
  margin-bottom: 2rem;
}

.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.cost-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cost-details h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.cost-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.cost-details p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.total-cost {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.total-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.total-amount .label {
  color: white;
}

.total-amount .amount {
  color: #ffd700;
  font-size: 1.5rem;
}

.roi-comparison h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

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

.cost-list {
  space-y: 0.75rem;
}

.cost-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.cost-line:last-child {
  border-bottom: none;
}

.cost-line.total {
  font-weight: 700;
  color: white;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.roi-result {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.roi-highlight h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.roi-ratio {
  margin-bottom: 1rem;
}

.ratio {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.roi-ratio p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.roi-cta {
  text-align: center;
  margin-top: 3rem;
}

.roi-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.roi-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HOW IT WORKS SECTION STYLES
   ======================================== */

.step-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.highlight-icon {
  font-size: 1.125rem;
}

.how-it-works-benefits {
  margin-top: 4rem;
  text-align: center;
}

.how-it-works-benefits h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: #2d3748;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}

.benefit-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* ========================================
   PRICING SINGLE CARD STYLES
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d3748;
}

.pricing-description {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

.pricing-info {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1.125rem;
  color: #718096;
}

.employee-limit {
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: #f0f4f8;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.limit-text {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}

.discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.discount-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.yearly-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step:nth-child(2) .step-connector {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .mobile-menu-content {
    padding: 1.5rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .risk-map-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .risk-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .roi-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cost-breakdown {
    margin-bottom: 1.5rem;
  }
  
  .cost-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .roi-result {
    margin-top: 2rem;
  }
  
  .roi-ratio {
    text-align: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  /* Pricing Cards Responsive for Tablets */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .step-connector {
    display: none;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .deployment-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }
  
  .deployment-card {
    padding: 2rem 1rem;
    margin: 0 0.5rem;
    min-width: calc(100% - 1rem);
  }
  

  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .deployment-card {
    padding: 1.5rem 0.75rem;
    margin: 0 0.25rem;
    min-width: calc(100% - 0.5rem);
  }
  
  .deployment-grid {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* ROI Section Mobile Optimizations */
  .roi-calculator,
  .roi-comparison {
    padding: 1.5rem;
  }
  
  .roi-calculator h3,
  .roi-comparison h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .cost-item {
    margin-bottom: 1rem;
  }
  
  .comparison-card {
    padding: 1rem;
  }
  
  .roi-ratio .ratio {
    font-size: 2rem;
  }
  
  .roi-content {
    gap: 1.5rem;
  }
  
  .comparison-grid {
    gap: 1rem;
  }
  
  .cost-breakdown {
    margin-bottom: 1rem;
  }
  
  /* Pricing Cards Mobile Optimizations */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
    margin: 0;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  
  .pricing-description {
    font-size: 1rem;
  }
  
  .pricing-actions {
    gap: 0.75rem;
  }
  
  .pricing-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .pricing-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }
  
  /* Addon responsive styles */
  .addon-hero {
    min-height: 45vh;
    padding: 0.5rem 0;
  }
  
  .addon-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .addon-hero .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .addon .multilingual-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .addon .benefit-item {
    padding: 1rem;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-actions .btn {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
  
  /* About page responsive styles */
  .about-header h1 {
    font-size: 2.5rem;
  }
  
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .about-page .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
}
