/* ═══════════════════════════════════════
   SCROLL INDICATOR
   ═══════════════════════════════════════ */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 4.5s;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.scroll-indicator:hover {
    opacity: 0.6 !important;
}

.scroll-indicator span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(6px);
    }
}

/* ═══════════════════════════════════════
   PAGE SECTIONS — BASE
   ═══════════════════════════════════════ */
.page-section {
    position: relative;
    padding: 7rem 4rem;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ═══════════════════════════════════════
   BRIDGE SECTION
   ═══════════════════════════════════════ */
.section-bridge {
    background: linear-gradient(180deg, #050510 0%, #0a0e1a 50%, #0f172a 100%);
    color: #f8fafc;
    text-align: center;
    padding: 6rem 4rem;
}

.bridge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bridge-icon svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.7);
}

.bridge-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #818cf8 0%, #f8fafc 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bridge-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   GUARDIAN SECTION (LEFT / DARK)
   ═══════════════════════════════════════ */
.section-guardian {
    background: linear-gradient(160deg, #050510 0%, #0c1027 40%, #0f172a 100%);
    color: #f8fafc;
}

.section-guardian .section-label {
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-guardian .section-title {
    background: linear-gradient(135deg, #c7d2fe 0%, #818cf8 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-guardian .section-subtitle {
    color: #94a3b8;
}

/* ═══════════════════════════════════════
   CREATOR SECTION (RIGHT / LIGHT)
   ═══════════════════════════════════════ */
.section-creator {
    background: linear-gradient(160deg, #fffbf5 0%, #fef3e2 40%, #fff7ed 100%);
    color: #1e293b;
}

.section-creator .section-label {
    color: #d97706;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section-creator .section-title {
    background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-creator .section-subtitle {
    color: #78716c;
}

/* ═══════════════════════════════════════
   FEATURE CARDS GRID
   ═══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

/* Dark cards (Guardian) */
.section-guardian .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.section-guardian .feature-card:hover {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.1);
}

/* Light cards (Creator) */
.section-creator .feature-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(10px);
}

.section-creator .feature-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.08);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.section-guardian .card-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #818cf8;
}

.section-creator .card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    color: #d97706;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-body {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
}

.card-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

.card-detail svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════
   SECURITY SECTION
   ═══════════════════════════════════════ */
.section-security {
    background: linear-gradient(180deg, #0f172a 0%, #020617 50%, #0f172a 100%);
    color: #f8fafc;
}

.section-security .section-label {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.section-security .section-title {
    background: linear-gradient(135deg, #38bdf8 0%, #f8fafc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.security-badge {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.security-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
    color: #38bdf8;
}

.badge-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.badge-detail {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    opacity: 0.45;
}

/* ═══════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════ */
.section-pricing {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    color: #f8fafc;
}

.section-pricing .section-label {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

.section-pricing .section-title {
    background: linear-gradient(135deg, #c4b5fd 0%, #f8fafc 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.free {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.pro {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.08);
}

.pricing-card.pro::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, #6366f1, #a855f7, #f59e0b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.pricing-card.free .pricing-badge {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card.pro .pricing-badge {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    opacity: 0.75;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-card.free .pricing-features li svg {
    color: #64748b;
}

.pricing-card.pro .pricing-features li svg {
    color: #818cf8;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.pricing-card.free .pricing-cta {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.free .pricing-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.pro .pricing-cta {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.pricing-card.pro .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* ═══════════════════════════════════════
   DOWNLOAD CTA SECTION
   ═══════════════════════════════════════ */
.section-download {
    background: linear-gradient(180deg, #0f172a 0%, #050510 100%);
    color: #f8fafc;
    text-align: center;
    padding: 6rem 4rem;
}

.download-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-body {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.5);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-btn svg {
    width: 24px;
    height: 24px;
}

.download-btn .btn-label-small {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.6;
    display: block;
    text-align: left;
}

.download-btn .btn-label-large {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    text-align: left;
}

/* ═══════════════════════════════════════
   ENHANCED FOOTER
   ═══════════════════════════════════════ */
.site-footer-full {
    background: #020617;
    color: rgba(248, 250, 252, 0.5);
    padding: 4rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
}

.footer-brand p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.45);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #818cf8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
}

.footer-bottom .lang-select-footer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 250, 252, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.footer-bottom .lang-select-footer:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.3);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 4rem 1.5rem;
    }

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

    .section-bridge {
        padding: 4rem 1.5rem;
    }

    .bridge-title {
        font-size: 1.8rem;
    }

    .security-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .download-title {
        font-size: 1.8rem;
    }

    .scroll-indicator {
        display: none;
    }
}