/* ==========================================================================
   dissolveX HRMS - Dedicated Features Design System
   Emerald Modern SaaS Aesthetic matching Onboarding & Core Landing
   ========================================================================== */

:root {
    --feat-primary: #10b981;
    --feat-primary-dark: #059669;
    --feat-primary-deep: #0b2b20;
    --feat-primary-darker: #0c2017;
    --feat-bg-mint: #f0fdf4;
    --feat-bg-light: #f8fafc;
    --feat-bg-canvas: #eaf6f0;
    --feat-border: rgba(16, 185, 129, 0.2);
    --feat-text-dark: #0f172a;
    --feat-text-muted: #475569;
    --feat-text-subtle: #64748b;
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --shadow-card: 0 4px 20px rgba(16, 185, 129, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
    --shadow-window: 0 25px 65px -15px rgba(16, 185, 129, 0.16), 0 8px 24px rgba(15, 23, 42, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #eaf6f0;
}

body {
    font-family: var(--font-sans);
    background-color: #eaf6f0;
    background-image: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.20) 0%, rgba(230, 247, 240, 0.75) 45%, #eaf6f0 80%);
    color: var(--feat-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    letter-spacing: -0.025em;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 4px;
}

/* Universal Section Typography (Matching Landing Page) */
.feat-section-pill,
.section-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.12);
    padding: 6px 18px;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 16px;
    width: fit-content;
}

.feat-section-title {
    font-family: var(--font-sans);
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0c2017;
    letter-spacing: -1.2px;
    margin: 0 0 16px 0;
}

.feat-section-title .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.35rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 4px;
}

.feat-section-desc {
    font-family: 'Plus Jakarta Sans', var(--font-sans);
    font-size: 1.05rem;
    color: #4b6358;
    line-height: 1.65;
    letter-spacing: -0.2px;
    font-weight: 450;
    margin: 0 0 24px 0;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Core design system transitions & baseline */

/* ==========================================================================
   Transparent Navbar with Right-Side Floating Pill Capsule (Matching Screenshot)
   ========================================================================== */
.feat-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    padding: 18px 0;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feat-nav-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.12);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 12px 0;
}

.feat-nav-wrapper .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 40px !important;
}

.feat-navbar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    pointer-events: auto;
}

.feat-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 0;
}

.feat-nav-brand-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Right Translucent Pill Capsule (Screenshot style) */
.feat-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 9999px;
    padding: 5px 8px 5px 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.feat-nav-wrapper.scrolled .feat-nav-right {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(16, 185, 129, 0.28);
}

.feat-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-nav-bullet {
    width: 3px;
    height: 3px;
    background: #94a3b8;
    border-radius: 50%;
    opacity: 0.7;
    display: inline-block;
    flex-shrink: 0;
}

.feat-nav-link-btn {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 9999px;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-link-btn:hover {
    color: #047857;
    background: rgba(16, 185, 129, 0.08);
}
}

.feat-nav-drasti-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    padding: 5px 12px !important;
    border-radius: 9999px !important;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
    cursor: pointer;
    font-family: inherit;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-drasti-btn:hover {
    color: #1d4ed8 !important;
    background: rgba(37, 99, 235, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.35) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
    transform: translateY(-1px);
}
}

.drasti-sparkles-icon {
    width: 16px;
    height: 16px;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.feat-nav-drasti-btn:hover .drasti-sparkles-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.5));
}
}

/* Ensure no module pill heading appears in navbar */

.feat-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid rgba(15, 57, 43, 0.18);
    padding-left: 14px;
    margin-left: 6px;
}

.feat-btn-pill {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: inherit;
}

.feat-btn-secondary {
    background: #f1f5f9;
    color: #334155;
}

.feat-btn-primary {
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.feat-hero-section {
    position: relative;
    padding: 140px 0 80px;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

.feat-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 16px;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #064e3b;
    letter-spacing: 0.2px;
}

.feat-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.feat-hero-title {
    font-family: var(--font-heading);
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1.14;
    color: var(--feat-primary-darker);
    letter-spacing: -2px;
    margin-bottom: 22px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.feat-hero-title .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 4.6rem;
    color: #116949;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 6px;
}

.feat-hero-desc {
    font-size: 1.15rem;
    color: var(--feat-text-muted);
    line-height: 1.65;
    max-width: 740px;
    margin: 0 auto 36px;
}

/* Hero CTA Action Buttons (Matching Screenshot) */
.feat-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.feat-hero-btn-primary {
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 9999px;
    font-size: 1.0rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
    font-family: inherit;
    transition: none !important;
    transform: none !important;
}

.feat-hero-btn-secondary {
    background: #ffffff;
    color: #0c2017;
    border: 1px solid #e2e8f0;
    padding: 13px 28px;
    border-radius: 9999px;
    font-size: 1.0rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    font-family: inherit;
    transition: none !important;
    transform: none !important;
}

/* ==========================================================================
   Hero Interactive Studio Outbox & Window (Matching Onboarding Studio)
   ========================================================================== */
.feat-mockup-wrapper,
.onb-hero-mockup-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    padding: 34px 28px 0;
    /* 0 bottom padding so mockup sits flush against bottom border */
    background-color: #e2f4ea;
    background-image: none;
    background-size: cover;
    background-position: center top;
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.18), 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    /* Mockup touches the bottom flush */
    justify-content: center;
    overflow: hidden;
    min-height: 480px;
    transition: none !important;
}

.feat-mockup-window {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 57, 43, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

.feat-mockup-wrapper .feat-mockup-window,
.off-hero-scenic-frame .feat-mockup-window,
.feat-mockup-wrapper .onb-hero-mockup-card,
.onb-hero-mockup-wrapper .onb-hero-mockup-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
    background: #ffffff;
    box-shadow: 0 -12px 35px rgba(15, 57, 43, 0.09);
}

.off-section-scenic-frame {
    background-image: none;
    background-size: cover;
    background-position: center top;
    border-radius: 24px;
    padding: 34px 28px 0;
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.18), 0 10px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 440px;
}

.feat-section-scenic-frame>*:last-child,
.off-section-scenic-frame>*:last-child {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.feat-studio-topbar {
    background: linear-gradient(180deg, #fbfdfc 0%, #f1f5f3 100%);
    border-bottom: 1px solid rgba(15, 57, 43, 0.09);
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.feat-studio-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-studio-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}

.feat-studio-dot.red {
    background: #ff5f56;
    border: 1px solid #e0443e;
}

.feat-studio-dot.yellow {
    background: #ffbd2e;
    border: 1px solid #dea123;
}

.feat-studio-dot.green {
    background: #27c93f;
    border: 1px solid #1aab29;
}

.feat-studio-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
}

.feat-bc-sep {
    color: #cbd5e1;
    font-weight: 400;
}

.feat-bc-current {
    color: #0b2b20;
    font-weight: 700;
}

.feat-studio-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-studio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: 9999px;
}

.feat-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.feat-studio-encryption-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 9999px;
}

/* Studio Grid Layout */
.feat-studio-grid {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 460px;
    background: #ffffff;
}

/* Left Sidebar */
.feat-studio-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
}

.feat-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.feat-sidebar-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
}

.feat-sidebar-edit-btn {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: default;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feat-sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: default;
    text-align: left;
}

.feat-sidebar-nav-item.completed {
    color: #334155;
}

.feat-sidebar-nav-item.completed .feat-item-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
}

.feat-sidebar-nav-item .feat-item-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #475569;
}

.feat-sidebar-nav-item.active {
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.25);
    color: #065f46;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.feat-item-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    color: #047857;
    background: #ecfdf5;
    padding: 2px 7px;
    border-radius: 9999px;
}

.feat-item-active-dot {
    margin-left: auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
}

.feat-sidebar-toggle-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.feat-toggle-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.feat-toggle-sub {
    font-size: 0.7rem;
    color: #64748b;
    display: block;
}

/* Switch Slider */
.feat-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

.feat-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.feat-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #10b981;
    transition: 0.25s;
    border-radius: 9999px;
}

.feat-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 18px;
    bottom: 3px;
    background-color: #ffffff;
    transition: 0.25s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Right Main Workspace */
.feat-studio-main {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.feat-main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.feat-main-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px;
}

.feat-main-sub {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.feat-main-header-badge {
    background: #f1f5f9;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    flex-shrink: 0;
}

/* Studio Table */
.feat-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 24px;
}

.feat-studio-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.86rem;
}

.feat-studio-table thead th {
    background: #f8fafc;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 10px 14px;
    text-align: left;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.feat-studio-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.feat-task-name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feat-doc-type-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-doc-type-icon.pdf {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fee2e2;
}

.feat-doc-type-icon.doc {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #d1fae5;
}

.feat-doc-type-icon.edu {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

.feat-doc-type-icon.policy {
    background: #fdf4ff;
    color: #a855f7;
    border: 1px solid #f5d0fe;
}

.feat-doc-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

.feat-doc-meta {
    font-size: 0.74rem;
    color: #64748b;
    display: block;
}

.feat-tag-type {
    font-size: 0.74rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
}

.feat-task-count-pill {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.feat-status-pill {
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.feat-status-done {
    background: #ecfdf5;
    color: #047857;
}

.feat-status-pending {
    background: #f8fafc;
    color: #475569;
}

/* Studio Footer Actions */
.feat-studio-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.feat-btn-studio-primary {
    background: #047857;
    color: #ffffff;
    border: none;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: default;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feat-btn-studio-ghost {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.feat-btn-studio-action {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
}

@media (max-width: 900px) {
    .feat-studio-grid {
        grid-template-columns: 1fr;
    }

    .feat-studio-sidebar {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

/* ==========================================================================
   Bento Grid Section
   ========================================================================== */

.feat-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feat-bento-card {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.feat-bento-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.feat-bento-card-p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
}

/* ==========================================================================
   Deep Dive Showcase Sections
   ========================================================================== */

.feat-deep-dive-grid.reverse>* {
    direction: ltr;
}

/* ==========================================================================
   Universal 3-Customer Testimonial Slider (PaisaWise, Rite Education, Virtualcode)
   ========================================================================== */
.feat-testimonial-slider-wrap,
.onb-testimonial-slider-wrap {
    background: #ffffff;
    color: #0f172a;
    border-radius: 24px;
    padding: 42px 48px 36px;
    max-width: 980px;
    margin: 40px auto 0;
    border: 1px solid rgba(16, 185, 129, 0.26);
    box-shadow: 0 25px 65px -15px rgba(16, 185, 129, 0.16), 0 8px 24px rgba(15, 23, 42, 0.04);
    position: relative;
    box-sizing: border-box;
}

.feat-slider-viewport,
.onb-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.feat-slider-track,
.onb-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-testimonial-slide,
.onb-testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.feat-slide-badge-row,
.onb-slide-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.feat-company-pill,
.onb-company-pill {
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.28);
    padding: 4px 14px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.feat-slide-stats,
.onb-slide-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feat-stat-chip,
.onb-stat-chip {
    font-size: 0.76rem;
    color: #047857;
    background: #f0fdf4;
    border: 1px solid rgba(16, 185, 129, 0.22);
    padding: 4px 10px;
    border-radius: 9999px;
}

.feat-stat-chip strong,
.onb-stat-chip strong {
    font-weight: 700;
    color: #065f46;
}

.feat-testimonial-quote,
.onb-testimonial-quote {
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.65;
    color: #1e293b;
    margin: 4px 0 12px;
    font-style: normal;
    text-align: left;
}

.feat-testimonial-author,
.onb-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    gap: 16px;
}

.feat-author-info,
.onb-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feat-author-img,
.onb-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    flex-shrink: 0;
}

.feat-author-name,
.onb-author-name {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
}

.feat-author-company,
.onb-author-company {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.feat-slider-nav-arrows,
.onb-slider-nav-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-slider-btn,
.onb-slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.feat-slider-btn:hover,
.onb-slider-btn:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}
}

.feat-slider-dots-wrap,
.onb-slider-dots-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.feat-slider-dot,
.onb-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 9999px;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.feat-slider-dot.active,
.onb-slider-dot.active {
    width: 26px;
    background: #10b981;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.feat-faq-section {
    background: transparent;
    padding: 100px 0 110px;
    border-top: 1px solid rgba(16, 185, 129, 0.18);
}

.feat-faq-split-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: flex-start;
}

.feat-faq-split-left {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px;
    align-self: flex-start;
    text-align: left;
}

.feat-faq-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.feat-faq-title .serif-italic {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 3.2rem;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feat-faq-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.feat-faq-help-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    max-width: 330px;
    width: 100%;
    box-sizing: border-box;
    color: inherit;
    margin-top: 24px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.feat-faq-help-card:hover {
    text-decoration: none;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 24px rgba(15, 57, 43, 0.08);
}
}

.feat-faq-help-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eaf7f0;
    color: #047857;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-faq-help-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: #047857;
}

.feat-faq-help-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.feat-faq-help-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.feat-faq-help-action {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.96rem;
    color: #0b2b20;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
.feat-faq-help-card:hover .feat-faq-help-action {
    color: #047857;
}
}

.feat-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feat-faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 57, 43, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(15, 57, 43, 0.03);
    cursor: pointer;
}

.feat-faq-item.active {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.09);
    background: linear-gradient(180deg, #f8fdfa 0%, #ffffff 100%);
}

.feat-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
    line-height: 1.35;
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.feat-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e6f7f0;
    color: #0b2b20;
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feat-faq-item.active .feat-faq-icon {
    background: #0b2b20;
    color: #ffffff;
    border-color: #0b2b20;
}

.feat-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-faq-item.active .feat-faq-a {
    grid-template-rows: 1fr;
}

.feat-faq-a-inner {
    min-height: 0;
    overflow: hidden;
}

.feat-faq-a-inner p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.68;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(15, 57, 43, 0.08);
}

/* ==========================================================================
   Bottom CTA Banner (Light Emerald Theme)
   ========================================================================== */
.feat-cta-banner-section {
    position: relative;
    padding: 120px 0 130px;
    background-color: #e2f4ea;
    background-size: cover;
    background-position: center;
    color: #0c2017;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(16, 185, 129, 0.22);
    transition: none !important;
}

.feat-cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    z-index: 0;
}

.feat-cta-banner-section>* {
    position: relative;
    z-index: 1;
}

.feat-cta-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0c2017;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
}

.feat-cta-title .serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 4.4rem;
    color: #116949;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
    padding-right: 4px;
}

.feat-cta-desc {
    font-size: 1.12rem;
    color: #475569;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.feat-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .feat-hero-title {
        font-size: 3.2rem;
    }

    .feat-hero-title .serif-italic {
        font-size: 3.8rem;
    }

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

    .feat-faq-split-grid {
        grid-template-columns: 1fr;
    }

    .feat-faq-split-left {
        position: static !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .feat-nav-links {
        display: none;
    }

    .feat-hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .feat-hero-title .serif-italic {
        font-size: 3.0rem;
    }

    .feat-bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SCENIC MOCKUP BACKDROP FRAMES (dissolveX signature emerald landscape pattern)
   ========================================================================== */
.feat-scenic-frame {
    background-color: #e2f4ea;
    background-image: none;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 34px 28px 0;
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-shadow: 0 25px 70px -15px rgba(16, 185, 129, 0.18), 0 10px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    transition: none !important;
}

.feat-scenic-frame>* {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .feat-scenic-frame {
        padding: 20px 14px 0;
        border-radius: 18px;
    }
}

/* ==========================================================================
   MODERN VALUE BENEFIT CARDS (Replacing old-fashioned tick marks globally)
   ========================================================================== */
.feat-benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
    width: 100%;
}

.feat-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 185, 129, 0.20);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.04);
    text-align: left;
    box-sizing: border-box;
}

.feat-benefit-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
    flex-shrink: 0;
    margin-top: 6px;
}

.feat-benefit-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feat-benefit-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: #0b2b20;
    margin: 0;
    line-height: 1.3;
}

.feat-benefit-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    color: #3b6d58;
    line-height: 1.5;
    margin: 0;
}

/* Global upgrade for legacy checklist elements: transforms ticks into modern clean cards */
/* The list only: "-checklist" is also a substring of every "-checklist-item",
   and without the exclusion this column layout stacked each item's dot above
   its text. */
[class*="-checklist"]:not([class*="-checklist-item"]) {
    list-style: none !important;
    margin: 16px 0 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
}

[class*="-checklist-item"] {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    padding: 8px 14px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(16, 185, 129, 0.18) !important;
    border-radius: 10px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.88rem !important;
    color: #2d6b4e !important;
    line-height: 1.5 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.03) !important;
}

[class*="-check-icon"] {
    width: 8px !important;
    height: 8px !important;
    background: #10b981 !important;
    color: transparent !important;
    font-size: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16) !important;
    flex-shrink: 0 !important;
    margin-top: 6px !important;
    display: inline-block !important;
    border: none !important;
}