﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --dark: #0f172a;
  --gray: #64748b;
  --light-gray: #f8fafc;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 10%;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  text-decoration: none;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-bar {
  width: 24px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.text-success,
.text-primary {
  color: var(--primary) !important;
}

/* Custom logo icon based on image */
.logo-icon-custom {
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-login {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.btn-login:hover {
  color: var(--primary);
}

.border-glow {
  position: relative;
}

.border-glow::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px dashed rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.btn-area-cliente {
  background: var(--primary);
  color: white;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-area-cliente:hover {
  background: var(--primary-dark);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 10%;
  min-height: calc(100vh - 100px);
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: #111827;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn-cta {
  background: var(--primary);
  color: white;
  padding: 1.125rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Graphic Elements */
.graphic-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.central-node {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 10;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.central-node i {
  color: var(--primary);
  font-size: 2rem;
}

.outer-node {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
  font-size: 1.25rem;
  color: var(--gray);
}

.node-1 {
  top: 25%;
  left: 25%;
}

.node-2 {
  top: 25%;
  right: 25%;
}

.node-3 {
  bottom: 25%;
  left: 25%;
}

.node-4 {
  bottom: 25%;
  right: 25%;
}

.connecting-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.line {
  position: absolute;
  background: #e2e8f0;
  height: 2px;
  transform-origin: left center;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.outer-node {
  animation: float 4s ease-in-out infinite;
}

.node-2 {
  animation-delay: 1s;
}

.node-3 {
  animation-delay: 2s;
}

.node-4 {
  animation-delay: 3s;
}

/* Services Section */
.services-section {
  background: #f8fafc;
  padding: 5rem 10%;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
}

.services-title .text-primary {
  color: var(--primary);
}

.services-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}

.service-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

.service-list li i {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-btn {
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
  display: block;
}

.service-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* AI Transformation Section */
.ai-section {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1564926390189-bb571de09467");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 10%;
  overflow: hidden;
}

.ai-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.ai-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.ai-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ai-title .text-primary {
  color: var(--primary);
}

.ai-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.ai-feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.ai-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.ai-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.ai-feature-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.ai-closing {
  text-align: center;
}

.ai-closing-text {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ai-closing-highlight {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.ai-closing-highlight .text-primary {
  color: var(--primary);
}

/* Journey Section */
.journey-section {
  background: var(--white);
  padding: 6rem 10%;
}

.journey-container {
  max-width: 1400px;
  margin: 0 auto;
}

.journey-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.journey-title .text-primary {
  color: var(--primary);
}

.journey-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 1.6;
}

.journey-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  width: 140px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  z-index: 2;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.step-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.journey-step:hover .step-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.journey-step:hover .step-icon i {
  color: white;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 100%);
  margin: 0 -10px;
  align-self: center;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

/* Ecosystem Section */
.ecosystem-section {
  background: #f8fafc;
  padding: 6rem 10%;
}

.ecosystem-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ecosystem-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ecosystem-title .text-primary {
  color: var(--primary);
}

.ecosystem-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  line-height: 1.6;
}

.ecosystem-hub {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.ecosystem-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ecosystem-row.top-row {
  align-items: center;
}

.ecosystem-row.bottom-row {
  justify-content: center;
  gap: 8rem;
}

.ecosystem-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 320px;
  transition: all 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.card-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

.card-benefits li:last-child {
  margin-bottom: 0;
}

.card-benefits li i {
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Central Hub */
.central-hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hub-circle {
  width: 180px;
  height: 180px;
  background: white;
  border: 3px dashed var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.hub-circle i {
  font-size: 2.5rem;
  color: var(--primary);
}

.hub-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hub-text strong {
  font-size: 1.125rem;
  color: var(--dark);
  font-weight: 700;
}

.hub-text span {
  font-size: 0.875rem;
  color: var(--gray);
}

/* Connecting Lines */
.hub-line {
  position: absolute;
  background: var(--primary);
  opacity: 0.3;
  z-index: 1;
}

.line-top-left {
  width: 2px;
  height: 120px;
  top: -120px;
  left: 30%;
  transform: rotate(-25deg);
}

.line-top-right {
  width: 2px;
  height: 120px;
  top: -120px;
  right: 30%;
  transform: rotate(25deg);
}

.line-bottom-left {
  width: 2px;
  height: 120px;
  bottom: -120px;
  left: 30%;
  transform: rotate(25deg);
}

.line-bottom-right {
  width: 2px;
  height: 120px;
  bottom: -120px;
  right: 30%;
  transform: rotate(-25deg);
}

/* Solutions Platform Section */
.solutions-section {
  background: var(--white);
  padding: 6rem 10%;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solutions-title .text-primary {
  color: var(--primary);
}

.solutions-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.solution-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.1);
  transform: translateY(-4px);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.solution-icon i {
  font-size: 1.75rem;
  color: var(--primary);
}

.solution-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.solution-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Performance Section */
.performance-section {
  background: #f8fafc;
  padding: 6rem 10%;
}

.performance-container {
  max-width: 1400px;
  margin: 0 auto;
}

.performance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.performance-text {
  max-width: 550px;
}

.performance-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.performance-title .text-primary {
  color: var(--primary);
}

.performance-description {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.performance-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.performance-benefits li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.performance-benefits li:last-child {
  margin-bottom: 0;
}

.performance-benefits li i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.performance-benefits li div {
  flex: 1;
}

.performance-benefits li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.performance-benefits li p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.performance-chart {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 100%;
}

.chart-container {
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 100%;
}

.chart-container canvas {
  max-width: 100%;
  height: auto !important;
}

/* CTA Section */
.cta-section {
  background: var(--white);
  padding: 5rem 10%;
  border-top: 1px solid #e5e7eb;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cta-content {
  flex: 1;
  max-width: 600px;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.cta-action {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: white;
  padding: 1.125rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.cta-button i:first-child {
  font-size: 1.25rem;
}

.cta-button i:last-child {
  font-size: 1rem;
}

/* Partners Carousel Section */
.partners-section {
  background: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: #cbd5e1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.partner-item:hover {
  color: var(--dark);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 4rem 2rem;
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav-links,
  .nav-actions .btn-login {
    display: none;
  }

  .services-section {
    padding: 3rem 1.5rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .ai-section {
    padding: 4rem 1.5rem;
    background-attachment: scroll;
  }

  .ai-title {
    font-size: 1.75rem;
  }

  .ai-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .ai-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .ai-feature-card {
    padding: 1.75rem 1.5rem;
  }

  .ai-closing-text {
    font-size: 1.25rem;
  }

  .ai-closing-highlight {
    font-size: 1.75rem;
  }

  .journey-section {
    padding: 4rem 1.5rem;
  }

  .journey-title {
    font-size: 1.75rem;
  }

  .journey-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .journey-timeline {
    flex-direction: column;
    align-items: center;
  }

  .journey-step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
  }

  .step-connector {
    display: none;
  }

  .ecosystem-section {
    padding: 4rem 1.5rem;
  }

  .ecosystem-title {
    font-size: 1.75rem;
  }

  .ecosystem-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .ecosystem-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .ecosystem-row.bottom-row {
    gap: 2rem;
  }

  .ecosystem-card {
    max-width: 100%;
  }

  .central-hub {
    order: -1;
    margin-bottom: 2rem;
  }

  .hub-line {
    display: none;
  }

  .solutions-section {
    padding: 4rem 1.5rem;
  }

  .solutions-title {
    font-size: 1.75rem;
  }

  .solutions-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .performance-section {
    padding: 4rem 1.5rem;
  }

  .performance-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .performance-title {
    font-size: 2rem;
  }

  .performance-description {
    font-size: 1rem;
  }

  .chart-container {
    height: 300px;
  }

  .performance-chart {
    padding: 1.5rem 1rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .partners-section {
    padding: 3rem 0;
  }

  .partners-label {
    font-size: 0.7rem;
    margin-bottom: 2rem;
  }

  .partner-item {
    font-size: 1.125rem;
  }

  .partners-track {
    gap: 2.5rem;
  }

  .footer {
    padding: 4rem 1.5rem 3rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    text-align: center;
    flex-direction: column;
    gap: 4rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    order: -1;
    /* Place social icons above copyright on mobile */
  }
}

/* Footer Section */
.footer {
  background: #ffffff;
  color: var(--gray);
  padding: 5rem 10% 3rem;
  border-top: 1px solid #f1f5f9;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0;
}

.footer-links-grid {
  display: flex;
  gap: 6rem;
}

.footer-group-title {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--gray);
  font-size: 1.25rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Leader CTA Section */
.leader-cta-section {
  background: #f8fafc;
  padding: 6rem 10%;
  text-align: center;
}

.leader-cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.leader-cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.leader-cta-subtitle {
  font-size: 1.5rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.leader-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.leader-cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.leader-cta-button i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.leader-cta-button:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  padding: 6rem 10%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-title .text-primary {
  color: var(--primary);
}

.faq-description {
  font-size: 1.125rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 1rem;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--dark);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-description {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .leader-cta-section {
    padding: 4rem 1.5rem;
  }

  .leader-cta-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .leader-cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  .leader-cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .leader-cta-title {
    font-size: 1.75rem;
  }

  .leader-cta-subtitle {
    font-size: 1rem;
  }

  .leader-cta-section {
    padding: 3rem 1rem;
  }
}

/* About Page Specific Styles */
.about-hero {
  padding: 8rem 10%;
  text-align: center;
  background: var(--white);
}

.about-hero-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-hero-description {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 6rem 1.5rem;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-description {
    font-size: 1.125rem;
  }
}

/* MVV Section */
.about-mvv {
  padding: 6rem 10%;
  background: var(--white);
}

.mvv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.mvv-item {
  text-align: center;
}

.mvv-icon-circle {
  width: 60px;
  height: 60px;
  background: #ebfdf2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.mvv-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.mvv-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-mvv {
    padding: 4rem 1.5rem;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .mvv-description {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 6rem 10%;
  background: #f1f5f9;
  text-align: center;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.pricing-title .text-primary {
  color: var(--primary);
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
  border-color: var(--primary);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.plan-description {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 2rem;
  min-height: 3rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray);
}

.plan-button {
  display: block;
  width: 100%;
  padding: 1.125rem;
  background: var(--primary);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  transition: background 0.3s ease;
}

.plan-button:hover {
  background: var(--primary-dark);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.4;
}

.plan-features li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pricing-title {
    font-size: 2.25rem;
  }

  .pricing-section {
    padding: 4rem 1.5rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 10%;
  background: var(--white);
  text-align: center;
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-form-container {
  flex: 1.2;
  background: #f8fafc;
  padding: 3rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-button:hover {
  background: var(--primary-dark);
}

.contact-info {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: #ebfdf2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.info-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-title {
    font-size: 2.25rem;
  }
}

/* Consortium Section Styles */
.cons-section {
  padding: 6rem 10%;
  background: #f1f5f9;
  text-align: center;
}

.cons-header {
  margin-bottom: 5rem;
}

.cons-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.cons-title .text-primary {
  color: var(--primary);
}

.cons-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.cons-container {
  display: flex;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  align-items: flex-start;
}

.cons-simulation-box {
  flex: 1.2;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cons-box-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2rem;
}

.cons-form .form-group {
  margin-bottom: 1.5rem;
}

.cons-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.cons-form .form-control {
  background: #e5e7eb;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.cons-form .form-control::placeholder {
  color: #9ca3af;
}

.cons-submit-btn {
  width: 100%;
  padding: 1.125rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.cons-submit-btn:hover {
  background: var(--primary-dark);
}

.cons-advantages {
  flex: 0.8;
  padding-top: 5rem;
}

.cons-adv-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.cons-adv-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cons-adv-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.cons-adv-icon {
  width: 48px;
  height: 48px;
  background: #ebfdf2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cons-adv-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.cons-adv-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cons-container {
    flex-direction: column;
    gap: 4rem;
  }

  .cons-section {
    padding: 4rem 1.5rem;
  }

  .cons-title {
    font-size: 2.5rem;
  }

  .cons-advantages {
    padding-top: 0;
  }
}

/* Legal Pages Styles */
.legal-section {
  padding: 6rem 10%;
  background: #f8fafc;
  color: var(--dark);
  line-height: 1.6;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-header {
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-date {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: #475569;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: #475569;
}

.legal-content strong {
  color: var(--dark);
}

.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .legal-section {
    padding: 4rem 1.5rem;
  }

  .legal-container {
    padding: 2.5rem 1.5rem;
  }

  .legal-title {
    font-size: 2rem;
  }
}
