/* CorexHub Style Sheet - Premium White and Sky Blue Theme */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-darker: #ffffff;      /* Page Background */
    --bg-dark: #f8fafc;        /* Alternate Section Background */
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(14, 165, 233, 0.15);
    
    --primary: #0ea5e9;        /* Sky Blue */
    --primary-rgb: 14, 165, 233;
    --secondary: #0284c7;      /* Darker Sky Blue */
    --secondary-rgb: 2, 132, 199;
    --accent-pink: #38bdf8;    /* Light Sky Blue Accent */
    
    --text-main: #0f172a;      /* Dark Slate Heading */
    --text-muted: #475569;     /* Slate Body Text */
    --text-dim: #64748b;       /* Muted Gray Text */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --grad-purple: linear-gradient(135deg, #7dd3fc 0%, #0369a1 100%);
    --grad-dark: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --grad-glow: linear-gradient(90deg, #0ea5e9, #7dd3fc, #0284c7, #0ea5e9);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Box Shadows & Blurs */
    --glow-cyan: 0 4px 15px rgba(14, 165, 233, 0.2);
    --glow-purple: 0 4px 15px rgba(2, 132, 199, 0.15);
    --glow-card: 0 10px 30px rgba(15, 23, 42, 0.04);
    --glow-card-hover: 0 15px 35px rgba(15, 23, 42, 0.08);
    --blur-glass: blur(12px);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.highlight {
    color: var(--primary);
}

.text-neon {
    color: var(--secondary);
    font-weight: 700;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
    box-shadow: var(--glow-cyan), var(--glow-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--blur-glass);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--primary);
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.05);
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.05);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

/* Glow animation for primary buttons */
.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.glow-btn:hover::before {
    left: 150%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
    position: relative;
}

.header.scrolled .navbar-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
}

.logo-icon {
    font-size: 1.4rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(14, 165, 233, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(56, 189, 248, 0.04) 50%, transparent 100%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-gaming {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 850;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mockup CSS Renderings (High Fidelity Light Theme) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 420px;
}

/* Web Dashboard Mockup */
.mockup-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: var(--glow-card), 0 20px 40px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    z-index: 1;
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateZ(0);
    transition: transform 0.5s ease;
}

.mockup-dashboard:hover {
    transform: perspective(1000px) rotateY(8deg) rotateX(2deg) translateZ(10px);
}

.dashboard-header {
    background: #f8fafc;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.dashboard-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard-header .dot.red { background: #ff5f56; }
.dashboard-header .dot.yellow { background: #ffbd2e; }
.dashboard-header .dot.blue { background: #38bdf8; }

.dashboard-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-left: 12px;
    letter-spacing: 0.05em;
}

.dashboard-body {
    display: flex;
    height: 260px;
}

.dashboard-sidebar {
    width: 48px;
    background: #f1f5f9;
    border-right: 1px solid rgba(15, 23, 42, 0.05);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.dashboard-sidebar .side-item {
    font-size: 0.9rem;
    color: var(--text-dim);
    cursor: pointer;
}

.dashboard-sidebar .side-item.active {
    color: var(--primary);
}

.dashboard-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
}

.dash-row {
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.flex-between {
    justify-content: space-between;
}

.dash-text-bold {
    font-size: 0.85rem;
    font-weight: 600;
}

.dash-badge {
    font-size: 0.65rem;
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.dash-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dash-card-mini {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-mini-label {
    font-size: 0.6rem;
    color: var(--text-dim);
}

.card-mini-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.card-mini-trend {
    font-size: 0.55rem;
    font-weight: 600;
}

.card-mini-trend.positive { color: #0284c7; }

.dash-chart-placeholder {
    margin-top: auto;
}

.mini-chart {
    width: 100%;
    height: 70px;
}

/* Smartphone App Mockup (Floating Foreground Light Mode) */
.mockup-app {
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 200px;
    height: 380px;
    background: #ffffff;
    border: 6px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1), 0 0 30px rgba(14, 165, 233, 0.1);
    z-index: 2;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(4deg) translateZ(40px);
    transition: transform 0.5s ease;
}

.mockup-app:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateZ(60px);
}

.app-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.65rem;
    position: relative;
    background: #f8fafc;
}

.app-header {
    background: #ffffff;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.app-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.6rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-logo i {
    color: var(--primary);
}

.app-wallet {
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-main);
}

.app-banner {
    height: 90px;
    position: relative;
    background: linear-gradient(135deg, #0ea5e9 0%, #0c4a6e 100%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.9) 100%);
    display: none; /* Hide dark overlay */
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.banner-badge {
    background: #dcfce7;
    color: #065f46;
    font-size: 0.45rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
    width: max-content;
}

.banner-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
}

.banner-prize {
    color: #a7f3d0;
    font-weight: 600;
}

.app-tournaments-list {
    flex: 1;
    padding: 10px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-tourney-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.tourney-top {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-main);
}

.tourney-spots {
    color: var(--text-dim);
}

.tourney-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    background: #f8fafc;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.detail-cell {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 0.45rem;
    color: var(--text-dim);
}

.detail-val {
    font-weight: 700;
    font-size: 0.6rem;
    color: var(--text-main);
}

.tourney-action {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--grad-primary);
}

.app-join-btn {
    width: 100%;
    background: var(--grad-primary);
    border: none;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 5px 0;
    border-radius: 4px;
    font-size: 0.55rem;
    cursor: pointer;
}

.app-navigation {
    height: 40px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.app-navigation .nav-icon {
    font-size: 0.8rem;
    color: var(--text-dim);
    cursor: pointer;
}

.app-navigation .nav-icon.active {
    color: var(--primary);
}

/* Hero Disclaimer styling */
.hero-disclaimer {
    border-top: 1px solid var(--border-color);
    padding: 24px 0 0 0;
    margin-top: 48px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
    width: 100%;
}

.hero-disclaimer p {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   Section Header Styling
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    backdrop-filter: var(--blur-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-card);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(16,185,129,0.04), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.05), var(--glow-card-hover);
}

.service-icon {
    font-size: 2.2rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(14, 165, 233, 0.15));
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Base Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: var(--blur-glass);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow-card);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: var(--glow-card-hover);
}

/* Flagship Card (Large layout) */
.product-card.flagship {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(240,253,244,0.7) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.08);
}

.product-card.flagship:hover {
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.12);
}

.flagship-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.flagship-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.prod-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.prod-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.prod-tag {
    background: #e6fcf5;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

/* Flagship Mini Dashboard Mockup */
.mini-platform-mockup {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.mockup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    padding-bottom: 10px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.status-indicator {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-stat-box {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.04);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat-box span {
    font-size: 0.6rem;
    color: var(--text-dim);
}

.mini-stat-box strong {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* Sub grid upcoming products */
.upcoming-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card.upcoming {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.upcoming-badge {
    background: #f1f5f9;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    width: max-content;
    border: 1px solid rgba(15,23,42,0.06);
}

.product-card.upcoming .prod-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card.upcoming .prod-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.product-card.upcoming .prod-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

}

/* Custom Apps Card Spanning */
.product-card.custom-apps-card {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.6) 100%);
    border: 1px dashed rgba(14, 165, 233, 0.4);
}

.custom-apps-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.custom-apps-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-apps-text .prod-icon {
    font-size: 2.2rem;
    color: var(--primary);
}

.custom-apps-text .prod-title {
    margin-bottom: 8px;
}

.custom-apps-text .prod-desc {
    margin-bottom: 0;
}

/* ==========================================================================
   Have an Idea? Section
   ========================================================================== */
.idea-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.idea-container {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(2, 132, 199, 0.01) 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.idea-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.idea-content {
    position: relative;
    z-index: 2;
}

.idea-tagline {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.idea-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.idea-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.idea-desc {
    max-width: 800px;
    margin: 0 auto 32px auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.idea-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   Industries We Serve Section
   ========================================================================== */
.industries-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: all 0.3s ease;
}

.industry-card i {
    font-size: 1.4rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 5px rgba(14, 165, 233, 0.1));
}

.industry-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.04);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    overflow: hidden;
}

.features-glow-left {
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.features-glow-right {
    position: absolute;
    top: -10%;
    right: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-item.active {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: var(--glow-card);
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item.active .feature-item-icon {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.feature-item-text h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.feature-item.active .feature-item-text h4 {
    color: var(--primary);
}

.feature-item-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-visual {
    display: flex;
    justify-content: center;
}

.feature-display-card {
    width: 100%;
    max-width: 480px;
    height: 350px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: var(--glow-card), 0 10px 40px rgba(0, 0, 0, 0.02);
}

.feature-panel-preview {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panel-preview-header {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    padding-bottom: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.panel-wallet-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.flow-card {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-title {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.mini-app-wallet-view {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-lbl {
    font-size: 0.55rem;
    color: var(--text-dim);
}

.mini-bal {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.mini-buttons {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.mini-btn {
    flex: 1;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
    border-radius: 4px;
}

.mini-btn.deposit {
    background: var(--grad-primary);
    color: white;
}

.mini-btn.withdraw {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    color: var(--text-main);
}

.flow-arrow {
    color: var(--text-dim);
    font-size: 1.2rem;
    animation: flowPulse 2s infinite;
}

.mini-admin-req {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.req-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-main);
}

.req-info {
    font-size: 0.55rem;
    color: var(--text-dim);
}

.req-amt {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.req-status.approved {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    padding: 4px 0;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glow-card);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.05), var(--glow-card-hover);
}

.portfolio-img-placeholder {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.portfolio-img-placeholder.dark-grad-1 {
    background: linear-gradient(135deg, #e6fcf5 0%, #f1f5f9 100%);
}

.portfolio-img-placeholder.dark-grad-2 {
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.portfolio-img-placeholder.dark-grad-3 {
    background: linear-gradient(135deg, #ecfdf5 0%, #f1f5f9 100%);
}

/* Portfolio Content Previews (Light Mode layouts) */
.mockup-screen-inner {
    width: 80%;
    height: 100%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.inner-nav {
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary);
}

.inner-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    color: var(--text-main);
}

.inner-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    background: #f8fafc;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid rgba(15,23,42,0.03);
}

.inner-details-grid span {
    color: var(--text-dim);
}

.inner-details-grid strong {
    font-size: 0.6rem;
    color: var(--text-main);
}

.color-purple {
    color: var(--secondary);
}

.rules-card {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.04);
    border-radius: 4px;
    padding: 4px;
    color: var(--text-muted);
}

.rules-card ul {
    padding-left: 8px;
    list-style-type: disc;
}

.mockup-dashboard-inner {
    width: 90%;
    height: 100%;
    background: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.05);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.db-bar {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(15,23,42,0.05);
    padding-bottom: 4px;
    color: var(--text-dim);
}

.db-user {
    color: var(--text-main);
    font-weight: 600;
}

.db-matches-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-match-row {
    background: #f8fafc;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(15,23,42,0.02);
}

.db-match-row span {
    color: var(--text-main);
    font-weight: 500;
}

.db-badge-sky {
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.45rem;
    font-weight: 600;
}

.db-badge-blue {
    background: rgba(56, 189, 248, 0.1);
    color: var(--secondary);
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 0.45rem;
    font-weight: 600;
}

.db-btn-action {
    background: var(--grad-primary);
    border: none;
    color: white;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 0.45rem;
    font-weight: 600;
    cursor: pointer;
}

.mockup-wallet-inner {
    width: 80%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(15,23,42,0.05);
}

.wallet-card-fancy {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 6px;
    padding: 8px;
    font-size: 0.5rem;
    color: white;
}

.wallet-card-fancy h2 {
    font-size: 0.95rem;
    margin: 2px 0;
    color: white;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tx-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.5rem;
    border-bottom: 1px solid rgba(15,23,42,0.04);
    padding-bottom: 2px;
    color: var(--text-muted);
}

.tx-row span {
    font-weight: 500;
}

.tx-amt.negative { color: #dc2626; }
.tx-amt.positive { color: #0284c7; }

.mockup-analytics-inner {
    width: 90%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(15,23,42,0.05);
}

.an-header {
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 1px solid rgba(15,23,42,0.05);
    padding-bottom: 4px;
}

.an-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.an-box {
    background: #f8fafc;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid rgba(15,23,42,0.03);
}

.an-box span {
    font-size: 0.45rem;
    color: var(--text-dim);
}

.an-box h4 {
    font-size: 0.7rem;
    margin-top: 2px;
    color: var(--text-main);
}

.color-cyan {
    color: var(--secondary);
}

.an-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 45px;
    padding: 0 10px;
    margin-top: auto;
}

.graph-bar {
    width: 12%;
    background: var(--grad-primary);
    border-radius: 2px 2px 0 0;
}

.mockup-registration-inner {
    width: 80%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(15,23,42,0.05);
}

.reg-title {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text-main);
}

.reg-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reg-field-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reg-field-item label {
    font-size: 0.45rem;
    color: var(--text-dim);
}

.input-sim {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    padding: 4px 6px;
    color: var(--text-main);
    font-weight: 500;
}

.reg-btn-sim {
    background: var(--grad-purple);
    border: none;
    color: white;
    font-weight: 700;
    padding: 4px 0;
    border-radius: 4px;
    font-size: 0.55rem;
    margin-top: auto;
    cursor: pointer;
}

.mockup-payment-inner {
    width: 80%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(15,23,42,0.05);
}

.pay-title {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text-main);
}

.pay-modes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pay-mode-item {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.05);
    border-radius: 4px;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
}

.pay-mode-item.active {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
    font-weight: 600;
}

.pay-btn-sim {
    background: var(--grad-primary);
    border: none;
    color: white;
    font-weight: 750;
    padding: 4px 0;
    border-radius: 4px;
    font-size: 0.55rem;
    margin-top: auto;
    cursor: pointer;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

.portfolio-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 28px;
    backdrop-filter: var(--blur-glass);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--glow-card);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.04), var(--glow-card-hover);
}

/* Highlighted (Most Popular) Professional Plan style */
.pricing-card.professional {
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.professional:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.15), var(--glow-card-hover);
    border-color: var(--primary);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
}

.pricing-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 750;
    margin-bottom: 12px;
    color: var(--text-main);
}

.plan-price {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    margin-bottom: 14px;
    color: var(--text-main);
}

.pricing-card.professional .plan-price {
    color: var(--secondary);
}

.plan-price .currency {
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 2px;
}

.plan-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
}

.plan-price .separator {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 0 6px;
}

.plan-price .amount-high {
    font-size: 2.2rem;
    font-weight: 800;
}

.plan-price .plus {
    font-size: 1.8rem;
    font-weight: 700;
    margin-left: 2px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 36px;
    flex: 1;
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-dim);
    text-decoration: line-through;
}

.feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.65rem;
}

.feat-icon.checked {
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.pricing-features li.disabled .feat-icon {
    color: var(--text-dim);
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.pricing-footer {
    margin-top: auto;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.why-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: flex;
    gap: 20px;
}

.point-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.point-text h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.point-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.why-us-graphic {
    display: flex;
    justify-content: center;
}

.graphic-stats-card {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--glow-card), 0 10px 40px rgba(0,0,0,0.01);
}

.card-glow-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.metric-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-row span {
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-bar-bg {
    height: 8px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 4px;
}

.metric-val {
    align-self: flex-end;
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--glow-card);
    position: relative;
    backdrop-filter: var(--blur-glass);
}

.testi-rating {
    color: #ffbd2e;
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-main);
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-main);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding: 0 15px;
}

.slider-arrow {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.slider-arrow:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot-btn.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */
.faq-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-card);
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.03), var(--glow-card);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.faq-icon-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15,23,42,0.03);
    border: 1px solid rgba(15,23,42,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(45deg);
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: var(--blur-glass);
    box-shadow: var(--glow-card);
    color: var(--text-main);
}

.contact-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(5px);
    box-shadow: var(--glow-card-hover);
}

.contact-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-card.whatsapp .icon { background: #25d366; }
.contact-card.email .icon { background: var(--grad-primary); }
.contact-card.discord .icon { background: #5865f2; }

.contact-card .text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card .text span {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.contact-card .text strong {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* Form Styles */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: var(--blur-glass);
    box-shadow: var(--glow-card);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 750;
    color: var(--text-main);
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
    background: #ffffff;
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--text-dim);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

/* Floating labels effect */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: var(--secondary);
    background-color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(15,23,42,0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.footer-socials a:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.footer-links h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding: 30px 0;
    background: #f1f5f9;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-bottom-flex .disclaimer {
    max-width: 550px;
    text-align: right;
}

/* ==========================================================================
   Interactive Quote Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #ffffff;
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-main);
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Animations & Scroll Reveal Framework
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 6px rgba(14, 165, 233, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

@keyframes flowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* Scroll reveal trigger styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   Media Queries (Responsive Layout)
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pricing-card.professional {
        transform: scale(1);
    }
    
    .pricing-card.professional:hover {
        transform: translateY(-8px);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upcoming-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.custom-apps-card {
        grid-column: span 2;
    }
}

/* Small Tablets & Portrait Mode */
@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .features-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-visual {
        order: -1;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-graphic {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-flex .disclaimer {
        text-align: center;
    }

    .flagship-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    /* Navbar Hamburger Menu open states */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 260px;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        z-index: 999;
        
        /* Smooth dropdown scale/fade transition */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.95);
        transform-origin: top right;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
    
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-btn-hide {
        display: none;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testi-card {
        padding: 24px;
    }
    
    .testi-quote {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 24px;
    }

    .upcoming-products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 24px;
    }

    .flagship-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 16px;
        width: max-content;
    }

    .product-card.custom-apps-card {
        grid-column: span 1;
    }

    .custom-apps-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Careers Page Style Classes
   ========================================================================== */
.careers-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.openings-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.openings-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-glass);
    transition: all 0.3s ease;
    box-shadow: var(--glow-card);
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.05), var(--glow-card-hover);
}

.job-meta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-tag.remote {
    background: #e6fcf5;
    color: var(--secondary);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.job-tag.type {
    background: #f1f5f9;
    color: var(--text-dim);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.job-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 15px;
    flex-wrap: wrap;
}

.job-salary {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
}

@media (max-width: 900px) {
    .openings-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Service Partner Registration Form
   ========================================================================== */
.partner-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.partner-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--glow-card);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    transition: var(--transition-smooth);
}

.partner-form-container:hover {
    box-shadow: var(--glow-card-hover);
    border-color: rgba(14, 165, 233, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .partner-form-container {
        padding: 24px;
    }
}

.form-group select {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23475569' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}

/* Floating labels for select dropdowns */
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    color: var(--secondary);
    background-color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(15,23,42,0.05);
}

.file-group {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .file-group {
        grid-column: span 1;
    }
}

.file-label-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 64px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    background: #ffffff;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-design {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 1;
}

.file-upload-design i {
    font-size: 1.25rem;
    color: var(--primary);
}

.file-upload-wrapper.has-file {
    border-color: var(--primary);
    border-style: solid;
    background: rgba(14, 165, 233, 0.04);
}

.textarea-group {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .textarea-group {
        grid-column: span 1;
    }
}

.form-checkbox-group {
    margin: 24px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    flex-shrink: 0;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.form-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.partner-submit-message {
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.partner-submit-message.success {
    color: #059669;
}

.partner-submit-message.error {
    color: #dc2626;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-size: 36px;
    line-height: 60px;
}

/* Shining and Large X inside Brand Logo */
.shining-x {
    display: inline-block;
    font-size: 1.3em;
    font-weight: 900;
    color: var(--primary);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.7));
    margin: 0 1px;
    animation: xShine 2.5s infinite ease-in-out;
    transform-origin: center;
}

@keyframes xShine {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(14, 165, 233, 0.6));
        transform: scale(1.1) translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(14, 165, 233, 1));
        transform: scale(1.3) translateY(-1px);
    }
}

/* Mobile Landing Page Optimization */
@media (max-width: 768px) {
    .mobile-collapsed {
        display: none !important;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .hero-section {
        padding-top: 130px !important;
        padding-bottom: 60px !important;
        min-height: auto !important;
    }
    
    .section-header {
        margin-bottom: 32px !important;
    }
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-revealed {
    animation: sectionFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Show less / Expandable items styling */
.upcoming-products-grid .product-card.hidden-product {
    display: none !important;
}

.pricing-grid .pricing-card.hidden-pricing {
    display: none !important;
}

/* Route hidden state (SPA Router) */
.route-hidden {
    display: none !important;
}

/* Info Pages CSS */
.info-page-section {
    padding: 140px 0 100px 0;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    min-height: 75vh;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.info-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-content {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.info-content h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-content p {
    margin-bottom: 15px;
}

.info-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.info-content li {
    margin-bottom: 8px;
}

