/* css/style.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --dark-color: #2d3436;
    --light-color: #f9f9f9;
    --gray-color: #636e72;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --container-width: 1200px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

body.dark-theme {
    --dark-color: #f9f9f9;
    --light-color: #1a1a2e;
    --gray-color: #b2bec3;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary, .btn-secondary, .btn-pricing {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}
.navbar 

body.dark-theme .navbar {
    background-color: rgba(26, 26, 46, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 2rem;
}

.logo-highlight {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-link {
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-hero i {
    margin-right: 10px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-orbits {
    position: relative;
    width: 400px;
    height: 400px;
}

.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.5);
}

.central-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, rgba(108, 92, 231, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px dashed rgba(108, 92, 231, 0.3);
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-2 {
    width: 220px;
    height: 220px;
    animation: orbit-rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 140px;
    height: 140px;
    animation: orbit-rotate 10s linear infinite;
}

.crypto-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: var(--shadow);
}

.orbit-1 .crypto-icon {
    top: -30px;
    left: calc(50% - 30px);
}

.orbit-2 .crypto-icon {
    top: -30px;
    right: -30px;
}

.orbit-3 .crypto-icon {
    bottom: -30px;
    left: calc(50% - 30px);
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin-top: 5px;
    animation: scroll-arrow 2s infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: rgba(108, 92, 231, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

body.dark-theme .feature-card {
    background-color: #2d2d44;
}
body.dark-theme .navbar{
    background-color: rgba(0, 0, 0, 0.95);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.feature-animation {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-chart {
    width: 100%;
    height: 60px;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.mini-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.2), transparent);
    animation: chart-shine 3s infinite;
}

.device-showcase {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.device {
    background-color: var(--dark-color);
    border-radius: 8px;
}

.device-desktop {
    width: 80px;
    height: 50px;
}

.device-tablet {
    width: 40px;
    height: 60px;
}

.device-mobile {
    width: 25px;
    height: 45px;
}

.speedometer {
    width: 100px;
    height: 50px;
    border: 5px solid var(--gray-color);
    border-top: 5px solid var(--success-color);
    border-radius: 100px 100px 0 0;
    position: relative;
}

.speedometer-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 40px;
    background-color: var(--primary-color);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    animation: speedometer-needle 3s infinite alternate;
}

.color-palette {
    display: flex;
    gap: 10px;
}

.color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.color-1 { background-color: var(--primary-color); }
.color-2 { background-color: var(--secondary-color); }
.color-3 { background-color: var(--accent-color); }
.color-4 { background-color: var(--success-color); }

.code-snippet {
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 5px;
    padding: 15px;
}

body.dark-theme .code-snippet {
    background-color: #3d3d5c;
}

.code-line {
    height: 8px;
    background-color: var(--gray-color);
    margin-bottom: 10px;
    border-radius: 2px;
}

.code-line:nth-child(1) { width: 90%; }
.code-line:nth-child(2) { width: 70%; }
.code-line:nth-child(3) { width: 80%; }

.shield {
    font-size: 3rem;
    color: var(--accent-color);
    animation: shield-pulse 2s infinite;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    overflow: hidden;
}

.demo-showcase {
    display: flex;
    gap: 50px;
    align-items: center;
}

.demo-devices {
    flex: 2;
    max-width: 100%;
}

.demo-desktop {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 15px;
    padding: 15px;
    position: relative;
    box-shadow: var(--shadow);
}

body.dark-theme .demo-desktop {
    background-color: #3d3d5c;
}

.device-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

body.dark-theme .device-screen {
    background-color: #2d2d44;
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-theme .demo-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.demo-nav-items {
    display: flex;
    gap: 20px;
}

.demo-nav-item {
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.demo-nav-item.active {
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
}

.demo-crypto-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.demo-crypto-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
}

body.dark-theme .demo-crypto-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.demo-crypto-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.demo-crypto-info {
    flex: 1;
}

.demo-crypto-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.demo-crypto-price {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.demo-crypto-change {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.positive {
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success-color);
}

.negative {
    background-color: rgba(214, 48, 49, 0.1);
    color: var(--danger-color);
}

.demo-chart-container {
    flex: 1;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.demo-chart {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.demo-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
    animation: chart-shine 3s infinite;
}

.demo-controls {
    flex: 1;
}

.control-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.control-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.control-btn {
    padding: 15px 20px;
    background-color: white;
    border: 2px solid rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

body.dark-theme .control-btn {
    background-color: #2d2d44;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.control-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.control-btn i {
    margin-right: 10px;
    color: var(--primary-color);
}

.control-info {
    background-color: rgba(108, 92, 231, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

body.dark-theme .control-info {
    background-color: rgba(108, 92, 231, 0.1);
}

/* Statistics Section */
.stats {
    padding: 100px 0;
    background-color: rgba(108, 92, 231, 0.03);
}

.stats-container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.stats-card {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

body.dark-theme .stats-card {
    background-color: #2d2d44;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-theme .stats-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
    font-size: 1.5rem;
}

.stats-update {
    font-size: 0.9rem;
    color: var(--gray-color);
    background-color: rgba(108, 92, 231, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

.stat-large {
    text-align: center;
    margin-bottom: 30px;
}

.stat-large-value {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-large-label {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.stat-large-change {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.stat-details {
    display: flex;
    justify-content: space-between;
}

.stat-detail {
    text-align: center;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.stats-visualization {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.crypto-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crypto-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.bar-container {
    height: 20px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.btc-fill {
    background-color: #f7931a;
}

.eth-fill {
    background-color: #627eea;
}

.other-fill {
    background: linear-gradient(90deg, #00cec9, #6c5ce7);
}

.market-sentiment {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

body.dark-theme .market-sentiment {
    background-color: #2d2d44;
}

.sentiment-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.sentiment-meter {
    position: relative;
    height: 40px;
    background: linear-gradient(90deg, var(--danger-color), var(--warning-color), var(--success-color));
    border-radius: 20px;
    margin-bottom: 10px;
}

.meter-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-color);
    padding: 10px;
    opacity: 0;
}

.meter-indicator {
    position: absolute;
    top: -10px;
    left: 70%;
    transform: translateX(-50%);
    transition: left 2s ease;
}

.indicator-dot {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.indicator-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* Crypto Map Section */
.crypto-map {
    padding: 100px 0;
}

.map-container {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.world-map {
    flex: 2;
    height: 400px;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.map-point::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.map-point[data-status="friendly"] {
    background-color: var(--success-color);
}

.map-point[data-status="moderate"] {
    background-color: var(--warning-color);
}

.map-point[data-status="restrictive"] {
    background-color: var(--danger-color);
}

.map-point[data-status="emerging"] {
    background-color: var(--primary-color);
}

.point-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 10px;
}

.map-point:hover .point-tooltip {
    opacity: 1;
    visibility: visible;
}

.map-legend {
    flex: 1;
}

.legend-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.friendly { background-color: var(--success-color); }
.moderate { background-color: var(--warning-color); }
.restrictive { background-color: var(--danger-color); }
.emerging { background-color: var(--primary-color); }

.legend-label {
    font-size: 0.9rem;
}

.crypto-timeline {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

body.dark-theme .crypto-timeline {
    background-color: #2d2d44;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: rgba(108, 92, 231, 0.3);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: rgba(108, 92, 231, 0.03);
}

.pricing-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

body.dark-theme .pricing-card {
    background-color: #2d2d44;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-theme .pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--gray-color);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-color);
}

.pricing-description {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.feature-item i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.feature-item i.fa-check {
    color: var(--success-color);
}

.feature-item i.fa-times {
    color: var(--gray-color);
}

.feature-item.disabled {
    color: var(--gray-color);
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pricing:hover {
    background-color: var(--primary-color);
    color: white;
}

.pricing-info {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.info-card {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

body.dark-theme .info-card {
    background-color: #2d2d44;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--gray-color);
}

.contact-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

body.dark-theme .contact-form {
    background-color: #2d2d44;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    color: var(--dark-color);
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background-color: #3d3d5c;
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 5px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-submit {
    padding: 12px 30px;
}

.btn-submit i {
    margin-right: 8px;
}

.form-agreement {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.form-agreement a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

body.dark-theme .footer {
    background-color: #0f0f1a;
}
.footer-row{
    display: flex;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.footer-logo i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 2rem;
}

.footer-description {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-actions {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-btn:hover {
    background-color: var(--accent-color);
}

.footer-btn i {
    margin-right: 5px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

body.dark-theme .modal {
    background-color: #2d2d44;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-theme .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--danger-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-message {
    font-size: 1.1rem;
    color: var(--dark-color);
}

body.dark-theme .modal-message {
    color: white;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

body.dark-theme .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

@keyframes scroll-arrow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes chart-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes speedometer-needle {
    0% { transform: translateX(-50%) rotate(-45deg); }
    100% { transform: translateX(-50%) rotate(45deg); }
}

@keyframes shield-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 50px;
    }
    
    .crypto-orbits {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    .logo{
        font-size: 16px;
    }
    .nav-link{
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .demo-showcase {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .map-container {
        flex-direction: column;
    }
    
    .pricing-cards {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-container {
        flex-direction: column;
    }
    .footer .hero-visual{
        display: none;
    }
    .nav-link,
    .logo,
    .logo i {
        font-size: 14px;
    }
    .nav-btn{
        padding: 6px 14px;
    }

}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 54px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    body.dark-theme .nav-links {
        background-color: #2d2d44;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        margin: 10px 0;
        font-size: 1.1rem;
    }
    
    .nav-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .demo-desktop {
        height: 300px;
    }
}