:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --accent-primary: #00ff9f;
  --accent-secondary: #00d4ff;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #606070;
  --border: #2a2a3a;
  --glow: rgba(0, 255, 159, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-primary);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-toggle::after {
  content: '▾';
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 255, 159, 0.1);
  color: var(--accent-primary);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-primary);
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

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

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

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--accent-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.05) 0%, transparent 50%),
              linear-gradient(-45deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Noto Sans SC', sans-serif;
}

.btn-primary {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-primary);
  box-shadow: 0 0 20px var(--glow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

/* Section Base */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 15px;
}

.accent {
  color: var(--accent-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Brand Section */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.brand-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--glow);
}

.brand-card.highlight {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.05), rgba(0, 212, 255, 0.05));
}

.brand-icon {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.brand-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.about-text h3 {
  font-size: 28px;
  margin: 30px 0 15px 0;
  color: var(--accent-primary);
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 20px;
}

.credentials {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  padding: 20px;
  margin-top: 20px;
}

.credentials p {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.credentials strong {
  color: var(--text-primary);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.stat-item:hover {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Technology Section */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 40px;
  transition: all 0.3s;
}

.tech-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.tech-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.tech-icon svg {
  filter: drop-shadow(0 0 10px rgba(0, 255, 159, 0.3));
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon svg {
  filter: drop-shadow(0 0 20px rgba(0, 255, 159, 0.6));
  transform: scale(1.1) rotate(5deg);
}

.tech-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.tech-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tech-features {
  list-style: none;
  margin-top: 20px;
}

.tech-features li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.tech-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 900;
}

/* Products Section */
.product-category {
  margin: 60px 0;
}

.category-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.product-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.product-tag {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent-primary);
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--accent-primary);
  margin-bottom: 15px;
}

.product-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.product-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 14px;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 12px;
}

.blog-date {
  font-family: 'Orbitron', monospace;
  color: var(--text-muted);
}

.blog-category {
  color: var(--accent-primary);
  padding: 2px 10px;
  border: 1px solid var(--accent-primary);
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.blog-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.blog-link:hover {
  color: var(--accent-secondary);
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  padding: 25px;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 48px;
}

.contact-icon svg {
  filter: drop-shadow(0 0 8px rgba(0, 255, 159, 0.3));
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg {
  filter: drop-shadow(0 0 15px rgba(0, 255, 159, 0.6));
  transform: translateX(5px);
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

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

.link-primary {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 700;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 40px;
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--accent-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}

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

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-primary);
  margin-bottom: 15px;
}

.footer-tagline {
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-company {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--accent-primary);
}

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

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

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent-primary);
}

.footer-keywords {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 15px;
}

/* Transformation Section - Simplified */
.transformation-intro {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.8;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.value-item {
  text-align: center;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 159, 0.2);
}

.value-icon {
  margin-bottom: 20px;
}

.value-icon svg {
  filter: drop-shadow(0 0 10px rgba(0, 255, 159, 0.3));
  transition: all 0.3s ease;
}

.value-item:hover .value-icon svg {
  filter: drop-shadow(0 0 20px rgba(0, 255, 159, 0.6));
  transform: scale(1.1);
}

.value-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.value-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .brand-grid,
  .tech-grid,
  .product-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Transformation Section */
.transformation-section {
  background: var(--bg-secondary);
}

.subsection-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 60px 0 30px 0;
  text-align: center;
}

/* Pain Points */
.pain-points {
  margin: 40px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-card);
  border: 2px solid var(--accent-warning);
  padding: 20px;
  transition: all 0.3s;
}

.pain-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 51, 102, 0.2);
}

.pain-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.pain-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.pain-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 5px;
}

/* Solution Steps */
.solution-steps {
  margin: 60px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.step-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.step-number {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 15px;
}

.step-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.step-list {
  list-style: none;
  margin: 0;
}

.step-list li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.step-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 16px;
}

/* Use Cases */
.use-cases {
  margin: 60px 0;
}

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

.case-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  transition: all 0.3s;
}

.case-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--glow);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

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

.case-icon svg {
  filter: drop-shadow(0 0 8px rgba(0, 255, 159, 0.3));
}

.case-header h4 {
  font-size: 22px;
  color: var(--text-primary);
}

.case-comparison {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.case-before,
.case-after {
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.7;
}

.case-before {
  background: rgba(255, 51, 102, 0.1);
  border-left: 3px solid var(--accent-warning);
}

.case-before strong {
  color: var(--accent-warning);
}

.case-after {
  background: rgba(0, 255, 159, 0.1);
  border-left: 3px solid var(--accent-primary);
}

.case-after strong {
  color: var(--accent-primary);
}

.case-result {
  padding: 12px 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-secondary);
  font-size: 14px;
  color: var(--text-secondary);
}

.result-label {
  color: var(--accent-secondary);
  font-weight: 700;
}

/* Advantages Table */
.advantages-table {
  margin: 60px 0;
}

.comparison-table {
  background: var(--bg-card);
  border: 2px solid var(--border);
  margin-top: 30px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--border);
}

.table-row:last-child {
  border-bottom: none;
}

.table-header {
  background: var(--bg-secondary);
}

.table-header .table-cell {
  font-weight: 700;
  color: var(--accent-primary);
}

.table-cell {
  padding: 20px 25px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.table-cell strong {
  color: var(--text-primary);
  font-size: 16px;
}

.table-row:hover {
  background: rgba(0, 255, 159, 0.05);
}

/* Market Comparison */
.market-comparison {
  margin: 60px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.comparison-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 30px;
  transition: all 0.3s;
}

.comparison-card.highlight {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.05), rgba(0, 212, 255, 0.05));
}

.comparison-card h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.comparison-list {
  list-style: none;
  margin: 0;
}

.comparison-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.comparison-list.negative li {
  color: var(--text-muted);
}

.comparison-list.positive li {
  color: var(--text-secondary);
}

/* Transformation CTA */
.transformation-cta {
  margin: 60px 0 0 0;
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.05), rgba(0, 212, 255, 0.05));
  border: 2px solid var(--accent-primary);
  padding: 50px;
  text-align: center;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.cta-step-item {
  text-align: center;
}

.cta-step-num {
  font-size: 48px;
  margin-bottom: 15px;
}

.cta-step-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.cta-step-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-offer {
  background: linear-gradient(135deg, rgba(0, 255, 159, 0.08), rgba(0, 212, 255, 0.08));
  border: 2px solid var(--accent-primary);
  border-radius: 16px;
  padding: 50px 40px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 40px rgba(0, 255, 159, 0.15);
}

.cta-offer h4 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-align: center;
  font-weight: 700;
}

.cta-offer ul {
  list-style: none;
  margin: 0 0 35px 0;
  padding: 0;
  display: grid;
  gap: 15px;
}

.cta-offer li {
  padding: 15px 20px 15px 45px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.cta-offer li:hover {
  background: rgba(0, 255, 159, 0.05);
  transform: translateX(5px);
}

.cta-offer li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
  font-size: 20px;
  font-weight: 900;
}

.cta-offer .btn {
  margin-top: 10px;
  display: inline-block;
  font-size: 18px;
  padding: 15px 50px;
}

/* Responsive for Transformation Section */
@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pain-grid,
  .steps-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-cell {
    padding: 15px;
  }

  .transformation-cta {
    padding: 30px 20px;
  }

  .cta-offer {
    padding: 30px 20px;
  }
}