/*
 * NAI Landing Page CSS — Scoped Component Stylesheet
 * All styles scoped under .nai-lp wrapper to avoid conflicts with parent theme.
 * BEM naming: block__element--modifier with nai-lp- prefix.
 * Version: 1.1.0
 */

/* ===== CSS VARIABLE LAYER — scoped to wrapper ===== */
.nai-lp {
    /* GRC WAY brand palette (direct values, no color-mix) */
    --lp-primary: #4A2BAD;
    --lp-primary-light: #A3A0FB;
    --lp-primary-dark: #2A3042;
    --lp-primary-50: #F0ECFF;
    --lp-primary-100: #DDD6FE;
    --lp-secondary: #5B73E8;
    --lp-bg: #ffffff;
    --lp-bg-alt: #F8F8FB;
    --lp-bg-dark: #2A3042;
    --lp-text: #2A3042;
    --lp-text-light: #495057;
    --lp-muted: #74788D;
    --lp-muted-light: #A6B0CF;
    --lp-border: #E2E8F0;
    --lp-border-light: #EFF2F7;
    --lp-sidebar: #2A3042;
    --lp-sidebar-active: #5B73E8;
    --lp-font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Semantic colors */
    --lp-green: #34C38F;
    --lp-green-light: #DAF4EB;
    --lp-yellow: #F1B44C;
    --lp-yellow-light: #FDF3E0;
    --lp-purple: #7C3AED;
    --lp-purple-light: #EDE9FE;
    --lp-orange: #F49D42;
    --lp-orange-light: #FEF0DB;
    --lp-teal: #50A5F1;
    --lp-teal-light: #E0F0FE;
    --lp-gold: #B45309;
    --lp-gold-light: #FEF3C7;
    --lp-red: #F46A6A;
    --lp-red-light: #FEE2E2;
    --lp-pink: #F472B6;
    /* Shadows */
    --lp-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --lp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --lp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --lp-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    /* Radii */
    --lp-radius-sm: 8px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
    --lp-radius-full: 999px;
    /* Transitions */
    --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    font-family: var(--lp-font-family);
    color: var(--lp-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== WORDPRESS ADMIN BAR FIX ===== */
.admin-bar .nai-lp-header {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .nai-lp-header {
        top: 46px;
    }
}

/* ===== SCOPED ELEMENT RESETS ===== */
.nai-lp a { text-decoration: none; color: inherit; transition: color var(--lp-transition); }
.nai-lp img { max-width: 100%; display: block; }
.nai-lp ul { list-style: none; margin: 0; padding: 0; }

/* ===== LAYOUT ===== */
.nai-lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nai-lp section,
.nai-lp footer {
    position: relative;
}
.nai-lp section {
    padding: 120px 0;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger children */
.nai-lp-features__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.nai-lp-features__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.nai-lp-features__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.nai-lp-features__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.nai-lp-features__grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.nai-lp-steps__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.nai-lp-steps__grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.nai-lp-steps__grid .reveal:nth-child(4) { transition-delay: 0.45s; }
.nai-lp-pricing__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.nai-lp-pricing__grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.nai-lp-testimonials__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.nai-lp-testimonials__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ===== GRADIENT TEXT ===== */
.nai-lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION HEADER ===== */
.nai-lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.nai-lp-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    background: var(--lp-primary-50);
    padding: 6px 16px;
    border-radius: var(--lp-radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.nai-lp h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--lp-text);
}
.nai-lp-section-subtitle {
    font-size: 18px;
    color: var(--lp-muted);
    margin-top: 16px;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.nai-lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--lp-radius-full);
    cursor: pointer;
    transition: all var(--lp-transition);
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 14px;
    border: 2px solid transparent;
}
.nai-lp-btn--primary {
    background: var(--lp-primary);
    color: white;
    border-color: var(--lp-primary);
    box-shadow: 0 4px 14px rgba(74, 43, 173, 0.3);
}
.nai-lp-btn--primary:hover {
    background: var(--lp-primary-dark);
    border-color: var(--lp-primary-dark);
    box-shadow: 0 6px 20px rgba(74, 43, 173, 0.4);
    transform: translateY(-1px);
}
.nai-lp-btn--outline {
    background: transparent;
    border-color: var(--lp-border);
    color: var(--lp-text);
}
.nai-lp-btn--outline:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    background: var(--lp-primary-50);
}
.nai-lp-btn--white {
    background: white;
    color: var(--lp-primary);
    border-color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.nai-lp-btn--white:hover {
    background: var(--lp-primary-50);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.nai-lp-btn--sm { padding: 10px 22px; font-size: 13px; }
.nai-lp-btn--lg { padding: 16px 36px; font-size: 16px; }
.nai-lp-btn--full { display: flex; justify-content: center; width: 100%; padding: 14px 24px; }

/* ===== HEADER (section-header.php) ===== */
.nai-lp-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border-light);
    z-index: 100;
    transition: box-shadow var(--lp-transition);
    padding: 0;
}
.nai-lp-header--scrolled {
    box-shadow: var(--lp-shadow-md);
}
.nai-lp-header > .nai-lp-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nai-lp-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nai-lp-header__logo img {
    height: 48px;
    width: auto;
}
.nai-lp-header__nav {
    display: flex;
    gap: 8px;
}
.nai-lp-header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--lp-muted);
    padding: 8px 16px;
    border-radius: var(--lp-radius-sm);
    transition: all var(--lp-transition);
}
.nai-lp-header__link:hover {
    color: var(--lp-text);
    background: var(--lp-bg-alt);
}
.nai-lp-header__cta {
    flex-shrink: 0;
}
.nai-lp-header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--lp-radius-sm);
    transition: background var(--lp-transition);
    color: var(--lp-text);
}
.nai-lp-header__hamburger:hover {
    background: var(--lp-bg-alt);
}
.nai-lp-header__hamburger--active {
    background: var(--lp-bg-alt);
}
.nai-lp-header__hamburger svg {
    width: 24px;
    height: 24px;
}

/* ===== HERO (section-hero.php) ===== */
.nai-lp-hero {
    background: linear-gradient(180deg, var(--lp-bg-alt) 0%, var(--lp-bg) 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}
.nai-lp-hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.nai-lp-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.nai-lp-hero__shape--1 {
    width: 600px; height: 600px;
    background: var(--lp-primary);
    top: -200px; right: -100px;
    animation: nai-lp-float 20s ease-in-out infinite;
}
.nai-lp-hero__shape--2 {
    width: 400px; height: 400px;
    background: var(--lp-secondary);
    bottom: -100px; left: -100px;
    animation: nai-lp-float 25s ease-in-out infinite reverse;
}
.nai-lp-hero__shape--3 {
    width: 300px; height: 300px;
    background: var(--lp-purple);
    top: 50%; left: 50%;
    animation: nai-lp-float 15s ease-in-out infinite;
}
@keyframes nai-lp-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.nai-lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.nai-lp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--lp-primary-50);
    padding: 8px 16px;
    border-radius: var(--lp-radius-full);
}
.nai-lp-hero__dot {
    width: 8px; height: 8px;
    background: var(--lp-green);
    border-radius: 50%;
    animation: nai-lp-pulse-dot 2s ease-in-out infinite;
}
@keyframes nai-lp-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.nai-lp-hero__title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 24px 0 20px;
    color: var(--lp-text);
}
.nai-lp-hero__description {
    font-size: 18px;
    color: var(--lp-muted);
    max-width: 520px;
    line-height: 1.7;
}
.nai-lp-hero__actions {
    display: flex;
    gap: 16px;
    margin: 40px 0 32px;
    flex-wrap: wrap;
}
.nai-lp-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nai-lp-hero__avatars {
    display: flex;
}
.nai-lp-hero__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 700;
    border: 3px solid white;
    margin-left: -8px;
    box-shadow: var(--lp-shadow-sm);
}
.nai-lp-hero__avatar:first-child { margin-left: 0; }
.nai-lp-hero__social-text {
    font-size: 14px;
    color: var(--lp-muted);
}
.nai-lp-hero__mockup {
    perspective: 1200px;
}

/* ===== DASHBOARD MOCKUP (dashboard-mockup.php) ===== */
.nai-lp-dashboard-mockup {
    background: var(--lp-bg-alt);
    border-radius: var(--lp-radius-xl);
    box-shadow: var(--lp-shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--lp-border);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}
.nai-lp-dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}
/* Sidebar */
.nai-lp-mockup-sidebar {
    width: 56px;
    background: var(--lp-sidebar);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 2px;
    flex-shrink: 0;
}
.nai-lp-mockup-sidebar__logo {
    width: 32px; height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nai-lp-mockup-sidebar__logo-img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.nai-lp-mockup-sidebar__item {
    width: 36px; height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nai-lp-mockup-sidebar__item--active {
    background: var(--lp-sidebar-active);
}
.nai-lp-mockup-sidebar__item::after {
    content: '';
    width: 16px; height: 2px;
    background: rgba(255,255,255,0.25);
    border-radius: 1px;
}
.nai-lp-mockup-sidebar__item--active::after {
    background: white;
}
/* Main content */
.nai-lp-mockup-main {
    flex: 1;
    min-width: 0;
}
.nai-lp-mockup-header {
    background: white;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--lp-border-light);
}
.nai-lp-mockup-header__title {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}
.nai-lp-mockup-header__filter {
    font-size: 9px;
    color: var(--lp-muted);
    background: white;
    border: 1px solid var(--lp-border);
    padding: 3px 10px;
    border-radius: 4px;
}
.nai-lp-mockup-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* Score circles */
.nai-lp-mockup-scores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.nai-lp-mockup-score {
    background: white;
    border-radius: var(--lp-radius-sm);
    padding: 12px 8px;
    text-align: center;
    border: 1px solid var(--lp-border-light);
}
.nai-lp-score-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    margin: 0 auto 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nai-lp-score-circle::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 4px solid var(--lp-border-light);
}
.nai-lp-score-circle::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 4px solid transparent;
}
.nai-lp-score-circle--high::after {
    border-color: var(--lp-green);
}
.nai-lp-score-circle--medium::after {
    border-top-color: var(--lp-yellow);
    border-right-color: var(--lp-yellow);
    border-bottom-color: var(--lp-yellow);
}
.nai-lp-score-circle--low::after {
    border-top-color: var(--lp-red);
}
.nai-lp-score-circle--purple::after {
    border-top-color: var(--lp-primary-light);
    border-right-color: var(--lp-primary-light);
    border-bottom-color: var(--lp-primary-light);
}
.nai-lp-score-circle__value {
    font-size: 11px;
    font-weight: 800;
    color: var(--lp-text);
    position: relative;
    z-index: 1;
}
.nai-lp-score-circle__label {
    font-size: 8px;
    color: var(--lp-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
/* Chart bars */
.nai-lp-mockup-chart {
    background: white;
    border-radius: var(--lp-radius-sm);
    padding: 12px;
    border: 1px solid var(--lp-border-light);
}
.nai-lp-mockup-chart__title {
    font-size: 9px;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
}
.nai-lp-mockup-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
}
.nai-lp-chart-bar-group {
    flex: 1;
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 100%;
}
.nai-lp-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: all var(--lp-transition);
    min-height: 4px;
    height: var(--bar-h, 50%);
}
.nai-lp-chart-bar--purple { background: var(--lp-primary-light); }
.nai-lp-chart-bar--pink { background: var(--lp-pink); }
.nai-lp-chart-bar--blue { background: var(--lp-secondary); }
.nai-lp-chart-bar--green { background: var(--lp-green); }
.nai-lp-chart-bar--yellow { background: var(--lp-yellow); }
/* Table */
.nai-lp-mockup-table {
    background: white;
    border-radius: var(--lp-radius-sm);
    border: 1px solid var(--lp-border-light);
    overflow: hidden;
}
.nai-lp-mockup-table__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 8px 12px;
    background: var(--lp-bg-alt);
    border-bottom: 1px solid var(--lp-border-light);
    font-size: 8px;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nai-lp-mockup-table__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 7px 12px;
    border-bottom: 1px solid var(--lp-border-light);
    font-size: 9px;
    color: var(--lp-text-light);
    align-items: center;
}
.nai-lp-mockup-table__row:last-child { border-bottom: none; }
/* Progress bars */
.nai-lp-progress {
    height: 4px;
    border-radius: 2px;
    background: var(--lp-border-light);
    overflow: hidden;
}
.nai-lp-progress__fill {
    height: 100%;
    border-radius: 2px;
}
.nai-lp-progress__fill--green { background: var(--lp-green); }
.nai-lp-progress__fill--purple { background: var(--lp-primary-light); }
.nai-lp-progress__fill--yellow { background: var(--lp-yellow); }
.nai-lp-progress__fill--red { background: var(--lp-red); }
/* Tags */
.nai-lp-tag {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--lp-radius-full);
    display: inline-block;
}
.nai-lp-tag--green { background: var(--lp-green-light); color: var(--lp-green); }
.nai-lp-tag--yellow { background: var(--lp-yellow-light); color: var(--lp-yellow); }
.nai-lp-tag--red { background: var(--lp-red-light); color: var(--lp-red); }
.nai-lp-tag--blue { background: var(--lp-teal-light); color: var(--lp-secondary); }

/* ===== TRUST BAR (section-trust_bar.php) ===== */
.nai-lp-trust {
    padding: 60px 0;
    border-bottom: 1px solid var(--lp-border-light);
}
.nai-lp-trust__label {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--lp-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}
.nai-lp-trust__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.nai-lp-trust__logo {
    transition: opacity var(--lp-transition);
}
.nai-lp-trust__logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-muted-light);
    opacity: 0.5;
    letter-spacing: -0.02em;
}
.nai-lp-trust__logo:hover .nai-lp-trust__logo-text {
    opacity: 0.8;
}
.nai-lp-trust__logo-img {
    max-height: 40px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--lp-transition);
}
.nai-lp-trust__logo:hover .nai-lp-trust__logo-img {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ===== METRICS (section-metrics.php) ===== */
.nai-lp-metrics {
    padding: 80px 0;
    background: var(--lp-bg);
}
.nai-lp-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.nai-lp-metric {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--lp-radius-lg);
    transition: all var(--lp-transition);
}
.nai-lp-metric:hover {
    background: var(--lp-bg-alt);
}
.nai-lp-metric__value {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.nai-lp-metric__suffix {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: -0.03em;
}
.nai-lp-metric__label {
    font-size: 15px;
    color: var(--lp-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== FEATURES (section-features.php) ===== */
.nai-lp-features {
    background: var(--lp-bg-alt);
}
.nai-lp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nai-lp-feature-card {
    background: white;
    padding: 36px;
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-border);
    transition: all var(--lp-transition);
    display: flex;
    flex-direction: column;
}
.nai-lp-feature-card:hover {
    border-color: var(--lp-primary-100);
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}
.nai-lp-feature-card__icon {
    width: 48px; height: 48px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
/* Icon colors via card modifier */
.nai-lp-feature-card--blue .nai-lp-feature-card__icon { background: var(--lp-primary-100); color: var(--lp-primary); }
.nai-lp-feature-card--purple .nai-lp-feature-card__icon { background: var(--lp-purple-light); color: var(--lp-primary); }
.nai-lp-feature-card--green .nai-lp-feature-card__icon { background: var(--lp-green-light); color: var(--lp-green); }
.nai-lp-feature-card--orange .nai-lp-feature-card__icon { background: var(--lp-orange-light); color: var(--lp-orange); }
.nai-lp-feature-card--teal .nai-lp-feature-card__icon { background: var(--lp-teal-light); color: var(--lp-secondary); }
.nai-lp-feature-card--gold .nai-lp-feature-card__icon { background: var(--lp-yellow-light); color: var(--lp-yellow); }
.nai-lp-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--lp-text);
    letter-spacing: -0.01em;
}
.nai-lp-feature-card__desc {
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.7;
    flex: 1;
}
.nai-lp-feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-primary);
    margin-top: 16px;
    transition: gap var(--lp-transition);
}
.nai-lp-feature-card__link:hover {
    gap: 8px;
}

/* ===== STEPS (section-steps.php) ===== */
.nai-lp-steps {
    background: var(--lp-bg);
}
.nai-lp-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.nai-lp-step {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--lp-radius-xl);
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border-light);
    position: relative;
    transition: all var(--lp-transition);
}
.nai-lp-step:hover {
    background: white;
    border-color: var(--lp-primary-100);
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}
.nai-lp-step__number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}
.nai-lp-step__line {
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-light));
    border-radius: 2px;
    margin: 0 auto 20px;
}
.nai-lp-step__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--lp-text);
}
.nai-lp-step__desc {
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS (section-testimonials.php) ===== */
.nai-lp-testimonials {
    background: var(--lp-bg-alt);
    padding: 120px 0;
}
.nai-lp-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nai-lp-testimonial {
    background: white;
    padding: 36px;
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-border);
    transition: all var(--lp-transition);
    display: flex;
    flex-direction: column;
}
.nai-lp-testimonial:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}
.nai-lp-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
    color: var(--lp-yellow);
}
.nai-lp-testimonial__text {
    font-size: 15px;
    color: var(--lp-text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}
.nai-lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--lp-border-light);
}
.nai-lp-testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.nai-lp-testimonial__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-text);
}
.nai-lp-testimonial__role {
    display: block;
    font-size: 13px;
    color: var(--lp-muted);
}

/* ===== PRICING (section-pricing.php) ===== */
.nai-lp-pricing {
    background: var(--lp-bg);
}
.nai-lp-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.nai-lp-pricing-card {
    background: white;
    border-radius: var(--lp-radius-xl);
    border: 1px solid var(--lp-border);
    padding: 40px;
    transition: all var(--lp-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.nai-lp-pricing-card:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}
.nai-lp-pricing-card--featured {
    border: 2px solid var(--lp-primary);
    box-shadow: var(--lp-shadow-xl);
    transform: scale(1.02);
}
.nai-lp-pricing-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--lp-shadow-2xl);
}
.nai-lp-pricing-card__badge {
    position: absolute;
    top: 0; right: 32px;
    background: var(--lp-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 var(--lp-radius-sm) var(--lp-radius-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nai-lp-pricing-card__name {
    font-size: 22px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.02em;
}
.nai-lp-pricing-card__desc {
    font-size: 14px;
    color: var(--lp-muted);
    margin-top: 4px;
}
.nai-lp-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 20px 0 32px;
}
.nai-lp-pricing-card__currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
}
.nai-lp-pricing-card__amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--lp-text);
    letter-spacing: -0.03em;
    line-height: 1;
}
.nai-lp-pricing-card__period {
    font-size: 16px;
    color: var(--lp-muted);
    font-weight: 500;
}
.nai-lp-pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex: 1;
}
.nai-lp-pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-light);
}
.nai-lp-pricing-card__features li svg {
    flex-shrink: 0;
    color: var(--lp-green);
}

/* ===== CTA FINAL (section-cta.php) ===== */
.nai-lp-cta {
    background: linear-gradient(135deg, #2A3042 0%, #4A2BAD 50%, #5B73E8 100%);
    color: white;
    text-align: center;
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}
.nai-lp-cta__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.nai-lp-cta__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.nai-lp-cta__shape--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
}
.nai-lp-cta__shape--2 {
    width: 400px; height: 400px;
    bottom: -200px; left: -100px;
}
.nai-lp-cta__content {
    position: relative;
    z-index: 1;
}
.nai-lp-cta__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}
.nai-lp-cta__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.nai-lp-cta .nai-lp-btn {
    margin-top: 40px;
}
.nai-lp-cta__meta {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== FOOTER (section-footer.php) ===== */
.nai-lp-footer {
    background: var(--lp-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}
.nai-lp-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nai-lp-footer__brand {
    display: flex;
    flex-direction: column;
}
.nai-lp-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.nai-lp-footer__logo img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nai-lp-footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}
.nai-lp-footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.nai-lp-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nai-lp-footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.nai-lp-footer__col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--lp-transition);
}
.nai-lp-footer__col a:hover {
    color: white;
}
.nai-lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.nai-lp-footer__social {
    display: flex;
    gap: 16px;
}
.nai-lp-footer__social a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--lp-transition);
    display: flex;
}
.nai-lp-footer__social a:hover {
    color: white;
}

/* ===== FORM SECTION ===== */
.nai-lp-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.nai-lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nai-lp-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text);
}
.nai-lp-form-input,
.nai-lp-form-textarea,
.nai-lp-form-select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--lp-font-family);
    font-size: 14px;
    color: var(--lp-text);
    background: white;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.nai-lp-form-input:focus,
.nai-lp-form-textarea:focus,
.nai-lp-form-select:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px var(--lp-primary-50);
}
.nai-lp-form-input::placeholder,
.nai-lp-form-textarea::placeholder {
    color: var(--lp-muted-light);
}
.nai-lp-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.nai-lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.nai-lp-form-error {
    font-size: 13px;
    color: var(--lp-red);
    margin-top: 4px;
}
.nai-lp-form-success {
    font-size: 14px;
    color: var(--lp-green);
    background: var(--lp-green-light);
    padding: 12px 16px;
    border-radius: var(--lp-radius-sm);
    text-align: center;
}

/* ===== CUSTOM HTML SECTION ===== */
.nai-lp-custom-html {
    padding: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nai-lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .nai-lp-hero__description {
        margin: 0 auto;
    }
    .nai-lp-hero__actions {
        justify-content: center;
    }
    .nai-lp-hero__social-proof {
        justify-content: center;
    }
    .nai-lp-dashboard-mockup {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    .nai-lp-dashboard-mockup:hover {
        transform: none;
    }
    .nai-lp-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nai-lp-footer__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .nai-lp section {
        padding: 80px 0;
    }
    /* Mobile nav */
    .nai-lp-header__nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: var(--lp-shadow-lg);
        gap: 4px;
    }
    .nai-lp-header__nav--open {
        display: flex;
    }
    .nai-lp-header__link {
        padding: 12px 16px;
        border-radius: var(--lp-radius-sm);
    }
    .nai-lp-header__link:hover {
        background: var(--lp-bg-alt);
    }
    .nai-lp-header__hamburger {
        display: flex;
    }
    .nai-lp-header__cta {
        display: none;
    }
    .nai-lp-metrics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nai-lp-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nai-lp-pricing__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .nai-lp-pricing-card--featured {
        transform: none;
    }
    .nai-lp-pricing-card--featured:hover {
        transform: translateY(-4px);
    }
    .nai-lp-testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .nai-lp-container {
        padding: 0 16px;
    }
    .nai-lp section {
        padding: 64px 0;
    }
    .nai-lp-hero {
        padding: 48px 0 80px;
    }
    .nai-lp-hero__title {
        font-size: 32px;
    }
    .nai-lp h2 {
        font-size: 28px;
    }
    .nai-lp-features__grid,
    .nai-lp-steps__grid,
    .nai-lp-metrics__grid {
        grid-template-columns: 1fr;
    }
    .nai-lp-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .nai-lp-hero__social-proof {
        flex-direction: column;
        gap: 8px;
    }
    .nai-lp-trust__logos {
        gap: 24px;
    }
    .nai-lp-footer__links {
        grid-template-columns: 1fr 1fr;
    }
    .nai-lp-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .nai-lp-cta {
        padding: 80px 16px;
    }
    .nai-lp-mockup-scores {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .nai-lp-mockup-sidebar {
        width: 40px;
    }
    .nai-lp-form-row {
        grid-template-columns: 1fr;
    }
}
