/* SecureBrowse Website - Enhanced Dark Theme Styles */

:root {
    /* Colors */
    --red: #ff0000;
    --red-dark: #cc0000;
    --red-light: #ff3333;
    
    --black: #000000;
    --black-soft: #0a0a0a;
    --dark: #111111;
    --dark-grey: #1a1a1a;
    --grey: #2a2a2a;
    --grey-light: #3a3a3a;
    --silver: #999999;
    --silver-light: #bbbbbb;
    --white: #ffffff;
    
    --green: #00ff41;
    --green-dark: #00cc33;
    
    --border: #2a2a2a;
    --border-light: #3a3a3a;
    
    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-red: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.8);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.9);
    --shadow-glow: 0 0 20px rgba(255,0,0,0.3);
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Icon Styles */
.badge-icon {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.hero-feature-icon {
    font-size: 20px;
    color: var(--green);
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.btn-icon {
    font-size: 20px;
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.guarantee-icon {
    font-size: 24px;
    color: var(--green);
    vertical-align: middle;
    margin-right: 8px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feature-card:hover .feature-icon::before {
    width: 100px;
    height: 100px;
}

.feature-icon i {
    font-size: 36px;
    color: var(--red);
    z-index: 1;
    position: relative;
}

.feature-check {
    font-size: 20px;
    color: var(--green);
    vertical-align: middle;
    margin-right: 8px;
}

.security-icon {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
}

.logo-version {
    font-size: 11px;
    color: var(--silver);
    background: var(--grey);
    padding: 2px 6px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--silver-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(-45deg, #000000, #1a0000, #000000, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,0,0,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,0,0,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red-light);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 0, 0, 0.2); }
    to { box-shadow: 0 0 20px rgba(255, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.2); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--silver-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--silver);
    margin-top: 8px;
}

.hero-description {
    font-size: 18px;
    color: var(--silver-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--silver-light);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-price {
    font-size: 14px;
    color: var(--silver);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--green);
}

/* Hero element transitions for JS animations */
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-features,
.hero-cta,
.hero-guarantee {
    transition: all 0.8s ease-out;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--white);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--grey);
    border-color: var(--grey-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--grey);
    border-color: var(--grey-light);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from { transform: rotate(0turn); }
    to { transform: rotate(1turn); }
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: var(--gradient-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.proof-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.proof-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.proof-item:hover .proof-number {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.proof-label {
    font-size: 14px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--silver-light);
}

/* Section visibility animations */
section {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--black);
    background-attachment: fixed;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--red), transparent, var(--red));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: rgba(255, 0, 0, 0.2);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--silver-light);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--gradient-dark);
    background-attachment: fixed;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--border-light);
    display: none;
}

@media (min-width: 768px) {
    .step-card:not(:last-child)::after {
        display: block;
    }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: var(--silver-light);
    line-height: 1.8;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--black);
    background-attachment: fixed;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--red);
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

/* Remove the rotating square effect */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-red);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-red);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 24px;
    color: var(--silver);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.price-period {
    font-size: 16px;
    color: var(--silver);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--silver-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--silver);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    background: rgba(255,255,255,0.05);
}

.faq-item.active {
    background: rgba(255,255,255,0.05);
    border-left-color: var(--red);
    transform: translateX(10px) !important;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--silver-light);
    line-height: 1.8;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.community-card {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    transition: all 0.3s ease;
}

.community-card:hover {
    border-color: #5865F2;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.1);
}

.community-icon-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.community-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.community-card:hover .community-icon-wrapper::before {
    opacity: 0.3;
}

.community-icon-wrapper i {
    font-size: 60px;
    color: #5865F2;
}

.community-info {
    flex: 1;
    text-align: left;
}

.community-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.community-description {
    font-size: 16px;
    color: var(--silver-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.community-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--silver);
}

.stat-item i {
    color: #5865F2;
    font-size: 16px;
}

.community-card .btn {
    background: #5865F2;
    border: none;
}

.community-card .btn:hover {
    background: #7289DA;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.community-card .btn i {
    font-size: 20px;
}

/* Nav Discord Link - Simplified */
.nav-discord {
    color: #5865F2 !important;
    font-weight: 600;
}

.nav-discord:hover {
    color: var(--white) !important;
}

.nav-discord i {
    font-size: 16px;
    margin-right: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .community-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .community-info {
        text-align: center;
    }
    
    .community-stats {
        justify-content: center;
    }
    
    .community-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .community-icon-wrapper i {
        font-size: 48px;
    }
}

/* CTA Section - update position */
.cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, var(--dark-grey) 0%, var(--black) 100%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--silver-light);
    margin-bottom: 32px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--green);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    font-size: 14px;
    color: var(--silver);
    margin-top: 16px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    display: block;
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
    color: var(--silver);
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: radial-gradient(ellipse at center, var(--dark-grey) 0%, var(--black) 100%);
}

.success-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 50%;
    margin-bottom: 32px;
}

.success-icon {
    animation: checkmark 0.6s ease-out;
}

@keyframes checkmark {
    0% {
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
    }
    100% {
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.success-message {
    font-size: 18px;
    color: var(--silver-light);
    margin-bottom: 40px;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.detail-card {
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

.detail-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.next-steps {
    list-style: none;
    counter-reset: steps;
}

.next-steps li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--silver-light);
    counter-increment: steps;
}

.next-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient-red);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-list {
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--silver-light);
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--red);
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.success-footer {
    font-size: 13px;
    color: var(--silver);
}

.success-footer a {
    color: var(--red);
    text-decoration: none;
}

.success-footer a:hover {
    text-decoration: underline;
}

/* Loading State */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Card animations */
.feature-card,
.step-card,
.pricing-card,
.faq-item {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        white-space: normal;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-card::after {
        display: none;
    }
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(255, 0, 0, 0.3);
    color: var(--white);
}

/* Add this CSS to your existing style.css file */

/* macOS Notice */
.macos-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-light);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.macos-notice:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.macos-notice i {
    font-size: 18px;
    color: var(--white);
}