/* Base Page Shell */
.feat-page-wrapper {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.max-w-750 { max-width: 750px; }
.max-w-850 { max-width: 850px; }
.max-w-650 { max-width: 650px; }
.z-index-2 { z-index: 2; }
.bg-white-5 { background: rgba(255, 255, 255, 0.05); }
.bg-white-10 { background: rgba(255, 255, 255, 0.1); }
.bg-white-20 { background: rgba(255, 255, 255, 0.2); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.12) !important; }
.text-white-75 { color: rgba(255, 255, 255, 0.75); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.letter-spacing-1 { letter-spacing: 0.08em; }

/* Hero Section Styling */
.feat-hero-section {
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 40%, #1e3a8a 75%, #3157D5 100%);
    color: #ffffff;
    padding: 4.5rem 0 3.5rem;
}

.feat-hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.feat-hero-orb-1 {
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 70%);
}
.feat-hero-orb-2 {
    bottom: -150px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}
.feat-hero-orb-3 {
    top: 40%;
    left: 45%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
}

.feat-hero-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #e0e7ff;
    backdrop-filter: blur(10px);
}

.feat-eyebrow-accent {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 0.8rem;
}

.feat-hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
}

.feat-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a5b4fc 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feat-hero-lead {
    font-size: 1.12rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
}

.feat-glass-btn {
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-weight: 600;
    transition: all 0.22s ease-in-out;
}
.feat-glass-btn:hover,
.feat-glass-btn:focus-visible {
    color: #0f172a;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.feat-hero-metric {
    display: flex;
    flex-direction: column;
}
.feat-metric-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}
.feat-metric-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

/* Mockup Toolbar Card */
.feat-toolbar-mockup-wrapper {
    position: relative;
}
.feat-mockup-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    overflow: hidden;
}
.feat-mockup-header {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-circle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}
.mockup-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f1f5f9;
}
.feat-mockup-body {
    padding: 1.4rem;
}
.feat-mockup-toolbar-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
}
.mockup-chip {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f8fafc;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    transition: all 0.2s;
}
.mockup-chip.active {
    background: rgba(59, 130, 246, 0.25);
    border-color: #60a5fa;
    color: #ffffff;
}
.feat-mockup-demo-text {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Compliance Strip */
.feat-compliance-badge {
    font-size: 0.9rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 999px;
}

/* Filter Pills */
.feat-filter-pills .nav-link {
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}
.feat-filter-pills .nav-link.active {
    background: #3157D5;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(49, 87, 213, 0.35);
}

/* Premium Feature Cards */
.feat-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feat-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
    border-color: #cbd5e1;
}

.feat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #ffffff;
}

.icon-gradient-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-gradient-dark { background: linear-gradient(135deg, #334155, #0f172a); }
.icon-gradient-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.icon-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.icon-gradient-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.icon-gradient-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }
.icon-gradient-orange { background: linear-gradient(135deg, #f97316, #c2410c); }
.icon-gradient-slate { background: linear-gradient(135deg, #64748b, #334155); }
.icon-gradient-indigo { background: linear-gradient(135deg, #6366f1, #4338ca); }
.icon-gradient-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-gradient-green { background: linear-gradient(135deg, #10b981, #047857); }
.icon-gradient-crimson { background: linear-gradient(135deg, #ef4444, #b91c1c); }

.feat-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.65rem;
}
.feat-card-desc {
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.feat-mini-tag {
    font-size: 0.74rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

/* Deep Dive Check Icons */
.feat-check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Pillars */
.feat-pillar-card {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease;
}
.feat-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.feat-pillar-icon {
    width: 64px;
    height: 64px;
}

/* FAQ Accordion */
.feat-accordion .accordion-button {
    background: #ffffff;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}
.feat-accordion .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #3157D5;
    box-shadow: none;
}
.feat-accordion .accordion-body {
    background: #f8fafc;
    padding: 1.25rem 1.5rem;
    line-height: 1.65;
}

/* CTA Banner */
.feat-cta-banner-section {
    background: #f8fafc;
}
.feat-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3157D5 100%);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .feat-hero-section { padding: 3.5rem 0 2.5rem; }
    .feat-hero-title { font-size: 2.2rem; }
}
@media (max-width: 767px) {
    .feat-filter-pills { flex-direction: column; border-radius: 1.5rem !important; }
    .feat-filter-pills .nav-link { width: 100%; text-align: center; }
}
