/*
Project Name: socpanel Landing Page
Project URI: /Users/omosayansi/Downloads/html-UI
Description: Dark-themed landing page for socpanel SMM service
Version: 1.0
Author: KaseeMoka
Author URI: https://github.com/kiongosss
Text Domain: socpanel
*/

/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --bg-dark: #0a0e1f; /* Exact dark blue from design */
    --bg-darker: #070b19; /* Darker shade for contrast */
    --bg-card: #151828; /* Card background color */
    --bg-card-transparent: rgba(21, 24, 40, 0.8); /* Semi-transparent card background */
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #2d3748;
    --blue: #4361ee;
    --green: #2ecc71;
    --purple: #9c27b0;
    --orange: #ff7f50;
    --cyan: #00cec9;
    --pink: #fd79a8;
    --gradient-primary: linear-gradient(135deg, #6c5ce7, #00cec9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

header.sticky {
    background-color: rgba(7, 11, 25, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 32px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a.active {
    color: var(--text-light);
    font-weight: 600;
}

.auth-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.auth-links .login {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links .login:hover {
    color: var(--primary-color);
}

.auth-links .signup {
    padding: 10px 24px;
    background: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.25);
}

.auth-links .signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.35);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

/* Secondary Pages Hero Section with reduced spacing */
.about-hero,
.contact-hero,
.blog-hero,
.help-hero,
.terms-hero,
.privacy-hero,
.cookies-hero,
.status-hero {
    min-height: 20vh;
    padding-top: 40px;
}

.hero .container {
    position: relative;
    max-width: 1280px;
    height: calc(100vh - 120px);
}

/* Secondary Pages Container Height */
.about-hero .container,
.contact-hero .container,
.blog-hero .container,
.help-hero .container,
.terms-hero .container,
.privacy-hero .container,
.cookies-hero .container,
.status-hero .container {
    height: auto;
    padding-bottom: 20px;
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 40px;
}

/* Secondary Pages Hero Content */
.about-hero .hero-content,
.contact-hero .hero-content,
.blog-hero .hero-content,
.help-hero .hero-content,
.terms-hero .hero-content,
.privacy-hero .hero-content,
.cookies-hero .hero-content,
.status-hero .hero-content {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Secondary Pages Heading Size */
.about-hero h1,
.contact-hero h1,
.blog-hero h1,
.help-hero h1,
.terms-hero h1,
.privacy-hero h1,
.cookies-hero h1,
.status-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Secondary Pages Subtitle */
.about-hero .hero-subtitle,
.contact-hero .hero-subtitle,
.blog-hero .hero-subtitle,
.help-hero .hero-subtitle,
.terms-hero .hero-subtitle,
.privacy-hero .hero-subtitle,
.cookies-hero .hero-subtitle,
.status-hero .hero-subtitle {
    margin-bottom: 5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: lowercase;
}

/* Responsive font size for hero heading */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.primary-btn {
    padding: 16px 32px;
    background: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
}

.secondary-btn {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.demo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-top: 20px;
}

.demo-link span {
    color: var(--text-muted);
}

.view-demo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.view-demo:hover {
    color: var(--primary-color);
}

.view-demo i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Background Gradient */
.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.bg-gradient svg {
    width: 100%;
    height: 100%;
}

/* Feature Cards */
.feature-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Hide feature cards on mobile devices */
@media (max-width: 767px) {
    .feature-cards {
        display: none !important;
    }
}

.feature-card {
    position: absolute;
    background-color: var(--bg-card-transparent);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 22px;
    width: 220px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-card .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.feature-card.left-top {
    top: 150px;
    left: 80px;
    transform: rotate(-3deg);
}

.feature-card.left-bottom {
    bottom: 150px;
    left: 100px;
    transform: rotate(3deg);
}

.feature-card.right {
    top: 150px;
    right: 80px;
    transform: rotate(3deg);
}

.feature-card.bottom-right {
    bottom: 150px;
    right: 100px;
    transform: rotate(-3deg);
}

/* Panel Preview */
.panel-preview {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
    z-index: 5;
    text-align: center;
}

.panel-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* No Code Solution Section */
.no-code {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #000000 70%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.no-code .container {
    max-width: 1200px;
    margin: 0 auto;
}

.no-code h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.no-code h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0062ff 0%, #00d2ff 100%);
    border-radius: 2px;
}

/* Feature Cards Container */
.feature-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 16px;
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    min-height: 280px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -1px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.4;
}

/* Payment logos */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.payment-logo {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: translateY(-3px);
}

.more-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Center box with speedometer */
.center-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.speedometer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.speedometer-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Flag container */
.flag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
    justify-content: center;
}

.flag {
    height: 25px;
    width: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.flag:hover {
    transform: translateY(-3px);
}

/* Feature Icons Row */
.feature-icons-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon-item {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(18, 18, 18, 0.4);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 98, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.icon {
    width: 100%;
    height: 100%;
}

.feature-icon-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.feature-icon-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 200px;
    line-height: 1.5;
}

/* Admin Panel Section */
.admin-panel {
    background-color: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.admin-panel::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.admin-panel .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-panel h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.admin-panel h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0062ff 0%, #00d2ff 100%);
    border-radius: 2px;
}

.admin-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    row-gap: 50px;
}

.admin-feature {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.admin-feature-icon {
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
}

.admin-icon {
    width: 100%;
    height: 100%;
}

.admin-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.admin-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Exclusive Access Section */
.exclusive-access {
    background-color: #000000;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.exclusive-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 100, 150, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.exclusive-access::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 150, 100, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.exclusive-access .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-label {
    color: #00CC66;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.exclusive-access h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #FFFFFF;
    line-height: 1.2;
}

.providers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
    margin-bottom: 80px;
    perspective: 1200px;
    padding: 60px 0 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.provider-card {
    background-color: #0F1722;
    border-radius: 20px;
    padding: 40px 20px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    width: 180px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg);
    overflow: visible;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.provider-card.retail {
    transform: perspective(1000px) rotateY(15deg) translateZ(-20px);
    z-index: 1;
    margin-top: 10px;
}

.provider-card.resale {
    z-index: 2;
    margin-top: -10px;
}

.provider-card.direct {
    transform: perspective(1000px) rotateY(-15deg) translateZ(-20px);
    z-index: 1;
    margin-top: 10px;
}

.provider-card:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px) translateZ(0);
    z-index: 10;
}

.provider-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.provider-icon img {
    width: 100%;
    height: 100%;
}

.provider-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -0.5px;
}

.per-thousand {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.markup-tag {
    position: absolute;
    bottom: -15px;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transform: translateY(50%);
    white-space: nowrap;
    z-index: 5;
}

.markup-high {
    background-color: #FF3333;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.markup-medium {
    background-color: #FF9933;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.markup-zero {
    background-color: #00CC66;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 204, 102, 0.3);
}

.dont-buy-tag {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(15, 23, 34, 0.8);
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.buy-now-tag {
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(15, 23, 34, 0.8);
    color: #00CC66;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.3;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.show-providers-btn {
    text-align: center;
}

.btn-show-providers {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.btn-show-providers .arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-show-providers:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-show-providers:hover .arrow-icon {
    transform: translateX(5px);
}

/* Why Socpanel Section */
.why-socpanel {
    background-color: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-socpanel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 51, 255, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.why-socpanel::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(0, 204, 102, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
    pointer-events: none;
}

.why-socpanel .section-label {
    color: #9966FF;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.why-socpanel h2 {
    color: #FFFFFF;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    width: 160px;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.feature-item:hover {
    opacity: 1;
}

.feature-icon {
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
}

.included-tag {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-item.featured {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #1E1E3E 0%, #0D0D1E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 51, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
    opacity: 1;
    transform: scale(1.05);
    border: 1px solid rgba(153, 102, 255, 0.2);
}

.feature-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(102, 51, 255, 0.2) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: -1;
}

.price-box {
    text-align: center;
    padding: 20px;
}

.price-box .price {
    font-size: 5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(to right, #FFFFFF, #9966FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(153, 102, 255, 0.3);
}

.price-label {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.price-label .highlight {
    color: #9966FF;
}

.price-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Comparison Section */
.comparison-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.comparison-box {
    background-color: #1E1E3E;
    border-radius: 16px;
    padding: 25px;
    width: 270px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 340px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.comparison-box.others {
    background-color: #1E1E3E;
}

.comparison-box.socpanel {
    background: linear-gradient(135deg, #1E1E3E 0%, #0D0D1E 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 51, 255, 0.15);
    z-index: 2;
    border-top: 3px solid #6633FF;
}

.comparison-box.socpanel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(102, 51, 255, 0.05), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.platform-logo {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 30px;
}

.platform-title {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    margin-bottom: 15px;
}

.comparison-list li {
    padding: 4px 0;
    padding-left: 26px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.3;
}

.comparison-list li.check {
    color: #00CC66;
    font-weight: 500;
    opacity: 0.95;
}

.comparison-list li.check::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #00CC66;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.comparison-list li.cross {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    opacity: 0.95;
}

.comparison-list li.cross::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #FF3333;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.progress-bar {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 12px;
}

.progress-bar img {
    max-width: 90%;
    height: 10px;
}

.benefit-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.benefit-list li::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
}

.benefit-list li.included::before {
    background-color: rgba(46, 204, 113, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232ecc71'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}

.benefit-list li.excluded::before {
    background-color: rgba(231, 76, 60, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}

/* Commission System Section */
.commission-system {
    background: linear-gradient(135deg, #0A0A1A 0%, #0D1D14 100%);
    padding: 120px 0 0;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    margin: 60px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.commission-system .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    padding-top: 40px;
}

.deposit-circle {
    width: 170px;
    height: 170px;
    background-image: url('../images/deposit-circle-bg-exact.svg');
    background-size: cover;
    border-radius: 50%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    left: 150px;
    top: -70px;
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.2);
}

.start-label {
    position: absolute;
    top: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #00CC66;
}

.deposit-amount {
    font-size: 60px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.deposit-text {
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    max-width: 150px;
}

.commission-info {
    flex: 1;
    position: relative;
    padding-right: 20px;
}

.commission-center h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    margin-top: 0;
    max-width: 500px;
}

.commission-description {
    font-size: 16px;
    color: white;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

.highlight {
    color: #00CC66;
    font-weight: 600;
    font-size: 16px;
    opacity: 1;
}

.start-button {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-size: 15px;
    margin-top: 10px;
    justify-content: center;
}

.start-button:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.arrow {
    margin-left: 8px;
    font-size: 18px;
}

.commission-wheel {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: -5px;
    overflow: hidden;
    transform: translateY(5px);
}

.commission-wheel img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Section */
.trust-section {
    background-color: #0A0A1A;
    background-image: url('../images/trust-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

.trust-section .section-label {
    color: #00CC66;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-section h2 {
    font-size: 46px;
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    line-height: 1.1;
}

.trust-section .highlight {
    color: #00CC66;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trust-stat {
    text-align: center;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #00CC66 0%, #33FFAA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: white;
    opacity: 0.8;
}

.user-avatars {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #0A0A1A;
    margin-right: -12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.more-users {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}

.join-now {
    display: inline-flex;
    align-items: center;
    color: #00CC66;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-now .arrow {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.join-now:hover .arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    padding-right: 30px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-answer {
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 100%;
        transform: none;
        top: auto;
        margin-top: 50px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .features-grid,
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* SVG Definitions */
svg {
    width: 0;
    height: 0;
    position: absolute;
}

/* SVG Gradient - Using CSS classes instead of SVG attributes */
.gradient-stop-1 {
    stop-color: var(--primary-color);
    stop-opacity: 0.25;
}

.gradient-stop-2 {
    stop-color: var(--secondary-color);
    stop-opacity: 0.25;
}

.gradient-stop-3 {
    stop-color: var(--accent-color);
    stop-opacity: 0.25;
}
