/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #22d3ee;
    --accent-green: #10b981;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: #27272a;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--primary-light);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-signin {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-signin:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 72px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated Atom */
.atom-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 48px;
    perspective: 1000px;
}

.atom {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: atomRotate 20s linear infinite;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary-light);
    animation: nucleusPulse 2s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
    animation: orbit1 3s linear infinite;
}

.orbit-2 {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
    transform: rotateX(60deg) rotateY(20deg);
    animation: orbit2 4s linear infinite;
}

.orbit-3 {
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
    transform: rotateX(-60deg) rotateY(-20deg);
    animation: orbit3 5s linear infinite;
}

.electron {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

@keyframes atomRotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes nucleusPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes orbit1 {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

@keyframes orbit2 {
    from { transform: rotateX(60deg) rotateY(20deg) rotateZ(0deg); }
    to { transform: rotateX(60deg) rotateY(20deg) rotateZ(360deg); }
}

@keyframes orbit3 {
    from { transform: rotateX(-60deg) rotateY(-20deg) rotateZ(0deg); }
    to { transform: rotateX(-60deg) rotateY(-20deg) rotateZ(360deg); }
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -100px;
    animation: glowFloat1 8s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -200px;
    right: -100px;
    animation: glowFloat2 10s ease-in-out infinite;
}

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

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

/* Solutions Section */
.solutions {
    background: var(--bg-dark);
    text-align: center;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-light);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Platform Section */
.platform {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-text .section-title {
    text-align: left;
}

.platform-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.platform-features {
    list-style: none;
    margin-bottom: 40px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Email Preview */
.platform-visual {
    display: flex;
    justify-content: center;
}

.email-preview {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.email-header {
    background: var(--bg-card-hover);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.email-dots {
    display: flex;
    gap: 8px;
}

.email-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
}

.email-dots span:first-child { background: #ef4444; }
.email-dots span:nth-child(2) { background: #f59e0b; }
.email-dots span:last-child { background: #22c55e; }

.email-content {
    padding: 32px 24px;
}

.email-line {
    height: 12px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 16px;
}

.email-line.long { width: 100%; }
.email-line.medium { width: 75%; }
.email-line.short { width: 50%; }

.encryption-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Payment Section */
.payment-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.payment-visual {
    order: -1;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.payment-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.payment-card svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.payment-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: var(--bg-card);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .platform-text .section-title {
        text-align: center;
    }
    
    .platform-text p {
        text-align: center;
    }
    
    .platform-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .platform-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .atom-container {
        width: 150px;
        height: 150px;
    }
    
    .orbit-1, .orbit-2, .orbit-3 {
        width: 120px;
        height: 120px;
        margin-top: -60px;
        margin-left: -60px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 72px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Features Detailed */
.features-detailed {
    background: var(--bg-dark);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateX(8px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.feature-details h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-details p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Security Pillars */
.security-pillars {
    background: var(--bg-dark);
}

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

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-light);
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Security Features */
.security-features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.security-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Security Detailed */
.security-detailed {
    background: var(--bg-dark);
}

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

.security-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.security-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.security-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Certifications */
.certifications {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.cert-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Security Report */
.security-report {
    background: var(--bg-dark);
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.report-card h2 {
    margin-bottom: 12px;
}

.report-card > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.report-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.score-item {
    text-align: left;
}

.score-label {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.score-bar {
    background: var(--border);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.score-fill {
    background: var(--gradient);
    height: 100%;
    border-radius: 6px;
}

.score-value {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.security-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

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

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.price span {
    font-size: 0.5em;
    color: var(--text-secondary);
}

.price-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li .check {
    margin-right: 12px;
    font-weight: bold;
}

.pricing-features li .check:contains("✗") {
    color: var(--text-muted);
    opacity: 0.5;
}

.btn-block {
    width: 100%;
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-dark);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--bg-card-hover);
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.comparison-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Section */
.about-story {
    background: var(--bg-dark);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-values {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-team {
    background: var(--bg-dark);
}

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

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.team-member h3 {
    margin-bottom: 4px;
}

.role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-stats {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-secondary);
}

/* Help Center */
.help-search {
    margin-bottom: 60px;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

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

.category-card h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.category-card ul {
    list-style: none;
}

.category-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.category-card a:hover {
    color: var(--accent);
}

/* FAQ Accordion */
.help-faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-accordion {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.faq-accordion.active .faq-question {
    border-color: var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 20px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-secondary);
}

/* Help Contact */
.help-contact {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-section {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 8px;
    color: var(--accent-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.info-block h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.info-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-block a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.info-block a:hover {
    color: var(--accent);
}

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

.social-link {
    padding: 10px 16px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    transition: all 0.2s ease;
    text-align: center;
    flex: 1;
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

/* Status Page */
.status-section {
    background: var(--bg-dark);
}

.status-overview {
    margin-bottom: 60px;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.overall-status {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 24px 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.operational .status-dot {
    background: var(--accent-green);
}

.status-indicator.operational {
    color: var(--accent-green);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.uptime {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.service-header h3 {
    margin: 0;
}

.service-uptime {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Incidents */
.incidents-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.incidents-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.incident-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.incident-item:last-child {
    border-bottom: none;
}

.incident-date {
    font-weight: 600;
    color: var(--text-secondary);
}

.incident-details h3 {
    margin-bottom: 4px;
}

.incident-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.incident-desc {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.incident-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.incident-badge.resolved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

/* Uptime Chart */
.uptime-section {
    background: var(--bg-dark);
}

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

.uptime-month {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.uptime-month h3 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.uptime-bar-container {
    background: var(--border);
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.uptime-bar {
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 0.3s ease;
}

.uptime-percent {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* Authentication Pages */
.auth-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox input {
    cursor: pointer;
}

.forgot-password {
    color: var(--primary);
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: var(--accent);
}

.error-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    border-radius: 8px;
    color: #ef4444;
    margin-bottom: 24px;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
}

.auth-divider {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 32px 0;
}

.auth-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 24px;
}

.auth-footer a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: var(--accent);
}

/* Responsive - Contact */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-number {
        min-width: auto;
    }
    
    .security-pillars .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .incident-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .auth-card {
        padding: 32px 24px;
    }
}

/* Policy Pages */
.policy-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 60px 40px;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.policy-content ul {
    list-style: none;
    margin: 16px 0 24px 0;
    padding-left: 0;
}

.policy-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
}

.policy-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.policy-content a {
    color: var(--primary);
    transition: color 0.2s ease;
}

.policy-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.policy-date {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 40px 24px;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
}
