/* ========================================
   CSS Reset & Variables
   ======================================== */

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

:root {
  /* Color Palette */
  --primary-dark: #0c2233;
  --accent-coral: #ff7f50;
  --background-beige: #f5f2eb;
  --secondary-teal: #1b998b;
  --text-graphite: #202020;
  --white: #ffffff;
  --light-gray: #e8e5dd;
  --dark-overlay: rgba(12, 34, 51, 0.95);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(12, 34, 51, 0.08);
  --shadow-md: 0 4px 16px rgba(12, 34, 51, 0.12);
  --shadow-lg: 0 8px 32px rgba(12, 34, 51, 0.16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-graphite);
  background-color: var(--background-beige);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Utilities
   ======================================== */

.content-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Header & Navigation
   ======================================== */

.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--light-gray);
}

.primary-navigation {
  padding: 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-icon {
  font-size: 2rem;
}

.navigation-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navigation-menu a {
  font-weight: 500;
  color: var(--text-graphite);
  position: relative;
  padding: 0.5rem 0;
}

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

.navigation-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-coral);
  transition: var(--transition-smooth);
}

.navigation-menu a:hover::after,
.navigation-menu a.active::after {
  width: 100%;
}

.cta-button {
  background: var(--accent-coral);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 600;
}

.cta-button:hover {
  background: #ff6a3d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-button::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  padding: var(--spacing-xl) 0;

  display: flex;
  align-items: center;
}

.hero-section-with-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/metaforja.jpg) no-repeat center center/cover;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.content-wrapper h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.title-highlight {
  color: var(--accent-coral);
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.primary-btn {
  background: var(--accent-coral);
  color: var(--white);
}

.primary-btn:hover {
  background: #ff6a3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 127, 80, 0.3);
}

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

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

.large-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Chart */
.hero-visual {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: var(--spacing-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-container {
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: var(--spacing-sm);
  position: relative;
}

.chart-container canvas {
  max-width: 100%;
  height: auto !important;
  display: block;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
  padding: var(--spacing-lg) 0;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent-coral);
  border-bottom: 3px solid var(--accent-coral);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========================================
   Features Section
   ======================================== */

.features-section {
  padding: var(--spacing-xl) 0;
  background: var(--primary-dark);
  color: var(--white);
}

.features-section .section-title {
  color: var(--white);
}

.features-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-md);
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 127, 80, 0.3);
  border-color: var(--accent-coral);
}

.feature-icon {
  font-size: 3rem;
  display: block;
  margin: 0 auto var(--spacing-sm) auto;
}

img.feature-icon {
  filter: invert(65%) sepia(51%) saturate(2878%) hue-rotate(327deg)
    brightness(104%) saturate(90%);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.feature-text {
  color: #666;
  line-height: 1.7;
}

/* ========================================
   Analytics Section
   ======================================== */

.analytics-section {
  padding: var(--spacing-xl) 0;
  background: var(--background-beige);
}

.analytics-section .section-title {
  color: var(--background-beige);
}

.analytics-section .section-subtitle {
  color: var(--light-gray);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.chart-card {
  background: var(--background-beige);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.chart-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
}

.chart-wrapper {
  position: relative;
  height: 300px;
}

.chart-wrapper canvas {
  max-width: 100%;
  height: auto !important;
  display: block;
}

.candlestick-section {
  background: var(--background-beige);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.candlestick-chart {
  height: 400px;
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-sm);
  margin-top: var(--spacing-sm);
  position: relative;
}

.candlestick-chart canvas {
  max-width: 100%;
  height: auto !important;
  display: block;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  padding: var(--spacing-xl) 0;
  background: var(--primary-dark);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-md);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-left: 4px solid var(--accent-coral);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 127, 80, 0.3);
}

.testimonial-content {
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-coral);
}

.author-name {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #666;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1a26 100%);
  border-top: 3px solid var(--accent-coral);
  border-bottom: 3px solid var(--accent-coral);
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
}

/* ========================================
   Footer
   ======================================== */

.main-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-coral);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-coral);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
}

/* ========================================
   Cookie Popup
   ======================================== */

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  max-width: 420px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: var(--spacing-md);
  z-index: 9999;
  transform: translateX(150%);
  transition: transform var(--transition-smooth);
  border: 2px solid var(--accent-coral);
  border-radius: 12px;
}

.cookie-popup.show {
  transform: translateX(0);
}

.cookie-content {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--spacing-md);
}

.cookie-text {
  flex: 1;
  line-height: 1.6;
  font-size: 0.9rem;
}

.cookie-link {
  color: var(--accent-coral);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--spacing-sm);
  width: 100%;
}

.cookie-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  flex: 1;
}

.accept-btn {
  background: var(--accent-coral);
  color: var(--white);
}

.accept-btn:hover {
  background: #ff6a3d;
}

.decline-btn {
  background: var(--light-gray);
  color: var(--text-graphite);
}

.decline-btn:hover {
  background: #d8d5cd;
}

/* ========================================
   Form Styles
   ======================================== */

.form-wrapper {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-coral);
  box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #dc3545;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-coral);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover:not(:disabled) {
  background: #ff6a3d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.legal-page-section {
  padding: 4rem 0;
  background: var(--background-beige);
  min-height: 70vh;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.legal-header {
  border-bottom: 3px solid var(--accent-coral);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.legal-date {
  color: #666;
  font-size: 0.95rem;
}

.legal-sections {
  line-height: 1.8;
  color: var(--text-graphite);
}

.legal-block {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-teal);
  transition: var(--transition-smooth);
}

.legal-block:hover {
  background: #f5f5f5;
  border-left-color: var(--accent-coral);
  transform: translateX(4px);
}

.legal-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-text {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-list {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-link {
  color: var(--accent-coral);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.legal-link:hover {
  color: var(--secondary-teal);
}

.legal-contact {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-left-color: var(--accent-coral);
}

/* ========================================
   Thank You Page Styles
   ======================================== */

.thank-you-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #164058 100%);
  padding: 4rem 0;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  animation: scaleIn 0.6s ease-out;
}

.thank-you-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.thank-you-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thank-you-info-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

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

/* ========================================
   Game Development Process Section
   ======================================== */

.game-dev-process-section {
  padding: var(--spacing-xl) 0;
  background: var(--primary-dark);
  color: var(--white);
}

.process-timeline {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--accent-coral),
    var(--secondary-teal)
  );
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 100px;
  opacity: 0;
  animation: slideInLeft 0.6s forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}
.process-step:nth-child(5) {
  animation-delay: 0.5s;
}

.step-icon {
  position: absolute;
  left: 15px;
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border: 3px solid var(--accent-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  transition: var(--transition-smooth);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  background: var(--accent-coral);
  color: var(--white);
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-coral);
  transition: var(--transition-smooth);
}

.step-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-coral);
}

.step-description {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   Technologies Stack Section
   ======================================== */

.tech-stack-section {
  padding: var(--spacing-xl) 0;
  background: var(--background-beige);
}

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

.tech-category {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border-top: 4px solid var(--primary-dark);
}

.tech-category:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-coral);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.category-header img {
  color: var(--primary-dark);
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-dark);
  text-align: center;
}

.tech-list {
  list-style: none;
}

.tech-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--accent-coral);
  transition: var(--transition-fast);
}

.tech-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-coral);
  font-weight: bold;
}

.tech-list li:hover {
  color: var(--accent-coral);
  padding-left: 2rem;
}

/* ========================================
   Charts Carousel Section
   ======================================== */

.charts-carousel-section {
  padding: var(--spacing-xl) 0;
  background: var(--primary-dark);
  color: var(--white);
}

.carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 60px;
}

.charts-carousel {
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.carousel-slide {
  display: none;
  padding: 3rem;
}

.carousel-slide.active {
  display: block;
  animation: fadeIn 0.5s;
}

.chart-info {
  text-align: center;
  margin-bottom: 2rem;
}

.chart-carousel-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-coral);
}

.chart-carousel-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.chart-visual {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-coral);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--secondary-teal);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator.active,
.indicator:hover {
  background: var(--accent-coral);
  transform: scale(1.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================================
   Projects Gallery Section
   ======================================== */

.projects-gallery-section {
  padding: var(--spacing-xl) 0;
  background: var(--background-beige);
}

.projects-carousel-wrapper {
  margin-top: 3rem;
  overflow: hidden;
}

.projects-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-coral) var(--light-gray);
}

.projects-carousel::-webkit-scrollbar {
  height: 8px;
}

.projects-carousel::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 4px;
}

.projects-carousel::-webkit-scrollbar-thumb {
  background: var(--accent-coral);
  border-radius: 4px;
}

.projects-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-teal);
}

.project-card {
  min-width: 320px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.project-image {
  width: 100%;
  height: 300px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.section-hero-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1929 100%);
  color: var(--white);
  padding: 2rem 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.project-info {
  padding: 1.5rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.project-desc {
  color: var(--text-graphite);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========================================
   Game Genres Section
   ======================================== */

.game-genres-section {
  padding: var(--spacing-xl) 0;
  background: var(--primary-dark);
  color: var(--white);
}

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

.genre-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.genre-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-coral);
  transform: translateY(-5px);
}

.genre-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition-smooth);
}

.genre-card:hover .genre-icon {
  transform: rotate(360deg) scale(1.1);
  background: var(--secondary-teal);
}

.genre-icon img {
  filter: brightness(0) invert(1);
}

.genre-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-coral);
  margin-bottom: 1rem;
  text-align: center;
}

.genre-desc {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-align: justify;
}

.genre-examples {
  list-style: none;
}

.genre-examples li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.genre-examples li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-teal);
  font-weight: bold;
}

/* ========================================
   Metodologia & Graficos Utility Classes
   ======================================== */

/* Dark Sections */
.section-dark {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6rem 0;
}

.section-dark-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1929 100%);
  color: var(--white);
  padding: 6rem 0;
}

.section-dark-gradient-alt {
  background: linear-gradient(135deg, #0a1929 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
}

.section-bordered-top-coral {
  border-top: 3px solid var(--accent-coral);
}

.section-bordered-top-teal {
  border-top: 3px solid var(--secondary-teal);
}

/* Headers & Icons */
.section-header-centered {
  margin-bottom: 4rem;
}

.icon-wrapper-centered {
  text-align: center;
  margin-bottom: 1.5rem;
}

.icon-inverted {
  display: block;
  margin: 0 auto;
}

img.icon-inverted {
}

.icon-inverted-opacity {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.icon-lg {
  width: 80px;
  height: 80px;
}

.icon-md {
  width: 70px;
  height: 70px;
}

.icon-sm {
  width: 60px;
  height: 60px;
}

.icon-xs {
  width: 50px;
  height: 50px;
}

/* Typography */
.title-hero {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.title-section-lg {
  color: var(--white);
  font-size: 2.8rem;
  text-align: center;
}

.title-section-xl {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.subtitle-section {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 0;
}

.subtitle-hero {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
}

.text-center-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Phase & Feature Cards */
.phase-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  padding: 2.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.phase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 127, 80, 0.6);
}

.phase-card-teal {
  border-color: rgba(27, 153, 139, 0.3);
}

.phase-card-teal:hover {
  border-color: rgba(27, 153, 139, 0.6);
}

.phase-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
}

.phase-title-coral {
  color: var(--accent-coral);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.phase-title-teal {
  color: var(--secondary-teal);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.phase-description {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phase-list {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}

.phase-list li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.highlight-coral {
  color: var(--accent-coral);
}

.highlight-teal {
  color: var(--secondary-teal);
}

/* Tool Cards */
.tool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  padding: 2rem;
  border-radius: 12px;
}

.tool-card-teal {
  border-color: rgba(27, 153, 139, 0.3);
}

.tool-title-coral {
  color: var(--accent-coral);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.tool-title-teal {
  color: var(--secondary-teal);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.tool-list {
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  list-style: none;
  padding: 0;
}

/* Stats & Metrics */
.stat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-circle-teal {
  border-color: var(--secondary-teal);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.stat-number-teal {
  color: var(--secondary-teal);
}

.stat-title {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.stat-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.timeline-badge {
  min-width: 120px;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
}

.timeline-badge-coral {
  background: rgba(255, 127, 80, 0.2);
}

.timeline-badge-teal {
  background: rgba(27, 153, 139, 0.2);
}

.timeline-week {
  font-size: 1.5rem;
  font-weight: 700;
}

.timeline-week-coral {
  color: var(--accent-coral);
}

.timeline-week-teal {
  color: var(--secondary-teal);
}

.timeline-phase {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
}

.timeline-content-coral {
  border-left: 4px solid var(--accent-coral);
}

.timeline-content-teal {
  border-left: 4px solid var(--secondary-teal);
}

.timeline-title-coral {
  color: var(--accent-coral);
  margin-bottom: 1rem;
}

.timeline-title-teal {
  color: var(--secondary-teal);
  margin-bottom: 1rem;
}

.timeline-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Testimonial Cards */
.testimonial-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.testimonial-card-dark:hover {
  border-color: var(--accent-coral);
  transform: translateY(-8px);
}

.testimonial-card-dark-teal {
  border-color: rgba(27, 153, 139, 0.3);
}

.testimonial-card-dark-teal:hover {
  border-color: var(--secondary-teal);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-quote-teal {
  color: var(--secondary-teal);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-avatar-coral {
  background: var(--accent-coral);
}

.testimonial-avatar-teal {
  background: var(--secondary-teal);
}

.testimonial-author-name {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1929 100%);
  color: var(--white);
  padding: 6rem 0;
  border-top: 3px solid var(--accent-coral);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-coral {
  background: var(--accent-coral);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-coral);
}

.btn-cta-coral:hover {
  background: transparent;
  color: var(--accent-coral);
}

.btn-cta-teal {
  background: transparent;
  color: var(--secondary-teal);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-teal);
}

.btn-cta-teal:hover {
  background: var(--secondary-teal);
  color: var(--white);
}

.btn-cta-bordered-coral {
  background: transparent;
  color: var(--accent-coral);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-coral);
}

.btn-cta-bordered-coral:hover {
  background: var(--accent-coral);
  color: var(--white);
}

/* Trust Badges */
.trust-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
}

.trust-badge-number {
  font-size: 2rem;
  font-weight: 700;
}

.trust-badge-number-coral {
  color: var(--accent-coral);
}

.trust-badge-number-teal {
  color: var(--secondary-teal);
}

.trust-badge-label {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Company Logos */
.company-logos {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.company-logos-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.company-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.company-logo-item {
  padding: 1rem 2rem;
}

/* Grids */
.features-grid-lg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

/* Utility Classes */
.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

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

.text-center-mb-1 {
  text-align: center;
  margin-bottom: 1rem;
}

.text-center-mb-2 {
  text-align: center;
  margin-bottom: 2rem;
}

.max-w-900 {
  max-width: 900px;
  margin: 0 auto;
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.padding-btn {
  padding: 1rem 2rem;
}

.text-light-sm {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.text-light-md {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.text-light-lg {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.text-light-xl {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.text-subtitle-sm {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.text-small-mt {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Form Styles for Dark Theme */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  color: var(--white);
  padding: 0.875rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-coral);
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF7F50' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.error-message {
  color: var(--accent-coral);
  font-size: 0.85rem;
  display: none;
  margin-top: 0.25rem;
}

/* CTA Buttons Dark Theme */
.btn-cta-coral {
  display: inline-block;
  background: var(--accent-coral);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.btn-cta-coral:hover {
  background: #ff6a3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

.btn-cta-teal {
  display: inline-block;
  background: transparent;
  color: var(--secondary-teal);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-teal);
  cursor: pointer;
}

.btn-cta-teal:hover {
  background: var(--secondary-teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* Tool Card Variations */
.tool-card-teal {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card-teal:hover {
  border-color: var(--secondary-teal);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 153, 139, 0.2);
}

.tool-title-coral {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-coral);
  margin: 1rem 0;
  text-align: center;
}

.tool-title-teal {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--secondary-teal);
  margin: 1rem 0;
  text-align: center;
}

/* Section Header Variations */
.section-header-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

/* Text Center Container */
.text-center-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Specific Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-coral);
  transform: translateY(-2px);
}

.faq-question {
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-chevron {
  color: var(--accent-coral);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GRAFICOS PAGE SPECIFIC CLASSES
   ============================================ */

/* Hero Section Graficos */
.hero-section-graficos {
  min-height: 60vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1929 100%);
  position: relative;
  overflow: hidden;
}

.content-wrapper-centered {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title-graficos {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-description-graficos {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-group-hero {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-btn-border {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--accent-coral);
}

/* Analytics Section */
.analytics-section-dark {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6rem 0;
}

.section-title-graficos {
  color: var(--white);
  font-size: 2.8rem;
}

.section-subtitle-graficos {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.analytics-grid-custom {
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.card-dark-coral {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  padding: 3rem;
  border-radius: 16px;
}

.card-dark-teal {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 3rem;
  border-radius: 16px;
}

.card-title-coral {
  color: var(--accent-coral);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-title-teal {
  color: var(--secondary-teal);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.card-text-light {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.list-unstyled-dark {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

.list-item-flex {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.bullet-coral {
  color: var(--accent-coral);
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.bullet-teal {
  color: var(--secondary-teal);
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

/* Chart Cards */
.chart-card-teal {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 2.5rem;
  border-radius: 16px;
  min-height: 400px;
}

.chart-card-coral {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  padding: 2.5rem;
  border-radius: 16px;
  min-height: 400px;
}

.chart-title-coral {
  color: var(--accent-coral);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.chart-title-teal {
  color: var(--secondary-teal);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.chart-wrapper-350 {
  height: 350px;
}

/* Candlestick Section */
.candlestick-section-dark {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 3rem;
  border-radius: 16px;
}

.chart-header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.chart-title-large {
  color: var(--accent-coral);
  margin-bottom: 0.5rem;
  font-size: 2rem;
  text-align: center;
}

.chart-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  text-align: center;
}

.chart-container-full {
  position: relative;
  height: 400px;
  width: 100%;
}

/* Feature Cards */
.feature-card-hover-coral {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 127, 80, 0.3);
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-hover-coral:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 127, 80, 0.6);
}

.feature-card-hover-teal {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-hover-teal:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 153, 139, 0.6);
}

.feature-title-coral {
  color: var(--accent-coral);
  font-size: 1.5rem;
  text-align: center;
}

.feature-title-teal {
  color: var(--secondary-teal);
  font-size: 1.5rem;
  text-align: center;
}

.metric-value-large-coral {
  margin-top: 1rem;
  font-size: 2.5rem;
  color: var(--accent-coral);
  font-weight: 700;
  text-align: center;
}

.metric-value-large-teal {
  margin-top: 1rem;
  font-size: 2.5rem;
  color: var(--secondary-teal);
  font-weight: 700;
  text-align: center;
}

.metric-change-light {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
}

.metrics-flex-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.metric-group-dual {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.metric-label-small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.metric-value-medium-coral {
  font-size: 2rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.metric-value-medium-teal {
  font-size: 2rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.metric-sublabel {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.metric-value-xl-coral {
  font-size: 1.8rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.metric-value-xl-teal {
  font-size: 1.8rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

/* Grid Layouts */
.grid-2col-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3col-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.grid-4col-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.grid-5col-custom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.grid-1-2-custom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-1-5-1-custom {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

/* Borders & Separators */
.border-top-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.border-bottom-light {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-bottom-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Badges */
.badge-live-teal {
  background: rgba(27, 153, 139, 0.3);
  color: var(--secondary-teal);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.badge-running-teal {
  background: rgba(27, 153, 139, 0.3);
  color: var(--secondary-teal);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.badge-analyzing-coral {
  background: rgba(255, 127, 80, 0.3);
  color: var(--accent-coral);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.badge-date-coral {
  background: rgba(255, 127, 80, 0.3);
  color: var(--accent-coral);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.badge-date-teal {
  background: rgba(27, 153, 139, 0.3);
  color: var(--secondary-teal);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* Progress Bars */
.progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-teal-coral {
  background: linear-gradient(
    90deg,
    var(--secondary-teal),
    var(--accent-coral)
  );
  height: 100%;
}

.progress-bar-coral-teal {
  background: linear-gradient(
    90deg,
    var(--accent-coral),
    var(--secondary-teal)
  );
  height: 100%;
}

.progress-bar-thin {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill-teal {
  background: var(--secondary-teal);
  width: 100%;
  height: 100%;
}

.progress-fill-coral {
  background: var(--accent-coral);
  width: 100%;
  height: 100%;
}

/* Highlight Boxes */
.highlight-box-teal {
  background: rgba(27, 153, 139, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-teal);
}

.highlight-box-coral {
  background: rgba(255, 127, 80, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-coral);
}

/* Stats Circles */
.stat-circle-teal {
  background: rgba(27, 153, 139, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-circle-coral {
  background: rgba(255, 127, 80, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-circle-value-teal {
  font-size: 2rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.stat-circle-value-coral {
  font-size: 2rem;
  color: var(--accent-coral);
  font-weight: 700;
}

/* Section Borders */
.section-border-top-coral {
  border-top: 3px solid var(--accent-coral);
}

.section-border-top-teal {
  border-top: 3px solid var(--secondary-teal);
}

/* Icon Filters */
.icon-inverted-filter {
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

/* Flex Utilities */
.flex-center-gap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-between-align {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.flex-gap-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flex-gap-md {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.flex-between-mb {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

/* Stats Section Graficos */
.stats-section-graficos {
  background: var(--primary-dark);
  color: var(--white);
  padding: 5rem 0;
  border-top: 3px solid var(--accent-coral);
  border-bottom: 3px solid var(--accent-coral);
}

.stat-number-graficos {
  color: var(--accent-coral);
  font-size: 3.5rem;
}

.stat-number-teal-graficos {
  color: var(--secondary-teal);
  font-size: 3.5rem;
}

.stat-label-graficos {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.stat-meta-graficos {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Metric Boxes */
.metric-box-coral {
  background: rgba(255, 127, 80, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.metric-box-teal {
  background: rgba(27, 153, 139, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.metric-box-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.metric-box-value-coral {
  font-size: 2.2rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.metric-box-value-teal {
  font-size: 2.2rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.metric-box-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* Experiment Cards */
.experiment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.experiment-title {
  color: var(--white);
  margin: 0;
}

.experiment-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.experiment-metrics {
  display: flex;
  gap: 2rem;
}

.experiment-metric-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.experiment-metric-value-coral {
  color: var(--accent-coral);
  font-weight: 700;
}

.experiment-metric-value-teal {
  color: var(--secondary-teal);
  font-weight: 700;
}

.experiment-metric-value-white {
  color: var(--white);
  font-weight: 700;
}

/* Section Gradients */
.section-gradient-reverse {
  background: linear-gradient(135deg, #0a1929 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6rem 0;
}

/* UA Section */
.ua-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 6rem 0;
  border-top: 3px solid var(--accent-coral);
}

/* List Styles */
.list-checkmark {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.list-checkmark li {
  margin-bottom: 0.5rem;
}

/* Framework Section */
.framework-features-list {
  margin-bottom: 2rem;
}

.framework-feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.framework-feature-title {
  color: var(--white);
  margin: 0;
  font-size: 1.2rem;
}

.framework-feature-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.framework-stats-box {
  background: rgba(27, 153, 139, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-teal);
}

.framework-stats-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.framework-stats-value {
  font-size: 2.5rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.framework-stats-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* Live Operations */
.event-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.event-title-large {
  color: var(--accent-coral);
  font-size: 2rem;
  margin: 0;
}

.milestone-progress {
  margin-bottom: 1.5rem;
}

.milestone-label {
  color: rgba(255, 255, 255, 0.8);
}

.milestone-percentage-teal {
  color: var(--secondary-teal);
  font-weight: 600;
}

.milestone-percentage-coral {
  color: var(--accent-coral);
  font-weight: 600;
}

/* Tech Stack */
.tech-category-title {
  color: var(--accent-coral);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.tech-category-title-teal {
  color: var(--secondary-teal);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Infrastructure Cards */
.infra-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.infra-stat-value-coral {
  font-size: 1.8rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.infra-stat-value-teal {
  font-size: 1.8rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.infra-tech-stack-box {
  background: rgba(255, 127, 80, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-coral);
}

.infra-tech-stack-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.infra-tech-stack-list {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pipeline Stages */
.pipeline-stage {
  margin-bottom: 1rem;
}

.pipeline-stage-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.pipeline-stage-time-teal {
  color: var(--secondary-teal);
  font-weight: 600;
}

.pipeline-stage-time-coral {
  color: var(--accent-coral);
  font-weight: 600;
}

.pipeline-stats-box {
  background: rgba(27, 153, 139, 0.15);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-teal);
}

.pipeline-stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.pipeline-stats-value {
  color: var(--secondary-teal);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Monitoring Section */
.monitoring-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Section Headers */
.section-header-centered {
  margin-bottom: 4rem;
  text-align: center;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* User Acquisition Cards */
.ua-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ua-card-title-coral {
  color: var(--accent-coral);
  font-size: 1.8rem;
  margin: 0;
}

.ua-card-title-teal {
  color: var(--secondary-teal);
  font-size: 1.8rem;
  margin: 0;
}

.metric-single-block {
  margin-top: 1.5rem;
}

.metric-value-xl-teal {
  font-size: 2.2rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.metric-value-xl-coral {
  font-size: 2.2rem;
  color: var(--accent-coral);
  font-weight: 700;
}

/* Additional Feature Card Variants */
.feature-title-teal {
  color: var(--secondary-teal);
  font-size: 1.5rem;
  text-align: center;
}

.metric-value-large-teal {
  margin-top: 1rem;
  font-size: 2.5rem;
  color: var(--secondary-teal);
  font-weight: 700;
  text-align: center;
}

.feature-card-hover-teal {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(27, 153, 139, 0.3);
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-hover-teal:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 153, 139, 0.6);
}

/* Metric Groups */
.metric-group-triple {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.metric-group-dual {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.metric-value-md-coral {
  font-size: 1.8rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.metric-value-md-teal {
  font-size: 1.8rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.metric-value-lg-coral {
  font-size: 2rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.metric-value-lg-teal {
  font-size: 2rem;
  color: var(--secondary-teal);
  font-weight: 700;
}

.metric-label-light {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.metric-label-light-md {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.monitoring-title {
  color: var(--secondary-teal);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.monitoring-description {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Additional Graficos Classes */
.features-grid-gap-2 {
  gap: 2rem;
}

.feature-card-hover {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-hover-onmouseover-coral {
  transform: translateY(-8px);
  border-color: rgba(255, 127, 80, 0.6);
}

.feature-card-hover-onmouseover-teal {
  transform: translateY(-8px);
  border-color: rgba(27, 153, 139, 0.6);
}
