/* ==========================================================================
   DESIGN SYSTEM - INGENIO VITAL WEBSITE
   ========================================================================== */

/* Font Families - Modern Tech & Clean Body */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Dark Tech & Vibrant Green */
  --bg-dark-primary: #0c111d;      /* Slate-black */
  --bg-dark-secondary: #0c111d;    /* Slate-black */
  --bg-card: rgba(18, 25, 41, 0.5); /* Glassmorphic card base */
  --bg-white: #ffffff;
  
  --text-light: #f8fafc;           /* Crisp slate-50 */
  --text-muted: #94a3b8;           /* Muted slate-400 */
  --text-dark: #0f172a;            /* Slate-900 */
  
  --green-primary: #22c55e;        /* Logo emerald green */
  --green-hover: #4ade80;          /* Glowing neon green */
  --green-dark: #15803d;           /* Rich forest green */
  --green-glow: rgba(34, 197, 94, 0.15);
  
  --blue-primary: #0a1c3f;         /* Navy blue from logo text */
  --blue-glow: rgba(10, 28, 63, 0.3);
  
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(34, 197, 94, 0.3);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Animations */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 15px 35px -5px rgba(34, 197, 94, 0.25);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --blur-glass: blur(16px);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-primary);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight {
  color: var(--green-primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(34, 197, 94, 0.15);
  z-index: -1;
}

/* Buttons */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  background-color: var(--green-primary);
  color: var(--bg-dark-primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
  border: 1px solid var(--green-primary);
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
  transition: var(--transition-smooth);
}

.btn-green:hover {
  background-color: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  background-color: transparent;
  color: var(--text-light);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(7, 9, 14, 0.85);
  backdrop-filter: var(--blur-glass);
  height: 70px;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 2px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--green-primary);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text-light);
}

.nav-link.active {
  color: var(--green-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  display: flex;
  align-items: center;
  background-color: var(--bg-dark-primary);
  overflow: hidden;
}

@keyframes tech-bg-pan {
  0% {
    background-position: center, 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: center, 40px 40px, 80px 80px, 80px 80px;
  }
}

/* Background Gradients */
.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 28, 63, 0.25) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge-top svg {
  color: var(--green-primary);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Dashboard container */
.hero-dashboard {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual card styling */
.dash-card {
  position: absolute;
  width: 270px;
  background: rgba(10, 15, 26, 0.75);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  z-index: 5;
}

.dash-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(34, 197, 94, 0.08);
  z-index: 10;
}

/* Positions of staggered cards */
.card-web {
  top: 10px;
  left: -40px;
  transform: rotate(-2deg);
  animation: float-web 6s ease-in-out infinite 3s;
}

.card-trading {
  top: 140px;
  left: 50%;
  transform: translate(-50%, 0) rotate(2deg);
  animation: float-trading 6s ease-in-out infinite;
}

.card-lottery {
  bottom: 10px;
  right: -40px;
  transform: rotate(-1deg);
  animation: float-lottery 6s ease-in-out infinite 1.5s;
}

/* Animations for floating */
@keyframes float-trading {
  0%, 100% { transform: translate(-50%, 0) rotate(2deg); }
  50% { transform: translate(-50%, -10px) rotate(3deg); }
}

@keyframes float-lottery {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
}

@keyframes float-web {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Card Header */
.dash-card-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot.green { background-color: var(--green-primary); box-shadow: 0 0 8px var(--green-primary); }
.status-dot.blue { background-color: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.status-dot.purple { background-color: #a855f7; box-shadow: 0 0 8px #a855f7; }

.dash-pair {
  color: var(--text-muted);
}

.dash-badge {
  background-color: rgba(168, 85, 247, 0.1);
  color: #c084fc;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
}

/* Trading Chart */
.dash-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: draw-chart 3s ease-out forwards infinite;
}

@keyframes draw-chart {
  0% { stroke-dashoffset: 200; }
  70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

.stat-col {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.stat-val {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
}

.stat-val.green {
  color: var(--green-primary);
}

/* Lottery Card details */
.dash-numbers {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.num-ball {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
}

.num-ball.highlight-ball {
  background-color: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  color: #60a5fa;
}

.dash-progress-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.progress-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #3b82f6;
  border-radius: 10px;
}

.progress-val {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
  color: #60a5fa;
}

/* Web preview card */
.dash-web-preview {
  background: rgba(7, 9, 14, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.web-bar {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.web-bar span[class^="dot-"] {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #eab308; }
.dot-green { background-color: #22c55e; }

.web-url {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
  font-family: var(--font-body);
}

.web-body-mock {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.web-mock-hero {
  height: 30px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 4px;
}

.web-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.web-mock-grid span {
  height: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

/* ==========================================================================
   SECTIONS & SECTION HEADER
   ========================================================================== */
section {
  padding: 8rem 0;
  position: relative;
}

.section-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   NICHES SECTION (3 CORES)
   ========================================================================== */
.niches-section {
  background-color: var(--bg-dark-secondary);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.niche-card {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.niche-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-premium);
}

.niche-card:hover::before {
  opacity: 1;
}

.niche-top {
  margin-bottom: 2rem;
}

.niche-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(34, 197, 94, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 2rem;
  border: 1px solid rgba(34, 197, 94, 0.15);
  transition: var(--transition-smooth);
}

.niche-card:hover .niche-icon-box {
  background-color: var(--green-primary);
  color: var(--bg-dark-primary);
  transform: scale(1.05);
}

.niche-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.niche-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.niche-bullet-title {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.niche-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.niche-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.niche-bullet svg {
  color: var(--green-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.niche-action-btn {
  margin-top: 2.5rem;
  width: 100%;
}

/* ==========================================================================
   PHILOSOPHY (MISIÓN & VISIÓN)
   ========================================================================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: center;
}

.philo-content {
  max-width: 760px;
}

.philo-p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.philo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.philo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1.25rem;
}

.philo-card-icon {
  color: var(--green-primary);
  flex-shrink: 0;
}

.philo-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.philo-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.philo-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.philo-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.philo-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.philo-img-wrapper:hover img {
  transform: scale(1.05);
}

.philo-img-wrapper.span-2 {
  grid-column: span 2;
}

.philo-img-wrapper.span-2 img {
  height: 300px;
}

/* ==========================================================================
   WEB NICHE PORTFOLIO SHOWCASE
   ========================================================================== */
.showcase-section {
  background-color: var(--bg-dark-secondary);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-left {
  max-width: 550px;
}

.showcase-p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.showcase-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.showcase-cat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.showcase-cat:hover {
  background-color: rgba(34, 197, 94, 0.05);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

.showcase-cat-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(34, 197, 94, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

.showcase-cat-text {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
}

.showcase-right {
  position: relative;
}

.showcase-img-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}

.showcase-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.showcase-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   DEVELOPMENT PRICING PLANS
   ========================================================================== */
.pricing-container {
  margin-top: 2rem;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-premium);
}

.pricing-card.featured {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(10, 15, 26, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 197, 94, 0.05);
}

.pricing-card.featured:hover {
  border-color: var(--green-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(34, 197, 94, 0.1);
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--green-primary);
  color: var(--bg-dark-primary);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.plan-tech {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.plan-price-box {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.plan-price {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-renewal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.plan-ideal {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: left;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  text-align: left;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.plan-feature-item svg {
  color: var(--green-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.plan-feature-item.highlight-feature {
  font-weight: 700;
}

.plan-btn {
  width: 100%;
}

/* ==========================================================================
   PRICING MODAL WINDOW
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 10, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-content {
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 4rem 3rem 3rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(34, 197, 94, 0.05);
  transition: var(--transition-smooth);
  transform: scale(0.9);
  opacity: 0;
}

.modal-overlay.open {
  display: flex;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-light);
  transform: rotate(90deg);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .modal-content {
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 1rem;
  }
  
  .modal-content {
    padding: 2.5rem 1.25rem 1.5rem;
  }
}

/* Trading Modal Specific Grid */
.trading-modal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.trading-features-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 768px) {
  .trading-modal-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.contact-val {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

a.contact-val:hover {
  color: var(--green-primary);
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  backdrop-filter: var(--blur-glass);
  border: 1px solid var(--border-dark);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-dark);
  background-color: rgba(7, 9, 14, 0.4);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--green-primary);
  background-color: rgba(7, 9, 14, 0.7);
  box-shadow: 0 0 15px -3px rgba(34, 197, 94, 0.15);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
}

.form-success-msg {
  display: none;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--green-primary);
  color: var(--green-hover);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  font-size: 2rem;
  transition: var(--transition-smooth);
  animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

@keyframes whatsapp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark-primary);
  border-top: 1px solid var(--border-dark);
}

.footer .container {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-row img {
  height: 38px;
  border-radius: 2px;
}

.footer-col-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-primary);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--green-primary);
  padding-left: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-info-item svg {
  color: var(--green-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-link:hover {
  color: var(--green-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
  
  .hero-dashboard {
    transform: scale(0.8);
    transform-origin: center;
  }
  
  .niches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .niche-card {
    min-height: auto;
    padding: 2.25rem 1.5rem;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .philo-visual {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .showcase-left {
    max-width: 100%;
  }
  
  .showcase-img-box {
    max-width: 600px;
    margin: 0 auto;
  }

  .showcase-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-dark-primary);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-dark);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 8rem 0 6rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-badge-top {
    justify-content: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  

  .philo-card {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .showcase-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-img-box img {
    height: 380px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .philo-cards {
    grid-template-columns: 1fr !important;
    margin-top: 2rem;
  }

  .niches-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
