/**
 * EVERRISELABS PREMIUM STYLES
 * Premium redesign with elevated design system
 */

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

:root {
  /* Dark SaaS Theme with Green Accents */
  --primary-green: #10B981;
  --primary-green-hover: #059669;
  --primary-green-light: #34D399;
  --primary-blue: #4A90E2;
  --primary-purple: #9B59B6;
  --dark-bg: #0A0A0A;
  --dark-bg-secondary: #1A1A1A;
  --dark-bg-card: #1F1F1F;
  --dark-blue: #1e3a5f;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #9CA3AF;
  --text-gray-light: #D1D5DB;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
  --green-glow: 0 0 20px rgba(16, 185, 129, 0.3);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Background Gradients */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at -10% -10%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 110% 90%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  filter: blur(100px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
}

p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-gray-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-green-hover);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}


/* ===== CONTAINERS ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .hero-premium {
    padding: 100px 0 80px;
    min-height: auto;
  }
  
  .hero-headline {
    margin-bottom: 24px;
  }
  
  .hero-premium .hero-subtitle {
    margin-bottom: 40px;
  }
  
  .hero-ctas {
    margin-bottom: 40px;
  }
  
  .hero-social-proof {
    margin-top: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .social-proof-text {
    flex-direction: column;
    gap: 8px;
  }
  
  .social-proof-separator {
    display: none;
  }
  
  .hero-social-proof {
    margin-top: 32px;
  }
}

/* ===== HERO SECTION ===== */
.hero-premium {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark-bg);
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-green);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

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

.hero-headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-headline .highlight {
  background: linear-gradient(to right, var(--text-light) 0%, var(--text-gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-premium .hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-gray-light);
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-social-proof {
  margin-top: 48px;
  margin-bottom: 0;
}

.social-proof-text {
  font-size: 15px;
  color: var(--text-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.social-proof-number {
  font-weight: 700;
  color: var(--primary-green);
}

.social-proof-text-item {
  color: var(--text-gray-light);
}

.social-proof-separator {
  color: var(--border-color);
  font-weight: 300;
  margin: 0 4px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-color-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: var(--dark-bg-card);
  border-color: var(--primary-green);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

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

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(21, 21, 21, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.stat-box:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
  }
  
  .stat-box:last-child {
    padding-bottom: 0;
  }
}

/* ===== WHAT WE BUILD SECTION ===== */
.what-we-build {
  padding: 120px 0;
  background: var(--dark-bg-secondary);
  position: relative;
}

.what-we-build-title {
  text-align: center;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}

.what-we-build-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 96px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 0;
}

.work-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
  height: 100%;
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.work-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.work-item:hover .work-icon-wrapper {
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.work-icon {
  width: 36px;
  height: 36px;
  stroke: var(--primary-green);
  color: var(--primary-green);
  stroke-width: 1.5;
}

.work-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.work-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.work-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-top: auto;
}

.work-link:hover {
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.work-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.work-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .work-item {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .work-item {
    padding: 32px 24px;
    min-height: auto;
  }
  
  .what-we-build {
    padding: 80px 0;
  }
  
  .what-we-build-subtitle {
    margin-bottom: 64px;
  }
  
  .hero-premium {
    padding: 100px 0 80px;
  }
}

/* ===== ANALYTICS DASHBOARD ===== */
.hero-analytics {
  margin-top: 80px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.analytics-dashboard {
  width: 100%;
  height: 300px;
  background: var(--dark-bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuB3Zh53Dn4PbHQzLK1ddxGBHUVaIc9KtODAIxFH8hUtxDYHZ2Er0dQhM2okjZxLUpUc43Jg_LLKDkJUhPQm3pRb8WuMv6SxW4xwdajBRNl_gzof9uE2YOd9Jrg_53u1JcWUwf_9c0Vy_ClNDGneOwKjggJvS315taxY0KiUJlqu2PV8dSumH0THBwhQfiX46pkGs9in8ofXcTnIpmcJK1cL1magdkudCoW0gS9MMrb7Vm1a85DgGjAFdgTDyz2snWxBIvZz2E8_cEQ');
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.analytics-dashboard:hover {
  transform: scale(1.02);
}

.analytics-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.analytics-dashboard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(to top, var(--dark-bg) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.kpi-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
  padding: 0 16px;
}

.kpi-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-green);
  background: rgba(255, 255, 255, 0.05);
}

.kpi-label {
  font-size: 13px;
  color: var(--text-gray-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kpi-icon {
  width: 18px;
  height: 18px;
  stroke: var(--primary-green);
  color: var(--primary-green);
  fill: none;
}

.kpi-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-light);
  line-height: 1;
}

.kpi-value.positive {
  color: var(--text-light);
}

/* ===== OUR PRODUCTS SECTION ===== */
.our-products {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
}

.our-products-title {
  text-align: center;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}

.our-products-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray-light);
  margin-bottom: 96px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.product-card {
  background: linear-gradient(to bottom right, #111 0%, #050505 100%);
  border-radius: 40px;
  padding: 0;
  box-shadow: var(--shadow-lg), var(--green-glow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(16, 185, 129, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-inner {
  display: flex;
  flex-direction: row;
  padding: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.product-content-left {
  flex: 1;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: none;
  border-radius: 9999px;
  padding: 6px 12px;
  margin-bottom: 24px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-new-badge::before {
  content: 'new_releases';
  font-family: 'Material Symbols Outlined';
  font-size: 14px;
  display: block;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.product-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-light);
  margin: 0;
  line-height: 1.1;
}

.product-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.3;
}

.product-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.4;
}

.product-description {
  font-size: 16px;
  color: var(--text-gray-light);
  line-height: 1.7;
  margin: 0 0 32px 0;
  text-align: left;
  max-width: 500px;
}

.product-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-mockup {
  flex: 1;
  background: transparent;
  border-left: none;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.product-mockup-content {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: rotate(1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-mockup-content > div {
  display: flex;
  gap: 16px;
  height: 100%;
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 64px;
  padding: 16px 0;
  border-right: none;
}

.mockup-sidebar-item {
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
}

.mockup-sidebar-item.active {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.mockup-main {
  flex: 1;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.mockup-main > div:first-child {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.mockup-main > div:first-child > div {
  width: 96px;
  height: 32px;
  background: var(--primary-green);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #252525;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4b5563;
  border: none;
  flex-shrink: 0;
}

.mockup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-text-line {
  height: 8px;
  background: var(--dark-bg-secondary);
  border-radius: 4px;
  width: 60%;
}

.mockup-text-line.short {
  width: 40%;
}

.mockup-status {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.mockup-status.closed {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-green);
  border: none;
}

.mockup-status.pending {
  background: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
  border: none;
}

.product-cta-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 14px 24px;
  font-size: 15px;
}

.product-cta-secondary:hover {
  background: var(--dark-bg-secondary);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

@media (max-width: 1024px) {
  .product-card {
    flex-direction: column;
  }
  
  .product-mockup {
    border-left: none;
    border-top: 1px solid var(--border-color);
    min-height: 300px;
  }
  
  .hero-analytics {
    margin-top: 60px;
  }
  
  .analytics-dashboard {
    height: 250px;
  }
  
  .kpi-cards {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    gap: 40px;
  }
  
  .product-card {
    flex-direction: column;
  }
  
  .product-content-left {
    padding: 40px 32px;
  }
  
  .product-header {
    margin-bottom: 20px;
  }
  
  .product-title {
    font-size: 28px;
  }
  
  .product-subtitle {
    font-size: 18px;
  }
  
  .product-description {
    margin-bottom: 24px;
  }
  
  .product-cta-group {
    flex-direction: column;
  }
  
  .product-cta-group .btn {
    width: 100%;
  }
  
  .product-mockup {
    padding: 24px;
    min-height: 250px;
  }
  
  .hero-analytics {
    margin-top: 40px;
  }
  
  .analytics-dashboard {
    height: 200px;
  }
  
  .kpi-cards {
    margin-top: -40px;
    flex-direction: column;
    align-items: center;
  }
  
  .kpi-card {
    min-width: 100%;
    max-width: 280px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 120px 0;
  background: var(--dark-bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.05);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.1);
  margin-bottom: 16px;
}

.about-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-green);
}

.about-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-title-gradient {
  background: linear-gradient(to right, var(--primary-green) 0%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 18px;
  color: var(--text-gray-light);
  line-height: 1.85;
  letter-spacing: 0.01em;
  max-width: 800px;
  margin: 0 auto;
}

/* Mission & Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  align-items: stretch;
}

.mission-card,
.vision-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #151e32 0%, #0f1625 100%);
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mission-card::after,
.vision-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px -5px rgba(16, 185, 129, 0.2);
}

.mission-card:hover::after,
.vision-card:hover::after {
  opacity: 1;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.05);
  filter: blur(40px);
  transition: all 0.3s ease;
}

.mission-card:hover::before {
  background: rgba(16, 185, 129, 0.1);
}

.vision-card::before {
  background: rgba(59, 130, 246, 0.05);
}

.vision-card:hover::before {
  background: rgba(59, 130, 246, 0.1);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 24px;
  color: var(--primary-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mission-card:hover .mission-icon-wrapper,
.vision-card:hover .vision-icon-wrapper {
  transform: scale(1.05);
}

.vision-icon-wrapper {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.mission-icon-wrapper .material-symbols-outlined,
.vision-icon-wrapper .material-symbols-outlined {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.mission-title,
.vision-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.mission-text,
.vision-text {
  font-size: 16px;
  color: var(--text-gray-light);
  line-height: 1.75;
  flex-grow: 1;
}

/* Values Section */
.values-section {
  margin-top: 64px;
}

.values-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.values-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.values-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  white-space: nowrap;
}

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

.value-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(10px);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px -5px rgba(16, 185, 129, 0.15);
}

.value-icon {
  margin-bottom: 20px;
  color: var(--primary-green);
  transition: transform 0.3s ease;
  transform-origin: left;
  display: flex;
  align-items: center;
  height: 48px;
}

.value-card:hover .value-icon {
  transform: scale(1.08);
}

.value-icon .material-symbols-outlined {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: var(--primary-green);
}

.value-text {
  font-size: 14px;
  color: var(--text-gray-light);
  line-height: 1.75;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .mission-card,
  .vision-card {
    min-height: auto;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .value-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-header {
    margin-bottom: 48px;
  }
  
  .about-description {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .mission-vision-grid {
    margin-bottom: 60px;
    gap: 20px;
  }
  
  .mission-card,
  .vision-card {
    padding: 32px 24px;
    min-height: auto;
  }
  
  .mission-icon-wrapper,
  .vision-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  .mission-title,
  .vision-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .mission-text,
  .vision-text {
    font-size: 15px;
  }
  
  .values-section {
    margin-top: 48px;
  }
  
  .values-header {
    margin-bottom: 32px;
  }
  
  .values-title {
    font-size: 24px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .value-card {
    padding: 24px;
    min-height: auto;
  }
  
  .value-icon {
    height: 44px;
    margin-bottom: 16px;
  }
  
  .value-icon .material-symbols-outlined {
    font-size: 36px;
  }
  
  .value-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .value-text {
    font-size: 14px;
  }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 120px 0;
  background: var(--dark-bg);
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.final-cta h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn {
  background: var(--primary-green);
  color: var(--text-light);
  font-size: 18px;
  padding: 20px 48px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.final-cta .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
  background: var(--primary-green-hover);
}

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
  background: var(--dark-bg-secondary);
  color: var(--text-light);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-light);
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

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

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }





