 :root {
        --bg: #07111f;
        --bg-soft: #0d1727;
        --card: rgba(255, 255, 255, 0.06);
        --card-strong: rgba(255, 255, 255, 0.09);
        --border: rgba(255, 255, 255, 0.10);
        --text: #f8fafc;
        --text-strong: #ffffff;
        --muted: #cbd5e1;
        --muted-2: #94a3b8;
        --accent: #34d399;
        --accent-dark: #10b981;
        --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
        --radius-xl: 28px;
        --radius-lg: 20px;
        --radius-md: 16px;
        --max: 1240px;
    }

    .features-page {
        max-width: var(--max);
        margin: 0 auto;
        padding: 36px 20px 64px;
        color: var(--text);
        background: var(--bg);
        border-radius: var(--radius-xl);
    }

    .features-hero {
        position: relative;
        text-align: center;
        padding: 34px 24px;
        margin-bottom: 32px;
        border-radius: var(--radius-xl);
        background:
            radial-gradient(circle at top center, rgba(52, 211, 153, 0.12), transparent 45%),
            linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
            var(--bg-soft);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    .features-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(52, 211, 153, 0.04), transparent 38%, rgba(255,255,255,0.03));
        pointer-events: none;
    }

    .features-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(52, 211, 153, 0.14);
        color: var(--accent);
        border: 1px solid rgba(52, 211, 153, 0.25);
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.02em;
        margin-bottom: 18px;
        position: relative;
        z-index: 1;
    }

    .features-hero h1 {
        position: relative;
        z-index: 1;
        margin: 0 0 16px;
        font-size: clamp(2.1rem, 4vw, 3.35rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
        color: var(--text-strong);
    }

    .features-hero p {
        position: relative;
        z-index: 1;
        max-width: 760px;
        margin: 0 auto;
        color: var(--muted);
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .features-hero-actions {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 26px;
    }

    .features-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        padding: 12px 18px;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
        box-sizing: border-box;
    }

    .features-btn:hover {
        transform: translateY(-1px);
    }

    .features-btn-primary {
        background: var(--accent);
        color: #052e24;
        border: 1px solid transparent;
        box-shadow: 0 14px 32px rgba(16, 185, 129, 0.22);
    }

    .features-btn-primary:hover {
        background: var(--accent-dark);
        color: #031b15;
    }

    .features-btn-secondary {
        border: 1px solid var(--border);
        color: var(--text);
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(4px);
    }

    .features-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255,255,255,0.16);
    }

    .features-section {
        margin-top: 28px;
        padding: 28px 24px;
        border-radius: var(--radius-lg);
        background:
            linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015)),
            var(--bg-soft);
        border: 1px solid var(--border);
    }

    .features-section-header {
        margin-bottom: 18px;
    }

    .features-section-header h2 {
        margin: 0 0 8px;
        font-size: 1.55rem;
        letter-spacing: -0.03em;
        color: var(--text-strong);
    }

    .features-section-header p {
        margin: 0;
        color: var(--muted-2);
        line-height: 1.7;
        max-width: 760px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .feature-card {
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 22px;
        box-shadow: var(--shadow);
        transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    }

    .feature-card:hover {
        transform: translateY(-2px);
        background: var(--card-strong);
        border-color: rgba(255,255,255,0.16);
    }

    .feature-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(52, 211, 153, 0.14);
        color: var(--accent);
        border: 1px solid rgba(52, 211, 153, 0.2);
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        margin: 0 0 9px;
        font-size: 1.06rem;
        color: var(--text-strong);
        letter-spacing: -0.01em;
    }

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

    .features-highlight {
        margin-top: 36px;
        background:
            radial-gradient(circle at top right, rgba(52, 211, 153, 0.12), transparent 40%),
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
            var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        padding: 28px;
        text-align: center;
        box-shadow: var(--shadow);
    }

    .features-highlight h2 {
        margin: 0 0 10px;
        font-size: 1.6rem;
        letter-spacing: -0.03em;
        color: var(--text-strong);
    }

    .features-highlight p {
        margin: 0 auto;
        max-width: 700px;
        color: var(--muted);
        line-height: 1.8;
    }

    .features-highlight-actions {
        margin-top: 20px;
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    @media (max-width: 960px) {
        .features-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .features-page {
            padding: 24px 16px 46px;
        }

        .features-hero {
            padding: 28px 18px;
        }

        .features-section {
            padding: 22px 18px;
        }

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

        .features-hero-actions,
        .features-highlight-actions {
            flex-direction: column;
        }

        .features-btn {
            width: 100%;
        }
    }