:root {
    --bg-dark: #0B0E14;
    --card-bg: rgba(18, 24, 38, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary-blue: #384C98;
    --primary-glow: #6C8DFF;
    --text-main: #F0F4FF;
    --text-sub: #94A3B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

.glow-1 {
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 141, 255, 0.15) 0%, rgba(56, 76, 152, 0.05) 70%, transparent 100%);
}

.glow-2 {
    top: 600px;
    right: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(56, 76, 152, 0.12) 0%, transparent 70%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #6C8DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #384C98 0%, #253570 100%);
    color: #FFF;
    border: 1px solid rgba(108, 141, 255, 0.3);
    box-shadow: 0 4px 20px rgba(56, 76, 152, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(108, 141, 255, 0.6);
    transform: translateY(-2px);
    border-color: rgba(108, 141, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
    background: rgba(56, 76, 152, 0.15);
    color: var(--primary-glow);
    border: 1px solid rgba(108, 141, 255, 0.2);
}

.btn-nav:hover {
    background: rgba(56, 76, 152, 0.3);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px 0;
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(56, 76, 152, 0.15);
    border: 1px solid rgba(108, 141, 255, 0.3);
    color: var(--primary-glow);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    box-shadow: 0 0 10px var(--primary-glow);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 30%, #6C8DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub, .hero-subtitle {
    font-size: 18px;
    color: var(--text-sub);
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-preview, .hero-image-wrapper {
    margin-top: 60px;
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(180deg, rgba(108, 141, 255, 0.2) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.hero-preview img, .hero-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-sub);
    font-size: 16px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(108, 141, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon, .feature-svg-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(56, 76, 152, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    margin-bottom: 20px;
}

.feature-icon-text {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(56, 76, 152, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-glow);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-sub);
    font-size: 15px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary-glow);
    box-shadow: 0 0 40px rgba(108, 141, 255, 0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-glow);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price span {
    font-size: 16px;
    color: var(--text-sub);
    font-weight: 400;
}

.pricing-features, .plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    padding: 0;
}

.pricing-features li, .plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-sub);
    font-size: 15px;
    list-style: none;
}

.pricing-features svg, .check-icon {
    color: var(--primary-glow);
    flex-shrink: 0;
    font-weight: 700;
}

.btn-pricing {
    width: 100%;
    text-align: center;
}

/* FAQ Accordion */
.faq-container, .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-sub);
    font-size: 15px;
    display: none;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-toggle {
    transition: transform 0.3s ease;
}

/* Footer */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-sub);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Checkout Page Specific Styles */
.checkout-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.selected-plan-badge {
    background: rgba(108, 141, 255, 0.15);
    color: var(--primary-glow);
    border: 1px solid rgba(108, 141, 255, 0.3);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.plan-selector-row {
    display: flex;
    gap: 12px;
}

.plan-tab-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-sub);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-tab-btn.active {
    background: rgba(56, 76, 152, 0.3);
    border-color: var(--primary-glow);
    color: var(--text-main);
}

.summary-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
}

.summary-price {
    color: var(--primary-glow);
}

.payment-tabs-header {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-sub);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-color: var(--primary-glow);
    color: var(--text-main);
    background: rgba(56, 76, 152, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.checkout-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
}

.tab-subtext {
    color: var(--text-sub);
    font-size: 14px;
    margin-bottom: 20px;
}

.crypto-currency-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.crypto-coin-btn {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    color: var(--text-sub);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.crypto-coin-btn.active {
    background: rgba(56, 76, 152, 0.3);
    border-color: var(--primary-glow);
    color: var(--text-main);
}

.wallet-address-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.wallet-label {
    display: block;
    font-size: 13px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.address-input-group {
    display: flex;
    gap: 10px;
}

.address-input-group input {
    flex: 1;
    background: rgba(18, 24, 38, 0.9);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
}

/* Fix browser autofill white background override */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #121826 inset !important;
    -webkit-text-fill-color: #F0F4FF !important;
    transition: background-color 5000s ease-in-out 0s;
}

.customer-input-box input {
    width: 100%;
    background: rgba(18, 24, 38, 0.9) !important;
    border: 1px solid var(--card-border);
    color: var(--text-main) !important;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.customer-input-box input:focus {
    border-color: var(--primary-glow);
}

.customer-input-box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.btn-copy {
    background: var(--primary-blue);
    color: #FFF;
    border: none;
}

.copy-notice-text {
    font-size: 12px;
    color: #4ADE80;
    margin-top: 6px;
    display: none;
}

.status-indicator-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(56, 76, 152, 0.1);
    border: 1px solid rgba(108, 141, 255, 0.2);
    border-radius: 12px;
    color: var(--primary-glow);
    font-weight: 600;
}

.status-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(108, 141, 255, 0.3);
    border-top-color: var(--primary-glow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.key-result-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.checkout-instructions {
    padding-left: 20px;
    color: var(--text-sub);
    line-height: 1.8;
    margin-bottom: 24px;
}

.btn-submit-order {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}
