/* CSS Variables for Volta Circuit theming */
:root {
  --primary-color: rgb(101, 209, 110);
  --primary-color-08: rgba(101, 209, 110, 0.08);
  --primary-color-32: rgba(101, 209, 110, 0.32);
  --primary-color-42: rgba(101, 209, 110, 0.42);
  --primary-color-82: rgba(101, 209, 110, 0.82);
  --accent-color: rgb(219, 153, 229);
  --accent-color-08: rgba(219, 153, 229, 0.08);
  --accent-color-42: rgba(219, 153, 229, 0.42);
  --dark-bg: rgb(20, 20, 25);
  --dark-secondary: rgb(27, 27, 30);
  --gray-dark: rgb(38, 38, 38);
  --text-light: rgba(240, 240, 240, 0.92);
  --text-secondary: rgba(240, 240, 240, 0.82);
  --text-muted: rgba(240, 240, 240, 0.68);
  --orange-accent: rgb(255, 156, 39);
  --success-color: rgb(12, 175, 96);

  --secondary-color: #6c757d;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  --font-family-sans-serif: "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-display: "Inter Display", var(--font-family-sans-serif);
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-glow: 0 0 20px rgba(101, 209, 110, 0.3);

  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.6s ease;

  /* Animation variables */
  --bounce-timing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --smooth-timing: cubic-bezier(0.25, 0.1, 0.25, 1);
  --elastic-timing: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* Notification Banner */
.notification-banner {
  width: 100%;
  padding: 0.6rem 0;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1001;
}

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

.notification-item {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.notification-item:last-child {
  margin-bottom: 0;
}

.notification-item a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.notification-item a:hover {
  text-decoration: none;
}

/* Header and Navigation */
.header {
  background-color: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 240, 240, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-family-display);
}

.logo-img {
  height: 40px;
  margin-right: 0.75rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: var(--primary-color-08);
}

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

.btn-outline:hover {
  background-color: var(--primary-color) !important;
  color: var(--dark-bg) !important;
  box-shadow: var(--box-shadow-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 3px 0;
  transition: var(--transition);
}

/* Main content */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.5;
  font-family: var(--font-family-display);
  letter-spacing: 0.025em;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--success-color)
  );
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(101, 209, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(101, 209, 110, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-muted);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--dark-secondary) 50%,
    var(--gray-dark) 100%
  );
  color: var(--text-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(101, 209, 110, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(219, 153, 229, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.1;
  font-family: var(--font-family-display);
  background: linear-gradient(135deg, var(--text-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

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

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--dark-secondary);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

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

.feature-card {
  background: linear-gradient(135deg, var(--dark-bg), var(--gray-dark));
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color-32);
  box-shadow: 0 10px 30px rgba(101, 209, 110, 0.2);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

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

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(219, 153, 229, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-secondary));
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.values-row {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  align-items: stretch;
  border-bottom: 1px solid rgba(240, 240, 240, 0.1);
  padding-bottom: 1.5rem;
}

.values-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.value-item {
  overflow: hidden;
  position: relative;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(240, 240, 240, 0.1);
}

.value-item:last-child {
  border-right: none;
  padding-right: 0;
}

.value-item:not(:first-child) {
  padding-left: 1.5rem;
}

.value-wide {
  flex: 2;
  min-height: 320px;
}

.value-narrow {
  flex: 1;
  min-height: 320px;
}

.value-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-text {
  padding: 1.5rem;
  z-index: 3;
  color: var(--text-light);
  order: 1;
}

.value-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
  line-height: 1.3;
}

.value-text p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.value-image {
  flex: 1;
  order: 2;
  overflow: hidden;
  height: 200px;
  position: relative;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.value-image::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 40px;
  background: linear-gradient(transparent, var(--dark-secondary));
  z-index: 2;
  pointer-events: none;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Responsive design */
@media (max-width: 1024px) {
  .values-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .value-wide,
  .value-narrow {
    flex: 1;
    min-height: 280px;
  }

  .value-text h3 {
    font-size: 1.2rem;
  }

  .value-text {
    padding: 1.25rem;
  }

  .value-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .notification-banner {
    padding: 0.4rem 0;
  }

  .notification-container {
    padding: 0 0.75rem;
  }

  .notification-item {
    font-size: 0.9rem;
  }

  .values {
    padding: 3rem 0;
  }

  .values h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .values-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .value-wide,
  .value-narrow {
    min-height: 250px;
  }

  .value-text {
    padding: 1rem;
  }

  .value-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .value-text p {
    font-size: 0.9rem;
  }

  .value-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .notification-banner {
    padding: 0.3rem 0;
  }

  .notification-container {
    padding: 0 0.5rem;
  }

  .notification-item {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .values {
    padding: 2rem 0;
  }

  .values h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .values-row {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .value-wide,
  .value-narrow {
    min-height: 220px;
  }

  .value-text {
    padding: 0.875rem;
  }

  .value-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .value-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .value-image {
    height: 140px;
  }
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--gray-dark), var(--dark-bg));
  padding: 4rem 0;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(101, 209, 110, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-display);
  text-shadow: 0 0 20px rgba(101, 209, 110, 0.3);
}

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

/* About Achievements Section */
.about-achievements {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.about-achievements h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.achievement-card {
  background: linear-gradient(135deg, var(--dark-secondary), var(--gray-dark));
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color-32);
  box-shadow: 0 10px 30px rgba(101, 209, 110, 0.2);
}

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

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-display);
  text-shadow: 0 0 15px rgba(101, 209, 110, 0.3);
}

.achievement-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* Company Info Section */
.company-info {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.company-details h2,
.company-highlights h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.info-item {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.info-item strong {
  color: var(--text-light);
  font-weight: 600;
  margin-right: 0.5rem;
}

.highlight-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--dark-bg), var(--gray-dark));
  border-radius: var(--border-radius);
  border: 1px solid rgba(240, 240, 240, 0.12);
}

.highlight-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-family: var(--font-family-display);
}

.highlight-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* FAQ About Section */
.faq-about {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

.faq-about h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

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

.faq-item {
  background: linear-gradient(135deg, var(--dark-secondary), var(--gray-dark));
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.12);
  transition: var(--transition);
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color-32);
  box-shadow: 0 8px 25px rgba(101, 209, 110, 0.15);
}

.faq-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Contact Page */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.contact-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-800);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(240, 240, 240, 0.15);
  box-shadow: 0 0 0 1px rgba(101, 209, 110, 0.4);
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--gray-800);
}

.map-placeholder {
  background-color: var(--gray-300);
  height: 300px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}

/* Error Page */
.error-page {
  min-height: 100vh;
  background: url("/images/checkered_background.webp");
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.error-page .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

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

.error-badge {
  display: inline-block;
  background: rgba(101, 209, 110, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid rgba(101, 209, 110, 0.2);
}

.error-code {
  font-size: 10rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 0.9;
  margin-bottom: 1.5rem;
  font-family: var(--font-family-display);
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px rgba(101, 209, 110, 0.2);
}

.error-message {
  color: #ff4757;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 500;
  min-height: 0;
  line-height: 1.4;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.error-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(101, 209, 110, 0.3);
}

.error-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(101, 209, 110, 0.4);
  background: rgba(101, 209, 110, 0.9);
}

.error-actions .btn svg {
  transition: var(--transition);
}

.error-actions .btn:hover svg {
  transform: translateX(-2px);
}

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

.dashboard-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 20px rgba(101, 209, 110, 0.1));
  transition: var(--transition);
}

.dashboard-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  filter: drop-shadow(0 0 30px rgba(101, 209, 110, 0.15));
}

/* Footer */
.footer {
  background-color: transparent;
  padding: 0;
  color: var(--white);
}

/* Upgrade Section */
.upgrade-section {
  background: linear-gradient(
      180deg,
      rgba(20, 20, 25, 0.82) 0%,
      rgba(28, 28, 31, 0) 100%
    ),
    url("/images/checkered_background.webp");
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0 4rem;
  position: relative;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  margin-bottom: 0;
}

.upgrade-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(101, 209, 110, 0.08) 0%,
    rgba(20, 20, 25, 0.9) 70%
  );
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.upgrade-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.upgrade-content {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.upgrade-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-family-display);
  letter-spacing: -0.02em;
}

.upgrade-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.upgrade-form-container {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.upgrade-form {
  width: 100%;
}

.form-input-wrapper {
  display: flex;
  position: relative;
  background: var(--dark-bg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px 0px 35px rgba(101, 209, 110, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: var(--transition);
}

.form-input-wrapper:focus-within,
.form-input-wrapper.focused {
  box-shadow: 0px 0px 35px rgba(101, 209, 110, 0.15),
    inset 0 0 0 1px var(--primary-color);
}

.upgrade-email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 25px 174px 25px 32px;
  font-size: 16px;
  font-family: var(--font-family-sans-serif);
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1em;
}

.upgrade-email-input::placeholder {
  color: rgba(243, 240, 231, 0.72);
}

.upgrade-submit-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 150px;
  background: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Poppins", var(--font-family-sans-serif);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1;
}

.upgrade-submit-btn:hover {
  background: rgba(101, 209, 110, 0.9);
  transform: translateY(-1px);
  box-shadow: 0px 10px 25px rgba(101, 209, 110, 0.3);
}

/* Green Footer Section */
.footer-green {
  background: var(--primary-color);
  padding: 3rem 0 1rem;
  color: var(--dark-bg);
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 3rem;
}

.footer-logo-section {
  flex-shrink: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-info {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(13, 13, 13, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-section a:hover {
  color: var(--dark-bg);
}

.footer-section p {
  color: rgba(13, 13, 13, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(13, 13, 13, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left p,
.footer-right p {
  color: var(--dark-bg);
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.footer-social a {
  color: var(--dark-bg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.1);
}

.footer-social a:hover {
  background: rgba(13, 13, 13, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-bg);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
    gap: 1rem;
  }

  .nav-menu .nav-link {
    margin: 0 1rem;
    display: block;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-grid,
  .contact-grid,
  .error-page .container,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

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

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

  /* Footer responsive styles */
  .upgrade-section {
    padding: 4rem 0 3rem;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .upgrade-content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .upgrade-content p {
    font-size: 1.1rem;
  }

  .upgrade-container {
    padding: 0 1rem;
  }

  .form-input-wrapper {
    flex-direction: column;
    gap: 16px;
    border-radius: 12px;
  }

  .upgrade-email-input {
    padding: 25px 24px;
    border-radius: 12px;
  }

  .upgrade-submit-btn {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 26px;
    border-radius: 12px;
    box-shadow: 0px 20px 35px rgba(101, 209, 110, 0.22);
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .footer-info {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-section {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .footer-right {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .page-header h1 {
    font-size: 2rem;
  }

  .error-code {
    font-size: 5rem;
  }

  .stats-grid,
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .achievement-number {
    font-size: 2rem;
  }

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

  .values-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Footer mobile styles */
  .upgrade-content h2 {
    font-size: 1.75rem;
    text-align: left;
  }

  .upgrade-content p {
    font-size: 1rem;
    text-align: left;
  }

  .upgrade-section {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: left;
  }

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

  .footer-container {
    padding: 0 1rem;
  }
}

/* ==========================================
   ADVANCED ANIMATIONS & SCROLL EFFECTS
   ========================================== */

/* Keyframes for scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(101, 209, 110, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(101, 209, 110, 0.6);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary-color);
  }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s var(--smooth-timing);
}

.animate-on-scroll.visible {
  opacity: 1;
}

.fade-up {
  transform: translateY(60px);
}

.fade-up.visible {
  transform: translateY(0);
}

.fade-left {
  transform: translateX(-60px);
}

.fade-left.visible {
  transform: translateX(0);
}

.fade-right {
  transform: translateX(60px);
}

.fade-right.visible {
  transform: translateX(0);
}

.scale-in {
  transform: scale(0.8);
}

.scale-in.visible {
  transform: scale(1);
}

.rotate-in {
  transform: rotate(-10deg) scale(0.9);
}

.rotate-in.visible {
  transform: rotate(0deg) scale(1);
}

/* Stagger animation for lists */
.stagger-animation > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--smooth-timing);
}

.stagger-animation.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-animation.visible > *:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-animation.visible > *:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-animation.visible > *:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-animation.visible > *:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-animation.visible > *:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-animation.visible > *:nth-child(6) {
  transition-delay: 0.6s;
}

/* Enhanced hover effects */
.hover-lift {
  transition: all 0.3s var(--elastic-timing);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(101, 209, 110, 0.4);
  transform: translateY(-2px);
}

.hover-scale {
  transition: transform 0.3s var(--bounce-timing);
}

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

/* Parallax background effects */
.parallax-bg {
  position: relative;
  overflow: hidden;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(101, 209, 110, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

/* Loading states */
.loading-skeleton {
  background: linear-gradient(
    90deg,
    var(--dark-secondary) 25%,
    rgba(101, 209, 110, 0.1) 50%,
    var(--dark-secondary) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Enhanced section styles with animations */
.features {
  padding: 5rem 0;
  background: var(--dark-secondary);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(101, 209, 110, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(219, 153, 229, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(27, 27, 30, 0.8);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--smooth-timing);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(101, 209, 110, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(101, 209, 110, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(101, 209, 110, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.3s var(--bounce-timing);
}

.feature-card:hover .feature-icon {
  filter: drop-shadow(0 0 20px rgba(101, 209, 110, 0.5));
}

/* Enhanced achievement cards */
.achievement-card {
  background: rgba(27, 27, 30, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid rgba(240, 240, 240, 0.08);
  transition: all 0.4s var(--elastic-timing);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(101, 209, 110, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.achievement-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(101, 209, 110, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.achievement-card:hover::before {
  width: 200px;
  height: 200px;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-family-display);
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-number {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(101, 209, 110, 0.5);
}

/* Enhanced FAQ items */
.faq-item {
  background: rgba(27, 27, 30, 0.8);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(240, 240, 240, 0.08);
  transition: all 0.3s var(--smooth-timing);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--accent-color)
  );
  transition: height 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(101, 209, 110, 0.3);
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item:hover::before {
  height: 100%;
}

.faq-item h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-family-display);
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item:hover h4 {
  color: var(--primary-color);
}

/* Enhanced company info styles */
.company-details {
  background: rgba(27, 27, 30, 0.8);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  backdrop-filter: blur(10px);
}

.info-item {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(240, 240, 240, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  padding-left: 1rem;
  border-color: rgba(101, 209, 110, 0.3);
}

.highlight-item {
  background: rgba(101, 209, 110, 0.08);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(101, 209, 110, 0.12);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(101, 209, 110, 0.2);
}

/* Enhanced button animations */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--success-color)
  );
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Enhanced nav animations */
/* Removed nav-link animations */

/* Scroll-triggered header animation */
.header {
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(20, 20, 25, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced footer with gradient */
.footer-green {
  background: var(--primary-color);
  position: relative;
}

.footer-green::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .achievement-number {
    font-size: 2rem;
  }

  .stagger-animation.visible > * {
    transition-delay: 0.1s;
  }

  .parallax-bg::before {
    animation: float 4s ease-in-out infinite;
  }
}

/* Performance optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Dark mode specific enhancements */
@media (prefers-color-scheme: dark) {
  .feature-card,
  .achievement-card,
  .faq-item {
    border-color: rgba(240, 240, 240, 0.1);
  }

  .feature-card:hover,
  .achievement-card:hover,
  .faq-item:hover {
    border-color: rgba(101, 209, 110, 0.4);
  }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.feature-card:focus,
.achievement-card:focus,
.faq-item:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .btn,
  .nav-menu {
    display: none !important;
  }

  .feature-card,
  .achievement-card,
  .faq-item {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
}

/* ==========================================
   END ADVANCED ANIMATIONS & SCROLL EFFECTS
   ========================================== */

/* ==========================================
   NEW IMAGE-BASED SECTIONS STYLES
   ========================================== */

/* Feature Images */
.feature-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-card:hover .feature-image {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Platform Showcase Section */
.platform-showcase {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
}

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

.showcase-item {
  background: rgba(27, 27, 30, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  text-align: center;
  transition: var(--transition);
}

.showcase-item:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 209, 110, 0.3);
}

.showcase-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.showcase-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.showcase-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Integrations Section */
.integrations {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.integration-item {
  background: rgba(27, 27, 30, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 120px;
}

.integration-item:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 209, 110, 0.3);
  box-shadow: 0 8px 25px rgba(101, 209, 110, 0.15);
}

.integration-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
}

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

.testimonial-card {
  background: rgba(27, 27, 30, 0.8);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 209, 110, 0.3);
  box-shadow: 0 10px 30px rgba(101, 209, 110, 0.2);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary-color);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(101, 209, 110, 0.4);
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card cite {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--dark-bg);
}

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

.team-member {
  background: rgba(27, 27, 30, 0.8);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 209, 110, 0.3);
  box-shadow: 0 10px 30px rgba(101, 209, 110, 0.2);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-color);
  transition: var(--transition);
}

.team-member:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(101, 209, 110, 0.5);
}

.team-member h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.team-member p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Achievement Icons */
.achievement-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.2);
  filter: brightness(1.3);
}

/* Technology Showcase */
.technology-showcase {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
}

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

.tech-item {
  background: rgba(27, 27, 30, 0.8);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  text-align: center;
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 209, 110, 0.3);
  box-shadow: 0 10px 30px rgba(101, 209, 110, 0.2);
}

.tech-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.tech-item:hover .tech-image {
  filter: brightness(1.2);
}

.tech-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

.tech-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Value Icons */
.value-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  filter: brightness(1.2);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .showcase-grid,
  .testimonials-grid,
  .team-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .integration-item {
    padding: 1.5rem;
    min-height: 100px;
  }

  .integration-logo {
    height: 38px;
    width: auto;
  }

  .team-avatar {
    width: 100px;
    height: 100px;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }

  .showcase-img {
    height: 150px;
  }
}

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

  .feature-image,
  .tech-image {
    width: 50px;
    height: 50px;
  }

  .value-icon {
    width: 40px;
    height: 40px;
  }

  .achievement-icon {
    width: 35px;
    height: 35px;
  }
}

/* ==========================================
   END NEW IMAGE-BASED SECTIONS STYLES
   ========================================== */

/* ==========================================
   HORIZONTAL SCROLLING SECTIONS
   ========================================== */

/* Backed By Section */
.backed-by {
  padding: 5rem 0;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.backed-by h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

/* Secured By Section */
.secured-by {
  padding: 5rem 0;
  background-color: var(--dark-secondary);
  overflow: hidden;
}

.secured-by h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

/* Experience From Section */
.experience-from {
  padding: 5rem 0;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.experience-from h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: var(--font-family-display);
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Horizontal Scroll Track */
.horizontal-scroll-track {
  display: flex;
  animation: scroll-left 30s linear infinite;
  width: max-content;
  gap: 3rem;
}

.security-track .experience-track {
  animation: scroll-right 35s linear infinite;
}

/* Scroll Items */
.scroll-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-width: 200px;
  height: 120px;
}

.scroll-item:hover {
  transform: translateY(-5px);
}

/* Partner and Security Logos */
.partner-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.security-logo,
.experience-logo {
  height: 105px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.scroll-item:hover .partner-logo,
.scroll-item:hover .security-logo,
.scroll-item:hover .experience-logo {
  transform: scale(1.05);
}

/* Scroll Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover */
.horizontal-scroll-container:hover .horizontal-scroll-track {
  animation-play-state: paused;
}

/* Alternative scroll directions for visual variety */
.backed-by .horizontal-scroll-track {
  animation-direction: normal;
}

.secured-by .horizontal-scroll-track {
  animation-direction: reverse;
}

/* Enhanced visual effects */
.backed-by::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(101, 209, 110, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.secured-by::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(219, 153, 229, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.backed-by .container,
.secured-by .container {
  position: relative;
  z-index: 1;
}

/* Responsive Design for Horizontal Scrolling */
@media (max-width: 768px) {
  .backed-by,
  .secured-by {
    padding: 3rem 0;
  }

  .backed-by h2,
  .secured-by h2 {
    font-size: 2rem;
  }

  .horizontal-scroll-track {
    gap: 2rem;
    animation-duration: 25s;
  }

  .security-track,
  .experience-track {
    animation-duration: 30s;
  }

  .scroll-item {
    min-width: 160px;
    height: 100px;
    padding: 1rem;
  }

  .partner-logo {
    height: 38px;
    width: auto;
  }

  .security-logo,
  .experience-logo {
    height: 85px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .horizontal-scroll-track {
    gap: 1.5rem;
    animation-duration: 20s;
  }

  .security-track,
  .experience-track {
    animation-duration: 25s;
  }

  .scroll-item {
    min-width: 140px;
    height: 80px;
    padding: 0.75rem;
  }

  .partner-logo {
    height: 32px;
    width: auto;
  }

  .security-logo,
  .experience-logo {
    height: 70px;
    width: auto;
  }

  .backed-by h2,
  .secured-by h2 {
    font-size: 1.75rem;
  }
}

/* Smooth performance optimizations */
.horizontal-scroll-track {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.scroll-item {
  will-change: transform;
  backface-visibility: hidden;
}

/* ==========================================
   END HORIZONTAL SCROLLING SECTIONS
   ========================================== */

/* ==========================================
   MODERN CONTACT PAGE STYLES
   ========================================== */

.contact-hero {
  padding: 6rem 0;
  background-color: var(--dark-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(27, 27, 30, 0.9);
  border: 1px solid rgba(240, 240, 240, 0.1);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-label {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-family: var(--font-family-display);
  line-height: 1.2;
}

.contact-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info {
  margin-bottom: 2.5rem;
}

.contact-info h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-family-display);
}

.email-link {
  color: var(--text-secondary);
  text-decoration: underline;
  font-size: 1.1rem;
  transition: var(--transition);
}

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

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.form-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-self: start;
}

.form-field input,
.form-field textarea {
  background: rgba(240, 240, 240, 0.1);
  border: 1px solid rgba(240, 240, 240, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--text-light);
  transition: var(--transition);
  font-family: var(--font-family-sans-serif);
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  height: 50px;
}

.form-field textarea {
  min-height: 120px;
  height: auto;
  font-family: var(--font-family-sans-serif);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(240, 240, 240, 0.5);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(240, 240, 240, 0.15);
  box-shadow: 0 0 0 1px rgba(101, 209, 110, 0.4);
}

.btn-send {
  background: var(--primary-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family-display);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-send:hover {
  background: rgba(101, 209, 110, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(101, 209, 110, 0.3);
}

.btn-send:active {
  transform: translateY(0);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 0;
    min-height: auto;
  }

  .contact-card {
    margin: 2rem 1rem;
    padding: 2rem;
    border-radius: 16px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    margin: 1rem 0.5rem;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .contact-header h1 {
    font-size: 1.75rem;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.875rem 1rem;
    border-radius: 10px;
  }

  .btn-send {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
  }
}

/* ==========================================
   END MODERN CONTACT PAGE STYLES
   ========================================== */

/* Form Validation Styles */
.form-field {
  position: relative;
  margin-bottom: 1rem;
}

.form-field.error input,
.form-field.error textarea {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 71, 87, 0.3);
}

.form-field.success input,
.form-field.success textarea {
  border-color: var(--primary-color);
  background: rgba(101, 209, 110, 0.05);
  box-shadow: 0 0 0 1px rgba(101, 209, 110, 0.3);
}

.error-message {
  color: #ff4757;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
  font-weight: 500;
  min-height: 0;
  line-height: 1.4;
}

.form-field.error .error-message {
  display: block;
}

.form-status {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  display: block;
  background: rgba(101, 209, 110, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(101, 209, 110, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.form-status.loading {
  display: block;
  background: rgba(101, 209, 110, 0.05);
  color: rgba(240, 240, 240, 0.8);
  border: 1px solid rgba(101, 209, 110, 0.2);
}

.btn-send {
  position: relative;
  overflow: hidden;
}

.btn-send:disabled {
  background: rgba(101, 209, 110, 0.5);
  cursor: not-allowed;
  transform: none;
}

.btn-send:disabled:hover {
  background: rgba(101, 209, 110, 0.5);
  transform: none;
  box-shadow: none;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.btn-send.loading .btn-loading {
  animation: spin 1s linear infinite;
}

.btn-send.loading .btn-loading::after {
  content: "⟳";
  font-size: 1rem;
}

/* Responsive adjustments for form validation */
@media (max-width: 768px) {
  .error-message {
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }

  .form-status {
    padding: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .error-message {
    font-size: 0.75rem;
  }

  .form-status {
    padding: 0.7rem;
    font-size: 0.85rem;
    border-radius: 6px;
  }
}

/* ==========================================
   END FORM VALIDATION STYLES
   ========================================== */

/* ==========================================
   PRIVACY POLICY STYLES
   ========================================== */

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(27, 27, 30, 0.8);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(240, 240, 240, 0.08);
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.privacy-container h1 {
  color: var(--text-light);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-family-display);
}

.privacy-container h2 {
  color: var(--text-light);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-family-display);
}

.privacy-container h3 {
  color: var(--text-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-family-display);
}

.privacy-container h4 {
  color: var(--text-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-family-display);
}

.last-updated {
  background: rgba(101, 209, 110, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 4px solid var(--primary-color);
}

.privacy-container p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.privacy-container ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.privacy-container li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.section {
  margin-bottom: 2.5rem;
}

.subsection {
  margin-bottom: 1.5rem;
}

.highlight {
  background: rgba(255, 193, 7, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--warning-color);
  margin: 1.5rem 0;
  border-radius: var(--border-radius);
}

.highlight p {
  margin-bottom: 0.5rem;
}

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

.privacy-container a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.privacy-container a:hover {
  text-decoration: underline;
  color: var(--success-color);
}

/* Responsive design for privacy policy */
@media (max-width: 768px) {
  .privacy-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .privacy-container h1 {
    font-size: 2rem;
  }

  .privacy-container h2 {
    font-size: 1.5rem;
  }

  .privacy-container h3 {
    font-size: 1.2rem;
  }

  .privacy-container h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 1rem;
    margin: 0.5rem;
  }

  .privacy-container h1 {
    font-size: 1.75rem;
  }

  .privacy-container h2 {
    font-size: 1.3rem;
  }

  .privacy-container h3 {
    font-size: 1.1rem;
  }

  .privacy-container p,
  .privacy-container li {
    font-size: 0.95rem;
  }
}

/* ==========================================
   END PRIVACY POLICY STYLES
   ========================================== */

/* Investors Section */
.investors-section {
  padding: 4rem 0;
  background-color: var(--dark-secondary);
}

.investors-container {
  background: linear-gradient(135deg, #65d16e, #4ecb57);
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  color: var(--dark-bg);
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(101, 209, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.investors-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.investors-container > * {
  position: relative;
  z-index: 1;
}

.investors-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
  font-family: var(--font-family-display);
  letter-spacing: -0.02em;
}

.investors-container p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: rgba(13, 13, 13, 0.8);
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* Responsive adjustments for investors section */
@media (max-width: 768px) {
  .investors-section {
    padding: 3rem 0;
  }

  .investors-container {
    padding: 3rem 2rem;
    border-radius: 24px;
    margin: 0 1rem;
  }

  .investors-container h2 {
    font-size: 2.5rem;
  }

  .investors-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .investors-container {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }

  .investors-container h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .investors-container p {
    font-size: 1rem;
  }
}

/* Enhanced focus states for validation */
.form-field.error input:focus,
.form-field.error textarea:focus {
  border-color: #ff4757;
  background: rgba(255, 71, 87, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 71, 87, 0.5);
}

.form-field.success input:focus,
.form-field.success textarea:focus {
  border-color: var(--primary-color);
  background: rgba(101, 209, 110, 0.08);
  box-shadow: 0 0 0 1px rgba(101, 209, 110, 0.6);
}

/* App Store Download Buttons */
.app-description {
  font-size: 0.9rem;
  color: rgba(13, 13, 13, 0.7);
  font-style: italic;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}

.app-download-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.app-store-link {
  text-decoration: none;
  display: block;
  transition: var(--transition);
  flex-shrink: 0;
}

.app-store-link:hover {
  transform: translateY(-2px);
}

.app-store-badge {
  height: 50px;
  width: auto;
  display: block;
  max-width: 100%;
}

/* Tablet and larger mobile breakpoint */
@media (max-width: 896px) {
  .app-download-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .app-store-badge {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .app-download-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .app-store-badge {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .app-store-badge {
    height: 40px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .app-store-badge {
    height: 36px;
  }

  .app-download-links {
    gap: 0.5rem;
  }
}

/* Responsive adjustments for form validation */
