/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #164e63 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMyIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 16px 128px;
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 128px 16px;
    }
}

.hero-content {
    text-align: center;
    margin-bottom: 80px;
}

/* Security badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    padding: 12px 24px;
    margin-bottom: 32px;
}

.security-badge svg {
    color: #67e8f9;
}

.security-badge span {
    color: #a5f3fc;
    font-weight: 500;
}

/* Hero title */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 32px;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-gradient {
    background: linear-gradient(to right, #ffffff, #a5f3fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title-accent {
    color: #67e8f9;
}

/* Hero description */
.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 896px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-highlight {
    color: #67e8f9;
    font-weight: 600;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-btn-primary {
    background: linear-gradient(to right, #06b6d4, #2563eb);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
}

.hero-btn-primary:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    transform: scale(1.05);
}

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

/* Features grid */
.features-grid {
    display: grid;
    gap: 32px;
    max-width: 1152px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    transition: all 0.3s;
    transform: scale(1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: scale(1.05);
}

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

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.75;
}

.feature-highlight {
    color: #67e8f9;
    font-weight: 600;
}

/* Security features bar */
.security-features {
    margin-top: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .security-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-feature svg {
    color: #67e8f9;
    flex-shrink: 0;
}

.security-feature-title {
    font-weight: 600;
    color: white;
}

.security-feature-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Call to action */
.hero-cta {
    text-align: center;
    margin-top: 64px;
}

.hero-cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.hero-cta-accent {
    color: #67e8f9;
}

.hero-cta-description {
    font-size: 1.25rem;
    color: #cbd5e1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-container {
        padding: 64px 16px 96px;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        gap: 16px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .security-features {
        margin-top: 60px;
        padding: 24px;
        gap: 24px;
    }

    .security-feature {
        gap: 12px;
    }

    .hero-cta {
        margin-top: 48px;
    }

    .hero-cta-title {
        font-size: 1.5rem;
    }

    .hero-cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .security-badge {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 20px;
    }

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

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .security-features {
        padding: 20px;
    }

    .security-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}