/* ===== CAPI Gateway Landing Page Styles ===== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Facebook Brand Colors */
    --facebook-blue: #1877F2;
    --facebook-dark: #0d1421;
    --facebook-light: #42a5f5;
    
    /* Main Color Palette */
    --primary-color: #1877F2;
    --secondary-color: #42a5f5;
    --accent-color: #00d4aa;
    --success-color: #42d392;
    --warning-color: #ffab00;
    --error-color: #ff5252;
    
    /* Background Colors */
    --bg-primary: #0a0e27;
    --bg-secondary: #151a3a;
    --bg-card: #1e2441;
    --bg-hover: #252b4f;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-muted: #8a8fa3;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    
    /* Effects */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    --shadow-primary: 0 4px 20px rgba(24, 119, 242, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 40px rgba(24, 119, 242, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 20px;
    --radius-full: 50px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(24, 119, 242, 0.2);
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 14, 39, 0.98);
    box-shadow: var(--shadow-card);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    gap: 0.5rem;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(24, 119, 242, 0.1);
}

.cta-button {
    background: var(--gradient-primary) !important;
    color: white !important;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.8rem 1.5rem !important;
    box-shadow: var(--shadow-primary);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.code-grid {
    background-image: 
        linear-gradient(rgba(24, 119, 242, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 119, 242, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

.floating-icons {
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--accent-color), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--secondary-color), transparent),
        radial-gradient(1px 1px at 10% 80%, var(--success-color), transparent);
    background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px;
    width: 100%;
    height: 100%;
    animation: iconFloat 15s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    color: var(--accent-color);
    border-right: 3px solid var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--accent-color); }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-medium);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(24, 119, 242, 0.2);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-small);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.sidebar-item.active {
    background: rgba(24, 119, 242, 0.2);
    color: var(--primary-color);
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dashboard-card {
    background: rgba(24, 119, 242, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-small);
    text-align: center;
}

.card-value {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.dashboard-chart {
    background: rgba(24, 119, 242, 0.05);
    border-radius: var(--radius-small);
    padding: 1rem;
    height: 80px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: chartGrow 1s ease 1s both;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(24, 119, 242, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

/* ===== ADMIN SECTION ===== */
.admin-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.admin-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.admin-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.admin-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.admin-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.admin-feature-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.admin-feature-content ul {
    list-style: none;
    padding: 0;
}

.admin-feature-content li {
    color: var(--text-muted);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.admin-feature-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.admin-preview {
    position: relative;
}

.admin-window {
    background: var(--bg-card);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.admin-header {
    background: var(--bg-secondary);
    padding: 1rem;
    border-bottom: 1px solid rgba(24, 119, 242, 0.2);
}

.admin-nav {
    display: flex;
    gap: 1rem;
}

.admin-nav-item {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.admin-nav-item.active {
    background: rgba(24, 119, 242, 0.2);
    color: var(--primary-color);
}

.admin-content {
    padding: 1.5rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(24, 119, 242, 0.05);
    padding: 1rem;
    border-radius: var(--radius-medium);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-chart-area {
    background: rgba(24, 119, 242, 0.05);
    border-radius: var(--radius-medium);
    padding: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h5 {
    color: var(--text-primary);
    margin: 0;
}

.chart-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-chart {
    height: 60px;
    background: rgba(24, 119, 242, 0.1);
    border-radius: var(--radius-small);
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    animation: chartLine 2s ease infinite;
}

@keyframes chartLine {
    0% { transform: translateY(-50%) scaleX(0); }
    50% { transform: translateY(-50%) scaleX(1); }
    100% { transform: translateY(-50%) scaleX(0); }
}

/* ===== TECHNICAL SECTION ===== */
.technical-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-large);
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tech-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tech-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(24, 119, 242, 0.05);
    border-radius: var(--radius-small);
    transition: var(--transition-fast);
}

.tech-item:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateX(5px);
}

.tech-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.tech-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.architecture-diagram {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-large);
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.architecture-diagram h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.diagram-layer {
    background: rgba(24, 119, 242, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    border: 1px solid rgba(24, 119, 242, 0.3);
    text-align: center;
}

.diagram-layer h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.diagram-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.diagram-items span {
    background: rgba(24, 119, 242, 0.2);
    padding: 0.5rem;
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.diagram-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.diagram-arrow.external {
    transform: rotate(0deg);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== DEMO SECTION ===== */
.demo-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-features h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.demo-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.demo-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.demo-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demo-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-large);
    text-align: center;
    border: 1px solid rgba(24, 119, 242, 0.2);
    box-shadow: var(--shadow-card);
}

.demo-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.demo-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

.demo-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-reason {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-reason i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-reason h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-reason p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-section {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-large);
    border: 1px solid rgba(24, 119, 242, 0.2);
    box-shadow: var(--shadow-card);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(24, 119, 242, 0.3);
    padding: 1rem 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231877F2"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
    position: relative;
}

.btn-loading {
    position: absolute;
    opacity: 0;
    transition: var(--transition-fast);
}

.btn.loading .btn-text,
.btn.loading .btn-icon {
    opacity: 0;
}

.btn.loading .btn-loading {
    opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(24, 119, 242, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(24, 119, 242, 0.2);
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content,
    .admin-showcase,
    .demo-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .technical-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .diagram {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
    }
    
    .diagram-arrow.external {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 2rem;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .tech-category,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .demo-box {
        padding: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== PRICING PAGE STYLES ===== */
.pricing-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.pricing-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    background: var(--bg-card);
    padding: 0.75rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle span {
    font-weight: 500;
    color: var(--text-primary);
}

.pricing-toggle .discount {
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--facebook-blue);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--facebook-light);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--facebook-blue);
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--facebook-blue);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-features li i {
    color: var(--success-color);
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
}

.pricing-features li.disabled i {
    color: var(--error-color);
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 600;
}

.custom-plan {
    background: linear-gradient(135deg, var(--facebook-blue), var(--facebook-light));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.custom-plan-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.custom-plan-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.custom-plan-content .btn {
    background: white;
    color: var(--facebook-blue);
    border: none;
    font-weight: 600;
}

.custom-plan-content .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(24, 119, 242, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--facebook-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(24, 119, 242, 0.02);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--facebook-blue), var(--facebook-light));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--facebook-blue);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .custom-plan {
        padding: 2rem;
    }
    
    .custom-plan-content h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-toggle {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== WHITE LABELING STYLES ===== */
.white-label-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.white-label-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.white-label-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.white-label-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.white-label-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--facebook-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.white-label-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.white-label-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.white-label-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.white-label-card li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.white-label-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.white-label-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--facebook-blue));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.white-label-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.white-label-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.white-label-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.white-label-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
}

.white-label-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.white-label-buttons .btn-secondary:hover {
    background: white;
    color: var(--facebook-blue);
}

/* Responsive Design for White Labeling */
@media (max-width: 768px) {
    .white-label-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .white-label-card {
        padding: 2rem;
    }
    
    .white-label-cta {
        padding: 2rem;
    }
    
    .white-label-cta h3 {
        font-size: 1.5rem;
    }
    
    .white-label-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .white-label-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* ===== COMPARISON TABLE STYLES ===== */
.comparison-table {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.table-container {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.comparison-table-content {
    width: 100%;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table-content th,
.comparison-table-content td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(24, 119, 242, 0.1);
}

.comparison-table-content th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table-content th.featured {
    background: var(--accent-color);
    color: var(--bg-primary);
}

.comparison-table-content .feature-column {
    text-align: left;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table-content .feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table-content td.featured {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-color);
    font-weight: 600;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--error-color) !important;
}

/* ===== TESTIMONIALS STYLES ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffab00;
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== ENTERPRISE FEATURES STYLES ===== */
.enterprise-features-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.enterprise-feature {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.enterprise-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.1), transparent);
    transition: var(--transition-slow);
}

.enterprise-feature:hover::before {
    left: 100%;
}

.enterprise-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.enterprise-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-primary);
}

.enterprise-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.enterprise-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.enterprise-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-feature li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.enterprise-feature li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .comparison-table-content th,
    .comparison-table-content td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-feature {
        padding: 2rem;
    }
}

/* ===== FEATURES PAGE STYLES ===== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, 
        rgba(24, 119, 242, 0.08) 0%, 
        rgba(0, 212, 170, 0.12) 25%,
        rgba(24, 119, 242, 0.06) 50%, 
        rgba(0, 212, 170, 0.10) 75%,
        rgba(24, 119, 242, 0.08) 100%);
    z-index: -1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(24, 119, 242, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.parallax-bg .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(24, 119, 242, 0.03) 0%, 
        rgba(0, 212, 170, 0.05) 50%, 
        rgba(24, 119, 242, 0.03) 100%);
    z-index: 2;
}

/* Core Features Section */
.core-features-section {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
}

.core-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(24, 119, 242, 0.05) 0%, 
        rgba(0, 212, 170, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.2);
    border-color: var(--primary-color);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    box-shadow: var(--shadow-primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-primary);
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(24, 119, 242, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Performance Section */
.performance-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.performance-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.performance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.05) 0%, 
        rgba(24, 119, 242, 0.05) 100%);
    z-index: -1;
}

.performance-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
    border-color: var(--accent-color);
}

.performance-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-accent);
}

.performance-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.performance-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.performance-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.performance-stats .stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Technical Features Section */
.technical-features-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.technical-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(24, 119, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.technical-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(24, 119, 242, 0.2);
    border-color: var(--primary-color);
}

.technical-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-primary);
}

.technical-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.technical-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.technical-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.technical-card li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.technical-card li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Admin Pages Section */
.admin-pages-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.admin-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.admin-page-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(24, 119, 242, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.admin-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(24, 119, 242, 0.05) 0%, 
        rgba(0, 212, 170, 0.05) 100%);
    z-index: -1;
}

.admin-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(24, 119, 242, 0.15);
    border-color: var(--primary-color);
}

.page-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

.admin-page-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.admin-page-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design for Features Page */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .performance-card {
        padding: 2rem;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technical-card {
        padding: 2rem;
    }
    
    .admin-pages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .admin-page-card {
        padding: 1.5rem;
    }
}

/* ===== ADMIN DEMO SECTION STYLES ===== */
.admin-demo-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.admin-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.admin-demo-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.admin-demo-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.admin-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.admin-features li {
    color: var(--text-primary);
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.admin-features li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.admin-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-mockup {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.mockup-header {
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(24, 119, 242, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28ca42;
}

.mockup-title {
    color: var(--text-primary);
    font-weight: 600;
}

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 200px;
    background: var(--bg-secondary);
    padding: 1.5rem 0;
    border-right: 1px solid rgba(24, 119, 242, 0.1);
}

.sidebar-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(24, 119, 242, 0.1);
    color: var(--primary-color);
}

.mockup-main {
    flex: 1;
    padding: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(24, 119, 242, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input select {
    cursor: pointer;
}

.form-input textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FLOATING SOCIAL MEDIA ICONS ===== */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social-item {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(24, 119, 242, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.floating-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.floating-social-item:hover::before {
    opacity: 1;
}

.floating-social-item:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
    border-color: var(--primary-color);
}

.floating-social-item i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.floating-social-item:hover i {
    color: white;
}

/* Specific colors for each social platform */
.floating-social-item.facebook:hover {
    background: #1877f2;
}

.floating-social-item.twitter:hover {
    background: #1da1f2;
}

.floating-social-item.linkedin:hover {
    background: #0077b5;
}

.floating-social-item.github:hover {
    background: #333;
}

.floating-social-item.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-social-item.telegram:hover {
    background: #0088cc;
}

/* Tooltip */
.floating-social-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.floating-social-item::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid var(--bg-card);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.floating-social-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design for Floating Social */
@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        gap: 12px;
    }
    
    .floating-social-item {
        width: 45px;
        height: 45px;
    }
    
    .floating-social-item i {
        font-size: 1.1rem;
    }
    
    .floating-social-item::after {
        display: none; /* Hide tooltips on mobile */
    }
}

@media (max-width: 480px) {
    .floating-social {
        right: 10px;
        gap: 10px;
    }
    
    .floating-social-item {
        width: 40px;
        height: 40px;
    }
    
    .floating-social-item i {
        font-size: 1rem;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .admin-demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mockup-content {
        flex-direction: column;
    }
    
    .mockup-sidebar {
        width: 100%;
        display: flex;
        padding: 1rem;
        gap: 1rem;
        overflow-x: auto;
    }
    
    .sidebar-item {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}
