/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
   :root {
    /* Premium Dark Theme Colors */
    --bg-main: #06060c;
    --bg-secondary: #0f101a;
    --text-primary: #ffffff;
    --text-secondary: #9da3b6;
    
    /* Vibrant Accents */
    --accent-blue: #00f3ff;
    --accent-purple: #8a2be2;
    --accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(20, 22, 37, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
/* * {
    margin: 0;
    padding: 4px;
    color: white;
    box-sizing: border-box;
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For fixed navbar */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-icon {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
} */
 .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;   /* 🔥 important for mobile */
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-purple);
}

.btn-outline:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--accent-blue);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
    /* background-color: white; */
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: #000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    height:80px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: #e0e0e0;
    
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    /* padding: 12rem 2rem 6rem; */
    padding: 6rem 0rem 2rem;
    /* min-height: 100vh; */
        min-height: 40vh;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(0,0,0,0) 70%);
    filter: blur(50px);
    z-index: -1;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.rocket {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content .description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.hero-content .sub-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid;
}

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.3rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    color: #00ff88;
}

/* ==========================================================================
   Hero Form
   ========================================================================== */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    padding: 2.5rem;
    position: relative;
}

.seal {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: rotateSeal 15s linear infinite;
    z-index: 2;
}

@keyframes rotateSeal {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #e0e0e0;
}

input, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    background: var(--accent-gradient);
    color: white;
    border-radius: 8px;
    padding: 1rem;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Plans Section
   ========================================================================== */
.plans-section {
    background: var(--bg-secondary);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    padding: 2rem;
    text-align: left;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-icon {
    background: var(--accent-gradient);
    color: white;
}

.plan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.plan-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Insights / Pie Chart Section
   ========================================================================== */
.insights-section {
    position: relative;
    background: var(--bg-main);
}

.insights-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* Specific height for Chart.js */
}

.insights-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.insights-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.insights-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.binary-dot { background-color: #00f3ff; }
.matrix-dot { background-color: #8a2be2; }
.gen-dot { background-color: #ff007f; }
.other-dot { background-color: #f7b731; }

.insights-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.insights-list span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Premium MLM Plans Grid
   ========================================================================== */
.premium-plans-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.premium-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-plan-card {
    background: #021a30; /* Dark deep blue from screenshot */
    border: 1px solid rgba(0, 243, 255, 0.15); /* Subtle cyan border */
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.premium-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1), inset 0 0 20px rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.4);
}

.plan-icon-wrapper {
    background: #008f8f; /* Teal/cyan color from screenshot */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.plan-icon-wrapper i {
    color: #ffffff;
    font-size: 1.5rem;
}

.premium-plan-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.premium-plan-card p {
    color: #a0aec0; /* Slightly muted white/grey */
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .premium-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-plans-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Software Plans (Circular Layout)
   ========================================================================== */
.software-plans-section {
    background: #000;
    position: relative;
    padding: 2rem 1rem; 
    overflow: hidden;
}

.layout-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
}

.side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 2;
}

.left-list {
    align-items: flex-start;
}

.right-list {
    /* align-items: flex-end; */
        align-items: flex-start;

}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.list-item:hover {
    color: var(--accent-blue);
    transform: scale(1.05);
}

.list-icon {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

/* Center Circle Graphic */
.center-circle-container {
    flex: 0 0 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, rgba(138, 43, 226, 0.1) 40%, rgba(0,0,0,0) 70%);
    filter: blur(20px);
    z-index: 0;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.circle-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.wheel-svg path {
    stroke: #000;
    stroke-width: 0.5;
    transition: transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.wheel-svg path:hover {
    filter: brightness(1.2);
}

.circle-inner {
    position: relative;
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.3);
}

.circle-inner h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

.circle-inner h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.inner-decoration {
    margin-top: 10px;
    color: var(--accent-blue);
    font-size: 1.5rem;
}
.float-icon {
    position: absolute;
    font-size: 2rem;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));

    transform: translate(-50%, -50%); /* 🔥 FIX ALIGNMENT */
}
.icon-cyan   { top: 13%; left: 45%; }
.icon-purple { top: 38%; right: 6%; }
.icon-orange { bottom: 19%; right: 25%; }
.icon-blue   { bottom: 15%; left: 32%; }
.icon-pink   { top: 48%; left: 12%; }

@media (max-width: 768px) {
    .float-icon {
        font-size: 1.2rem;
    }
}
/* ==========================================================================
   Tabbed Demo Section
   ========================================================================== */
.demo-tabs-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.demo-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.demo-tab-btn {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-tab-btn:hover {
    background: rgba(0, 243, 255, 0.1);
}

.demo-tab-btn.active {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.demo-tab-btn i {
    transition: transform 0.3s;
}

.demo-tab-btn.active i {
    transform: rotate(-180deg);
}

/* Tab Content */
.demo-content-wrapper {
    width: 100%;
}

.demo-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.demo-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.demo-title {
    font-size: 1.8rem;
    color: #1a56db; /* Deep blue from screenshot */
    margin-bottom: 1rem;
}

.demo-desc {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.demo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #555;
}

.demo-features li i {
    color: #333;
}

.highlight-feature {
    background: #1a56db;
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.btn-demo-action {
    background: #2563eb;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.btn-demo-action:hover {
    background: #1d4ed8;
    color: white;
}

.demo-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.visual-actions {
    margin-top: 2rem;
}

/* CSS Hierarchy Tree */
.css-tree {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.css-tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
}

.css-tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
}

/* Connectors */
.css-tree li::before, .css-tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid #ccc;
    width: 50%;
    height: 20px;
}

.css-tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid #ccc;
}

/* Remove connectors for single child */
.css-tree li:only-child::after, .css-tree li:only-child::before {
    display: none;
}
.css-tree li:only-child {
    padding-top: 0;
}

/* Remove left connector for first child and right for last */
.css-tree li:first-child::before, .css-tree li:last-child::after {
    border: 0 none;
}
.css-tree li:last-child::before {
    border-right: 2px solid #ccc;
    border-radius: 0 5px 0 0;
}
.css-tree li:first-child::after {
    border-radius: 5px 0 0 0;
}

/* Downward connector from parent */
.css-tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid #ccc;
    width: 0;
    height: 20px;
}

.tree-node {
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #666;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.parent-node {
    border-color: #2563eb;
    color: #2563eb;
    background: #eef2ff;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.tree-level li {
    padding: 20px 15px 0 15px; /* Spacing for horizontal layout */
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Why Us / FAQ Section
   ========================================================================== */
.whyus-section {
    background: var(--bg-main);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent-purple);
}

.faq-answer {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
    transition: all 0.3s ease-out;
    color: var(--text-secondary);
}

.faq-card.active .faq-question {
    color: var(--accent-blue);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-card.active .faq-question i {
    transform: rotate(45deg);
}

.faq-card.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
    opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #030305;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    filter: blur(40px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about p {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent-purple);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section .container,
    .insights-wrapper,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .trust-badge p {
        justify-content: center;
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    
    .form-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .layout-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .center-circle-container {
        order: -1;
    }
    
    .side-list {
        align-items: center;
        text-align: center;
    }
    
    .demo-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .demo-visual {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(6, 6, 12, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .center-circle-container {
        flex: 0 0 300px;
        height: 300px;
        transform: scale(0.8);
    }
}



/* ============================= */
/* TESTIMONIALS SLIDER */
/* ============================= */

.testimonials-section {
    padding: 40px 20px; /* reduced space */
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTestimonials 25s linear infinite;
}

.testimonial-card {
    min-width: 280px;
    max-width: 300px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-card p {
    font-size: 14px;
    color: #ccc;
    margin: 10px 0;
}

.testimonial-card h4 {
    font-size: 14px;
    color: #fff;
}

.stars {
    color: gold;
    font-size: 16px;
}

/* AUTO SCROLL */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* ============================= */
/* ZIG-ZAG FEATURES TIMELINE */
/* ============================= */

.features-timeline {
    position: relative;
    margin-top: 50px;
}

.features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 243, 255, 0.2);
    transform: translateX(-50%);
}


.feature-block {
    width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
}

/* LEFT SIDE */
.feature-block.left {
    left: 0;
    padding-right: 40px;
    justify-content: flex-end;
}

/* RIGHT SIDE */
.feature-block.right {
    left: 50%;
    padding-left: 40px;
    justify-content: flex-start;
}

/* ICON (same for both sides) */
.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 18px;
    color: #00f3ff;
}

/* TEXT */
.feature-text {
    max-width: 350px;
}

.feature-text h4 {
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #aaa;
}

/* /feature css/ */


/* ============================= */
/* MODERN MLM PLANS DESIGN */
/* ============================= */

.plans-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.plan-highlight-card {
    padding: 25px;
    border-radius: 12px;
    background: rgba(20, 22, 37, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    transition: 0.3s;
}

.plan-highlight-card:hover {
    transform: translateY(-8px);
    border-color: #00f3ff;
}

.plan-highlight-card i {
    font-size: 28px;
    color: #00f3ff;
    margin-bottom: 10px;
}

.plan-highlight-card h3 {
    margin-bottom: 8px;
}

.plan-highlight-card p {
    font-size: 14px;
    color: #aaa;
}

/* LIST STYLE */
.plans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-row {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-left: 2px solid rgba(0, 243, 255, 0.3);
    transition: 0.3s;
}

.plan-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid #00f3ff;
}

.plan-row i {
    font-size: 18px;
    color: #00f3ff;
    min-width: 25px;
}

.plan-row h4 {
    margin-bottom: 3px;
}

.plan-row p {
    font-size: 13px;
    color: #aaa;
}





/* ============================= */
/* MODERN MLM PLANS DESIGN */
/* ============================= */

.plans-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.plan-highlight-card {
    padding: 25px;
    border-radius: 12px;
    background: rgba(20, 22, 37, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    transition: 0.3s;
}

.plan-highlight-card:hover {
    transform: translateY(-8px);
    border-color: #00f3ff;
}

.plan-highlight-card i {
    font-size: 28px;
    color: #00f3ff;
    margin-bottom: 10px;
}

.plan-highlight-card h3 {
    margin-bottom: 8px;
}

.plan-highlight-card p {
    font-size: 14px;
    color: #aaa;
}

/* LIST STYLE */
.plans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-row {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-left: 2px solid rgba(0, 243, 255, 0.3);
    transition: 0.3s;
}

.plan-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid #00f3ff;
}

.plan-row i {
    font-size: 18px;
    color: #00f3ff;
    min-width: 25px;
}

.plan-row h4 {
    margin-bottom: 3px;
}

.plan-row p {
    font-size: 13px;
    color: #aaa;
}

/* ============================= */
/* MODERN PLAN CARDS GRID */
/* ============================= */

.plans-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.plan-card-modern {
    padding: 25px 20px;
    border-radius: 12px;
    background: rgba(20, 22, 37, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

/* HOVER EFFECT */
.plan-card-modern:hover {
    transform: translateY(-8px);
    border-color: #00f3ff;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

/* ICON */
.plan-card-modern i {
    font-size: 26px;
    color: #00f3ff;
    margin-bottom: 12px;
}

/* TITLE */
.plan-card-modern h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* TEXT */
.plan-card-modern p {
    font-size: 14px;
    color: #aaa;
}


/* form css */

/* ============================= */
/* WHITE HERO FORM */
/* ============================= */

.hero-form-wrapper .form-card {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    border: none !important;
    border-radius: 16px;
    padding: 25px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.hero-form-wrapper .form-card h2 {
    color: #111 !important;
}
/* normal form labels only */
.hero-form-wrapper .form-card .form-group label {
    color: #333 !important;
    font-weight: 500;
}



.hero-form-wrapper .form-card input,
.hero-form-wrapper .form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;

    background: #f5f7fa;
    border: 1px solid #ddd;
    color: #111;

    transition: 0.2s ease;
}

/* focus */
.hero-form-wrapper .form-card input:focus,
.hero-form-wrapper .form-card textarea:focus {
    background: #ffffff;
    border-color: #00f3ff;
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.1);
    outline: none;
}

/* placeholder */
.hero-form-wrapper .form-card input::placeholder,
.hero-form-wrapper .form-card textarea::placeholder {
    color: #888;
}


.hero-form-wrapper .btn-submit {
    width: 100%;
    margin-top: 10px;

    background: linear-gradient(135deg, #00f3ff, #8a2be2);
    color: #fff;

    border-radius: 8px;
    padding: 12px;

    font-weight: 600;
    transition: 0.3s;
}

.hero-form-wrapper .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.3);
}


.hero-form-wrapper .privacy-note {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.hero-form-wrapper .seal-inner {
    background: linear-gradient(135deg, #00f3ff, #8a2be2);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
}


/* checkbox */

/* checkbox label */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

/* hide default */
.custom-checkbox input {
    display: none;
}

/* custom box */
.custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    position: relative;
    background: #fff;
}

/* checked */
.custom-checkbox input:checked + .checkmark {
    background: #00f3ff;
    border-color: #00f3ff;
}

/* tick */
.custom-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 768px) {

    /* NAVBAR */
    .nav-container {
        padding: 0 10px;
        height: 60px;
    }

    .nav-links {
        gap: 1rem;
    }

    /* HERO */
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content .description,
    .hero-content .sub-description {
        text-align: center;
        font-size: 1rem;
    }

    /* STATS */
    .stats-row {
        flex-direction: column;
        gap: 10px;
    }

    /* BUTTONS */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* FORM */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }

    /* FEATURES TIMELINE */
    .features-timeline::before {
        left: 10px;
    }

    .feature-block {
        width: 100%;
        left: 0 !important;
        padding-left: 30px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }

    /* INSIGHTS */
    .insights-wrapper {
        grid-template-columns: 1fr;
    }

    /* DEMO */
    .demo-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    /* PLANS */
    .plans-grid-modern {
        grid-template-columns: 1fr;
    }

    .premium-plans-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }

    .nav-links {
        gap: 1rem;
    }
}


/* ========================================================= */
/* 🔥 FINAL RESPONSIVE + FIX PATCH (DO NOT REMOVE ANYTHING) */
/* ========================================================= */

/* Prevent overflow issues */
img {
    max-width: 100%;
    height: auto;
}

/* Fix container spacing globally */
.section-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    /* ================= NAVBAR ================= */
    .nav-container {
        height: 60px !important;
        padding: 0 10px !important;
    }

    .nav-links {
        gap: 1rem !important;
    }

    .navbar {
        padding: 0.8rem 0 !important;
    }

    /* ================= HERO ================= */
    .hero-section {
        padding: 5rem 0 2rem !important;
        min-height: auto !important;
    }

    .hero-section .container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 15px !important;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-content .description,
    .hero-content .sub-description {
        font-size: 1rem !important;
    }

    /* ================= STATS ================= */
    .stats-row {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* ================= BUTTONS ================= */
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* ================= FORM ================= */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    .form-card {
        padding: 20px !important;
    }

    /* ================= TIMELINE ================= */
    .features-timeline::before {
        left: 15px !important;
    }

    .feature-block {
        width: 100% !important;
        left: 0 !important;
        padding-left: 40px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .feature-block.left,
    .feature-block.right {
        flex-direction: row !important;
    }

    /* ================= GRIDS ================= */
    .plans-grid,
    .plans-grid-modern,
    .premium-plans-grid,
    .features-grid,
    .insights-wrapper {
        grid-template-columns: 1fr !important;
    }

    /* ================= DEMO ================= */
    .demo-card {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    /* ================= FOOTER ================= */
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    /* ================= CENTER CIRCLE FIX ================= */
    .center-circle-container {
        flex: 0 0 300px !important;
        height: 300px !important;
        transform: scale(0.85);
    }

    /* ================= TEXT FIX ================= */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }
}

/* ============================= */
/* TABLET FIX */
/* ============================= */

@media (max-width: 992px) {

    .hero-section .container,
    .insights-wrapper,
    .footer-container {
        grid-template-columns: 1fr !important;
    }

    .hero-content {
        text-align: center !important;
    }

    .stats-row {
        justify-content: center !important;
    }

    .cta-buttons {
        justify-content: center !important;
    }

    .form-card {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* ============================= */
/* DEMO SECTION MOBILE FIX */
/* ============================= */

@media (max-width: 768px) {

    /* Tabs scroll horizontally */
    .demo-tabs {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .demo-tabs::-webkit-scrollbar {
        display: none;
    }

    .demo-tab-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 12px;
        flex: 0 0 auto;
    }

    /* 🔥 MAIN FIX */
    .demo-card {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
        padding: 15px !important;
    }

    /* Info section */
    .demo-info {
        width: 100%;
    }

    /* Visual section */
    .demo-visual {
        width: 100%;
        overflow-x: auto;   /* 🔥 prevent breaking */
    }

    /* Tree fix */
    .css-tree {
        transform: scale(0.8);
        transform-origin: left top;
        width: max-content;
    }

    /* Buttons */
    .demo-actions {
        text-align: center;
    }

    .visual-actions {
        margin-top: 10px;
    }

    /* Text fix */
    .demo-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .demo-desc {
        text-align: center;
    }

    .demo-features {
        padding-left: 15px;
    }
}

/* ============================= */
/* HIDE DEMO SECTION ON MOBILE */
/* ============================= */

@media (max-width: 768px) {
    .demo-tabs-container {
        display: none !important;
    }
}