/* ===================================
   BORNEMX MARKET - Static HTML CSS
   Premium Dark Neon Forex Trading UI
   =================================== */

/* ROOT VARIABLES */
:root {
    /* Colors */
    --color-cyan-neon: #facc15;
    --color-cyan-dark: #facc15;
    --color-yellow-accent: #00d9c0;
    --color-white-main: #ffffff;
    --color-slate-secondary: #94a3b8;
    
    /* Backgrounds */
    --color-dark-primary: #020617;
    --color-dark-secondary: #020c1b;
    --color-dark-section: #031226;
    
    /* Glow Effects */
    --glow-cyan: rgba(0, 245, 212, 0.4);
    --glow-yellow: rgba(250, 204, 21, 0.4);
    
    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.05);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typography */
    --font-primary: 'Sora', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark-primary);
    color: var(--color-white-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 1024px) {
    .navbar-container {
        padding: 0 2rem;
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 245, 212, 0.3));
    transition: filter 0.3s ease;
}

.navbar.scrolled .logo-image {
    filter: drop-shadow(0 0 5px rgba(0, 245, 212, 0.2));
}

.logo-bornemx {
    color: var(--color-cyan-neon);
}

.logo-market {
    color: var(--color-white-main);
}

.navbar-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--color-slate-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cyan-neon);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-cyan-neon);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-right {
    display: none;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .navbar-right {
        display: flex;
    }
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
    z-index: 51;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle span {
    width: 1.5rem;
    height: 0.2rem;
    background-color: var(--color-cyan-neon);
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* BUTTONS */


.button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-neon-cyan {
    background-color: var(--color-cyan-neon);
    color: #000000;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
}

.btn-neon-cyan:hover {
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.4), 0 0 60px rgba(0, 245, 212, 0.2);
    transform: translateY(-2px);
}

.btn-neon-cyan:active {
    transform: translateY(0);
}

.btn-neon-yellow {
    background-color: var(--color-yellow-accent);
    color: #000000;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}

.btn-neon-yellow:hover {
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
    transform: translateY(-2px);
}

.btn-neon-yellow:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white-main);
    border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
    border-color: var(--color-cyan-neon);
    color: var(--color-cyan-neon);
}

/* HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-size: cover;
    background-position: center right;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 100% center;
    z-index: 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-dark-primary), rgba(2, 6, 23, 0.8), transparent);
    z-index: 1;
}

@media (max-width: 900px) {
    .hero {
        min-height: 60vh;
        padding: 5rem 2rem 4rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-video {
        object-position: center;
        transform: scale(1.2);
        object-fit: cover;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(2, 6, 23, 0.9) 35%,
            rgba(2, 6, 23, 0.6) 60%,
            transparent
        );
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 10vh;
        padding: 6rem 1.5rem 8rem;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .hero-video {
        object-position: 85% center; 
        transform: scale(1.3);
        object-fit: cover;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(2, 6, 23, 0.95) 40%,
            rgba(2, 6, 23, 0.7) 65%,
            transparent
        );
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: block;
    
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-white {
    color: var(--color-white-main);
    display: block;
}

.hero-title-cyan {
    color: var(--color-cyan-neon);
    display: block;
}

.hero-subtitle {
    color: var(--color-slate-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
}

/* SERVICES SECTION */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-dark-section), var(--color-dark-primary));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 3rem;
    }
    
    .services-grid .service-card:nth-child(n+5) {
        grid-column: span 1;
    }
    
    .services-grid .service-card:nth-child(5) {
        grid-column: 1;
    }
    
    .services-grid .service-card:nth-child(6) {
        grid-column: 2;
    }
    
    .services-grid .service-card:nth-child(7) {
        grid-column: 3;
    }
}

.service-card {
    background: rgba(3, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-cyan-neon);
    background: rgba(3, 18, 38, 0.8);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-cyan-neon);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-cyan-neon);
}

.find-more {
    text-align: center;
}

.find-more a {
    color: var(--color-cyan-neon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.find-more a:hover {
    text-decoration: underline;
}

/* INITIAL STATE (hidden) */
.service-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
}

/* SHOW STATE */
.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s ease;
}

/* STAGGER EFFECT (one by one animation) */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }
.service-card:nth-child(7) { transition-delay: 0.7s; }



/* PRICING SECTION */
body {
  margin: 0;
  background: #020b16;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.pricing {
  padding: 20px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: rgba(3, 18, 38, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.4s;
  position: relative;
}

/* HOVER */
.card:hover {
  transform: translateY(-10px);
  border-color: #facc15;
  box-shadow: 0 0 40px rgba(0,245,212,0.25);
}

/* ACTIVE CARD */
.card.active {
  border: 1px solid #facc15;
  box-shadow: 0 0 50px rgba(0,245,212,0.35);
  transform: scale(1.05);
}

/* BADGE */
.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #facc15;
  color: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
}

/* TEXT */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #8ea6c1;
  margin-bottom: 25px;
}

.account-availability {
    margin-bottom: 1.5rem;
}

.account-icons {
    display: flex;
    gap: 0.5rem;
}

.account-icon {
   color: #fff;
    font-size: 0.875rem;
    background-color: #0d264899;  
    padding: 5px 15px;          
    border-radius: 10px;  
}
/* ROW (IMPORTANT PART) */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* REMOVE LAST BORDER */
.row:last-child {
  border-bottom: none;
}

/* LEFT TEXT */
.row span {
  color: #8ea6c1;
}

/* RIGHT TEXT */
.row b {
  color: #ffffff;
  font-weight: 500;
}

/* HIGHLIGHT VALUE */
.row b.highlight {
  color: #facc15;
  font-weight: 600;
}



/* BUTTONS */
.btn-outline {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #facc15;
  background: transparent;
  color: #facc15;
  cursor: pointer;
  transition: 0.3s;
  margin: 30px 0 0px;
}

.btn-outline:hover {
  background: #facc15;
  color: #000;
}

/* FILLED BUTTON */
.btn-fill {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #facc15;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* DEPOSIT */
.deposit-label {
  margin-top: 25px;
  font-size: 13px;
  color: #9fb3c8;
}

.deposit {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}



.accounts-overview {
    margin-top:50px;
    text-align: center;
}

.accounts-overview a {
    color: var(--color-cyan-neon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accounts-overview a:hover {
    text-decoration: underline;
}

/* INITIAL STATE (HIDDEN) */
.card {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: all 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* STAGGER DELAY */
.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.3s; }
.card:nth-child(3) { transition-delay: 0.5s; }


/* DEPOSITS SECTION */
.deposits {
    padding: 120px 0;
    background: linear-gradient(to bottom, #020617, #010b1a);
    text-align: center;
}

/* HEADING */
.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-header p {
    color: #8aa0c3;
    font-size: 16px;
}

/* BUTTON STYLE */
.deposit-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.deposit-buttons span {
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #cbd5f5;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.deposit-buttons span:hover {
    color: var(--color-cyan-neon);
    border-color: var(--color-cyan-neon);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

/* STATS SECTION */
.stats {
    padding: 20px 0;
    background: linear-gradient(to bottom, #020617, #010b1a);
    text-align: center;
}

/* HEADING */
.stats-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 60px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ITEM */
.stat-item {
    text-align: center;
}

/* ICON */
.stat-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #facc15;
}

/* NUMBER */
.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 10px;
    text-shadow: 
      0 0 6px rgba(0, 245, 212, 0.6),
      0 0 12px rgba(0, 245, 212, 0.4);
}

/* LABEL */
.stat-label {
    font-size: 16px;
    color: #9ca3af;
}

/* FOOT NOTE */
.stats-note {
    margin-top: 50px;
    font-size: 13px;
    color: #6b7280;
}

/* PLATFORMS SECTION */
.platforms {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-dark-section), var(--color-dark-primary));
}

.platforms-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.platform-tab {
    background: rgba(3, 18, 38, 0.6);
    border: 1px solid var(--border-subtle);
    color: var(--color-slate-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.875rem;
}

.platform-tab:hover {
    border-color: var(--color-cyan-neon);
    color: var(--color-cyan-neon);
}

.platform-tab.active {
    background-color: var(--color-cyan-neon);
    color: #000000;
    border-color: var(--color-cyan-neon);
}

.badge-new {
    background-color: var(--color-yellow-accent);
    color: #000000;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.platform-content {
    background: rgba(3, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.platform-nav {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: -40px;
}

.nav-arrow {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--color-slate-secondary);
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.nav-arrow:hover {
    border-color: var(--color-cyan-neon);
    color: var(--color-cyan-neon);
}

.platform-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.platform-features li {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.platform-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-cyan-neon);
}

.platform-availability {
    margin-bottom: 1.5rem;
}

.platform-availability p {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.availability-icons {
    display: flex;
    gap: 1rem;
}

.availability-icon {
   color: #fff;
    font-size: 0.875rem;
    background-color: #0d264899;  
    padding: 6px 10px;          
    border-radius: 20px;  
}

.learn-more {
    color: var(--color-cyan-neon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    text-decoration: underline;
}

/* TRUST SECTION */
.trust {
    padding: 5rem 0;
    background-color: var(--color-dark-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    background: rgba(3, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.trust-card:hover {
    border-color: var(--color-cyan-neon);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-cyan-neon);
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-authority {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-license {
    color: var(--color-slate-secondary);
    font-size: 0.75rem;
}

/* INITIAL STATE (HIDDEN) */
.trust-card {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

/* SHOW ANIMATION */
.trust-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s ease;
}

/* STAGGER EFFECT (one by one) */
.trust-card:nth-child(1) { transition-delay: 0.1s; }
.trust-card:nth-child(2) { transition-delay: 0.2s; }
.trust-card:nth-child(3) { transition-delay: 0.3s; }
.trust-card:nth-child(4) { transition-delay: 0.4s; }

/* CTA SECTION */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-dark-section), var(--color-dark-primary));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--color-cyan-neon);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(3rem);
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

@media (min-width: 1024px) {
    .cta h2 {
        font-size: 3.75rem;
    }
}

.text-cyan {
    color: var(--color-cyan-neon);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-cyan-neon);
    margin-bottom: 0.5rem;
}

.cta-stat p {
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
}

.cta-disclaimer {
    color: var(--color-slate-secondary);
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background-color: var(--color-dark-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-slate-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-cyan-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--color-slate-secondary);
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
}

/* ANIMATIONS */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* EDUCATIONAL HUB SECTION */
.educational-hub {
    background: linear-gradient(135deg, var(--color-dark-primary) 0%, var(--color-dark-secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.educational-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 245, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.edu-slider-container {
    position: relative;
    margin-top: 3rem;
    z-index: 1;
}

.edu-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(3, 18, 38, 0.6);
    border: 1px solid rgba(0, 245, 212, 0.1);
    box-shadow: 0 0 40px rgba(0, 245, 212, 0.1);
}

.edu-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    animation: fadeIn 0.5s ease-in-out;
}

.edu-slide.active {
    display: grid;
}

@media (max-width: 768px) {
    .edu-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

.edu-slide-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.2);
}

.edu-slide-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.edu-slide-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.edu-slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white-main);
    letter-spacing: -0.02em;
}

.edu-slide-content p {
    font-size: 0.95rem;
    color: var(--color-slate-secondary);
    line-height: 1.6;
}

.edu-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.edu-features li {
    color: var(--color-cyan-neon);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.edu-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.edu-nav-btn {
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    color: var(--color-cyan-neon);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-nav-btn:hover {
    background: var(--color-cyan-neon);
    color: var(--color-dark-primary);
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.4);
}

.edu-dots {
    display: flex;
    gap: 0.75rem;
}

.edu-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 212, 0.3);
}

.edu-dot.active {
    background: var(--color-cyan-neon);
    box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
    width: 30px;
    border-radius: 5px;
}

.edu-dot:hover {
    background: rgba(0, 245, 212, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

