:root {
  /* Primary Colors */
  --primary-color: #0077ff;
  --primary-light: #4da3ff;
  --primary-dark: #0052cc;
  
  /* Secondary Colors */
  --secondary-color: #e67e22;
  --secondary-light: #f39c12;
  --secondary-dark: #d35400;
  
  /* Accent Colors */
  --accent-color: #2ecc71;
  --accent-light: #4cd987;
  --accent-dark: #27ae60;
  
  /* Neutral Colors */
  --dark-color: #2c3e50;
  --dark-light: #34495e;
  --light-color: #f5f7fa;
  --gray-color: #95a5a6;
  --gray-light: #ecf0f1;
  --gray-dark: #7f8c8d;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #7f8c8d;
  
  /* Shadow Variables */
  --shadow-sm: 3px 3px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 5px 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 10px 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Neomorphism Shadows */
  --neo-shadow-light: 12px 12px 24px rgba(166, 180, 200, 0.25);
  --neo-shadow-dark: -12px -12px 24px rgba(255, 255, 255, 0.9);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-round: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-xxxl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --header-height: 80px;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-color);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

h1 {
  font-size: clamp(2rem, 5vw, var(--font-size-xxxl));
}

h2 {
  font-size: clamp(1.75rem, 4vw, var(--font-size-xxl));
}

h3 {
  font-size: clamp(1.5rem, 3vw, var(--font-size-xl));
}

h4 {
  font-size: var(--font-size-lg);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-md);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

ul, ol {
  padding-left: var(--space-xl);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Section Styles */
section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.section-header h2 {
  position: relative;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-sm);
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: var(--radius-sm);
}

.section-header p {
  color: var(--gray-dark);
  font-size: var(--font-size-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.btn,
button,
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  border: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-light);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  text-decoration: none;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
}

.logo h1 span {
  color: var(--secondary-color);
  font-weight: 500;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: var(--space-md);
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem;
  position: relative;
  transition: all var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  margin-top: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-xl);
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--text-light);
  font-size: clamp(var(--font-size-md), 4vw, var(--font-size-lg));
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* About Section */
.about-section {
  background-color: var(--light-color);
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neo-shadow-light), var(--neo-shadow-dark);
  padding: 20px;
  background-color: var(--light-color);
}

.image-container img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.03);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-item h4 {
  font-size: var(--font-size-xxl);
  color: var(--secondary-color);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  color: var(--gray-dark);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* Services Section */
.services-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

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

.card-content {
  padding: var(--space-xl);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.card-content p {
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-light) 100%);
  position: relative;
  overflow: hidden;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xxl);
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: var(--radius-round);
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: var(--space-lg);
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--neo-shadow-light);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

/* Projects Section */
.projects-section {
  background-color: var(--light-color);
  overflow: hidden;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.pricing-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  position: relative;
  z-index: 1;
}

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

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: var(--space-xl);
  text-align: center;
}

.card-header h3 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

.price {
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.card-body {
  padding: var(--space-xl);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.card-body li {
  margin-bottom: var(--space-md);
  padding-left: 30px;
  position: relative;
}

.card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Research Section */
.research-section {
  background-color: var(--light-color);
  overflow: hidden;
}

.research-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  flex-wrap: wrap;
}

.research-text {
  flex: 1;
  min-width: 300px;
}

.research-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.research-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neo-shadow-light), var(--neo-shadow-dark);
  padding: 20px;
  background-color: var(--light-color);
}

.research-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.research-image:hover img {
  transform: scale(1.03);
}

/* Resources Section */
.resources-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.resource-card {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

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

.resource-links li {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: var(--space-md);
}

.resource-links li:last-child {
  border-bottom: none;
}

.resource-links a {
  display: block;
  color: var(--dark-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.link-title {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--primary-color);
}

.link-description {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--gray-dark);
}

.report-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.report-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.report-icon {
  flex-shrink: 0;
}

.report-info {
  flex: 1;
}

.report-info h4 {
  margin-bottom: var(--space-xs);
  color: var(--dark-color);
}

.report-info p {
  font-size: var(--font-size-sm);
  color: var(--gray-dark);
  margin-bottom: var(--space-sm);
}

/* Media Section */
.media-section {
  background-color: var(--light-color);
  overflow: hidden;
}

.media-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
}

.media-item {
  background-color: var(--text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal);
}

.media-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.media-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

.media-item:hover .media-image img {
  transform: scale(1.05);
}

.media-content {
  padding: var(--space-lg);
  text-align: center;
  flex: 1;
}

.media-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.media-content p {
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.date {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--gray-dark);
}

/* Careers Section */
.careers-section {
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.careers-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  flex-wrap: wrap;
}

.careers-text {
  flex: 1;
  min-width: 300px;
}

.careers-text h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.careers-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--neo-shadow-light), var(--neo-shadow-dark);
  padding: 20px;
  background-color: var(--light-color);
}

.careers-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.careers-image:hover img {
  transform: scale(1.03);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  margin-bottom: var(--space-xl);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
}

.info-item p {
  margin-bottom: var(--space-md);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--text-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
}

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

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-xl);
}

.footer-logo h2 span {
  color: var(--secondary-color);
}

.footer-logo p {
  color: var(--gray-light);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

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

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--secondary-color);
  transition: width var(--transition-normal);
}

.footer-column a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer-column a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  display: flex;
  align-items: center;
  color: var(--gray-light);
}

.social-links a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.social-links a[href*="facebook"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f7fa'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96C15.9 21.59 18.03 20.44 19.57 18.72C21.1 17 21.98 14.8 22 12.5C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.social-links a[href*="twitter"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f7fa'%3E%3Cpath d='M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z'/%3E%3C/svg%3E");
}

.social-links a[href*="instagram"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f7fa'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-links a[href*="linkedin"]:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f7fa'%3E%3Cpath d='M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z'/%3E%3C/svg%3E");
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
  color: var(--gray-light);
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-xxl) var(--container-padding);
}

.success-container {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: var(--radius-round);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--space-xl);
  color: var(--text-light);
  font-size: 40px;
}

/* Terms and Privacy Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  margin-bottom: var(--space-xl);
}

.page-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--primary-color);
}

.page-content p {
  margin-bottom: var(--space-md);
}

.page-content ul {
  margin-bottom: var(--space-lg);
}

/* Animated Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(30px);
  }
  50% {
    transform: translateY(-50px) translateX(10px);
  }
  75% {
    transform: translateY(-20px) translateX(-20px);
  }
}

/* Cookie Consent */
#cookie-consent {
  border-top: 4px solid var(--primary-color);
}

#accept-cookies:hover {
  background-color: var(--secondary-dark);
}

/* Animated Line */
.animated-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
  background-size: 300% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Media Queries */
@media (max-width: 1024px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--text-light);
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 0 0 var(--space-md) 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  
  .hero-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .about-content, 
  .research-content, 
  .careers-content,
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-xxl);
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .footer-column {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}