/* NEI Elementor Visual Overrides
   Matches mockup at site-hug-refresh.lovable.app */

/* ---- Global Typography ---- */
.elementor * {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Full-width sections, edge-to-edge ---- */
.elementor-section.elementor-section-boxed {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}
.nei-main,
.elementor {
    overflow-x: hidden;
}
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: none !important;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

/* ---- Alternating section backgrounds (homepage) ---- */
.elementor-section.elementor-top-section:nth-child(odd):not([data-settings*="gradient"]) {
    background: #f9fafb;
}

/* ---- Section headings centered, body text left, buttons centered ---- */
.elementor-top-section > .elementor-container .elementor-widget-heading {
    text-align: center;
}
/* Body text left-aligned for readability, but section labels stay centered */
.elementor-top-section > .elementor-container .elementor-widget-text-editor {
    text-align: left;
}
/* Inline-styled centered text (section labels like "ADA AI AIDE", "THE NEI METHOD") */
.elementor-top-section > .elementor-container .elementor-widget-text-editor p[style*="text-align:center"],
.elementor-top-section > .elementor-container .elementor-widget-text-editor p[style*="text-align: center"] {
    text-align: center !important;
}
/* First text-editor in a section is typically the label — center it */
.elementor-top-section > .elementor-container .elementor-column > .elementor-widget-wrap > .elementor-widget-text-editor:first-child {
    text-align: center;
}
/* Buttons/CTAs centered */
.elementor-top-section > .elementor-container .elementor-widget-button,
.elementor-top-section > .elementor-container .elementor-button-wrapper {
    text-align: center;
}
/* Shortcode-rendered content stays left-aligned */
.nei-team-heading,
.nei-team-subtitle {
    text-align: left;
}

/* ---- Homepage sections: extra breathing room ---- */
.elementor-top-section {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* ---- Hero video: 15% smaller ---- */
.elementor-section[data-settings*="gradient"]:first-of-type .elementor-widget-video {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Page Hero Section (gradient) ---- */
.elementor-section[data-settings*="gradient"] {
    position: relative;
    background: linear-gradient(135deg, #FFFFFF 0%, #00A3E0 100%) !important;
    color: #374151;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    margin-bottom: 48px;
}
.elementor-section[data-settings*="gradient"] .elementor-heading-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    color: #10069F !important;
}
.elementor-section[data-settings*="gradient"] .elementor-widget-text-editor {
    color: #374151;
}
.elementor-section[data-settings*="gradient"] .elementor-column {
    text-align: center;
}
/* CTA banner at bottom of homepage — add top margin */
.elementor-section[data-settings*="gradient"]:last-of-type {
    margin-top: 48px;
    margin-bottom: 0;
}
/* CTA buttons inside gradient sections — ensure bright, visible styling */
.elementor-section[data-settings*="gradient"] .elementor-button {
    background-color: #00A3E0 !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 32px !important;
    transition: transform 0.15s, box-shadow 0.15s !important;
}
.elementor-section[data-settings*="gradient"] .elementor-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.3) !important;
}

/* ---- Icon Box Widgets (features, generic) ---- */
.elementor-widget-icon-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.elementor-widget-icon-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.elementor-widget-icon-box .elementor-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f4fd;
    border-radius: 10px;
    color: #00A3E0;
    font-size: 20px;
}
.elementor-widget-icon-box .elementor-icon-box-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 8px;
}
.elementor-widget-icon-box .elementor-icon-box-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
}

/* ---- Heading Widgets ---- */
.elementor-widget-heading .elementor-heading-title {
    font-family: 'Inter', sans-serif;
}
h1.elementor-heading-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
}
h2.elementor-heading-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}
h3.elementor-heading-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

/* ---- Text Editor Widgets ---- */
.elementor-widget-text-editor {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

/* ---- Case Study Cards ---- */
.nei-case-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.nei-case-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.nei-case-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nei-case-badge {
    display: inline-block;
    background: #e0f4fd;
    color: #00A3E0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 16px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nei-case-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.nei-case-result {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00A3E0;
    margin: 0 0 16px;
}
.nei-case-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 16px;
    flex: 1;
}
.nei-case-quote {
    background: #f9fafb;
    border-left: 3px solid #00A3E0;
    padding: 16px;
    margin: 0 0 16px;
    border-radius: 0 8px 8px 0;
}
.nei-case-quote p {
    font-size: 0.85rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
.nei-case-quote cite {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    font-style: normal;
    margin-top: 8px;
}
.nei-case-link {
    display: inline-flex;
    align-items: center;
    color: #00A3E0;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}
.nei-case-link:hover {
    color: #10069F;
}
@media (max-width: 768px) {
    .nei-case-cards {
        grid-template-columns: 1fr;
    }
}

/* ==================================================================
   SHARED PAGE CONTENT STYLES (used by all styled page templates)
   ================================================================== */
.nei-page-content {
    font-family: 'Inter', sans-serif;
}
.nei-content-section {
    padding: 48px 0;
}
.nei-bg-alt {
    background: #f9fafb;
    padding: 48px 24px;
    margin: 0 -48px;
    border-radius: 0;
}
.nei-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 24px;
    text-align: center;
}
.nei-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.nei-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}
.nei-check-list li svg {
    position: absolute;
    left: 0;
    top: 4px;
}

/* Steps grid (4 or 3 columns) */
.nei-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.nei-steps-3 {
    grid-template-columns: repeat(3, 1fr);
}
.nei-numbered-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.nei-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #00A3E0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.nei-numbered-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.nei-numbered-step p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Features grid */
.nei-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.nei-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.nei-feature-item svg {
    flex-shrink: 0;
    color: #00A3E0;
}
.nei-feature-item span {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

/* Score cards (NEI Score page) */
.nei-score-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}
.nei-score-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.nei-score-card svg {
    color: #00A3E0;
    margin-bottom: 8px;
}
.nei-score-card .nei-score-label {
    font-size: 0.8rem;
    color: #00A3E0;
    font-weight: 600;
}
.nei-score-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 8px 0;
}
.nei-score-card p {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* ==================================================================
   NEI SCORE TABLES & CHARTS
   ================================================================== */
.nei-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}
.nei-alignment-table,
.nei-cando-table,
.nei-timeline-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 400px;
}
.nei-alignment-table th,
.nei-cando-table th,
.nei-timeline-table th {
    padding: 12px 16px;
    text-align: left !important;
    font-weight: 700;
    color: #fff;
    background: #00A3E0;
    border-bottom: 2px solid #0089bd;
}
.nei-alignment-table th:first-child,
.nei-cando-table th:first-child {
    border-radius: 8px 0 0 0;
}
.nei-alignment-table th:last-child,
.nei-cando-table th:last-child {
    border-radius: 0 8px 0 0;
}
.nei-alignment-table td,
.nei-cando-table td,
.nei-timeline-table td {
    padding: 12px 16px;
    text-align: left !important;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    line-height: 1.5;
}
.nei-alignment-table td:first-child,
.nei-cando-table td:first-child {
    font-weight: 600;
    color: #00A3E0;
    white-space: nowrap;
}
.nei-cando-table td:nth-child(2) {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}
.nei-row-alt td {
    background: #f9fafb;
}
.nei-band-top td {
    background: #f0f9ff;
}

/* Timeline progress bars */
.nei-progress-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    min-width: 120px;
}
.nei-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00A3E0, #10069F);
    border-radius: 6px;
    transition: width 0.3s;
}
.nei-timeline-table td:first-child {
    font-weight: 700;
    color: #00A3E0;
    text-align: center !important;
}
.nei-timeline-table td:nth-child(2) {
    text-align: center !important;
}

/* Learner progress cards */
.nei-learner-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}
.nei-learner-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}
.nei-learner-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    text-align: left !important;
}
.nei-learner-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.nei-learner-duration {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
}
.nei-learner-before {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    background: #f9fafb;
    padding: 4px 10px;
    border-radius: 20px;
}
.nei-learner-after {
    font-size: 0.8rem;
    font-weight: 600;
    color: #00A3E0;
    background: #e0f4fd;
    padding: 4px 10px;
    border-radius: 20px;
}
.nei-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.nei-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    width: 90px;
    flex-shrink: 0;
    text-align: right !important;
}
.nei-bar-track {
    flex: 1;
    position: relative;
    height: 20px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
}
.nei-bar-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    background: #d1d5db;
    border-radius: 4px 4px 0 0;
}
.nei-bar-after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    background: linear-gradient(90deg, #00A3E0, #10069F);
    border-radius: 0 0 4px 4px;
}
.nei-bar-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
    font-size: 0.75rem;
}
.nei-legend-before {
    color: #9ca3af;
    font-weight: 500;
}
.nei-legend-before::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background: #d1d5db;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}
.nei-legend-after {
    color: #00A3E0;
    font-weight: 600;
}
.nei-legend-after::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background: linear-gradient(90deg, #00A3E0, #10069F);
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
}
@media (max-width: 768px) {
    .nei-learner-cards {
        grid-template-columns: 1fr;
    }
    .nei-cando-table {
        font-size: 0.8rem;
    }
    .nei-cando-table th,
    .nei-cando-table td {
        padding: 8px 10px;
    }
}

/* Info boxes (assessment schedule) */
.nei-info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.nei-info-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}
.nei-info-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.nei-info-box p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Two-column layout */
.nei-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}
.nei-two-col h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}
.nei-two-col p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Company features (checkmark list) */
.nei-company-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.nei-company-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #374151;
}
.nei-company-features li svg {
    flex-shrink: 0;
    color: #80BC00;
}

/* ==================================================================
   ARTICLE LAYOUT — narrow centered content (case studies, etc.)
   ================================================================== */
.nei-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: left !important;
}
.nei-article h2,
.nei-article h3,
.nei-article p,
.nei-article blockquote,
.nei-article div {
    text-align: left !important;
}
.nei-article-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 32px;
    line-height: 1.3;
}
.nei-article-intro {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}
.nei-article-intro-left {
    flex-shrink: 0;
    width: 140px;
}
.nei-article-logo {
    width: 100%;
    border-radius: 8px;
}
.nei-article-intro-right p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 12px;
}
.nei-article-photo {
    margin: 0 -16px 32px;
}
.nei-article-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.nei-article-section {
    margin-bottom: 32px;
}
.nei-article-section p {
    font-size: 0.925rem;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 16px;
}
.nei-interviewee {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.nei-interviewee-photo {
    width: 120px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.nei-interviewee-info {
    display: flex;
    flex-direction: column;
}
.nei-interviewee-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}
.nei-interviewee-role {
    font-size: 0.85rem;
    color: #00A3E0;
    font-weight: 500;
}
.nei-interviewee-bio {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    line-height: 1.7 !important;
}
.nei-interview-q {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}
.nei-article-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}
.nei-article-stats {
    text-align: center !important;
    padding: 24px;
    background: #f0f9ff;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}
.nei-article-stats p {
    font-size: 1rem;
    font-weight: 600;
    color: #00A3E0;
    margin: 0;
    text-align: center !important;
}
@media (max-width: 640px) {
    .nei-article-intro {
        flex-direction: column;
    }
    .nei-article-intro-left {
        width: 100px;
    }
    .nei-article-photo {
        margin: 0 0 24px;
    }
}

/* ==================================================================
   CASE STUDY CARDS (listing page — matches mockup)
   ================================================================== */
.nei-cs-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.nei-cs-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nei-cs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.nei-cs-logo {
    height: 36px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}
.nei-cs-company {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    text-align: left;
}
.nei-cs-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 16px;
    text-align: left;
}
.nei-cs-quote {
    border-left: 3px solid #00A3E0;
    padding: 16px 20px;
    margin: 0 0 16px;
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
    text-align: left;
}
.nei-cs-quote p {
    font-size: 0.875rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 8px;
    text-align: left;
}
.nei-cs-quote cite {
    display: block;
    font-size: 0.8rem;
    color: #111827;
    font-style: normal;
    font-weight: 600;
}
.nei-cs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00A3E0;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}
.nei-cs-link:hover {
    color: #10069F;
}

/* Case study detail page (legacy) */
.nei-overview-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}
.nei-overview-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}
.nei-overview-box p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 12px;
}
.nei-interview {
    margin-bottom: 48px;
}
.nei-interview h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}
.nei-interview .nei-role {
    font-size: 0.9rem;
    color: #00A3E0;
    font-weight: 500;
    margin: 0 0 24px;
}
.nei-qa {
    margin-bottom: 24px;
}
.nei-qa-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.nei-qa-q svg {
    flex-shrink: 0;
    color: #00A3E0;
    margin-top: 2px;
}
.nei-qa-q strong {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.5;
}
.nei-qa-a {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    padding-left: 36px;
}
/* Contest banner — emphasized promo */
.nei-contest-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #00A3E0 100%);
    color: #374151;
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    margin: 0 auto 32px;
    max-width: 800px;
    border: 1px solid #e5e7eb;
}
.nei-contest-heading {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: #10069F;
}
.nei-contest-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 16px;
    color: #111827;
}
.nei-contest-rules {
    list-style: none;
    padding: 0;
    margin: 0 auto 16px;
    max-width: 600px;
    text-align: left;
}
.nei-contest-rules li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}
.nei-contest-rules li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #80BC00;
    font-weight: 700;
}
.nei-contest-improve {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #374151;
}
.nei-contest-deadline {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Industries tag grid */
.nei-industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}
.nei-industry-tag {
    display: inline-block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.nei-industry-tag:hover {
    border-color: #00A3E0;
    box-shadow: 0 2px 8px rgba(0,163,224,0.15);
}

.nei-pull-quote {
    border-left: 3px solid #00A3E0;
    background: #f0f9ff;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}
.nei-pull-quote p {
    font-size: 0.95rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
.nei-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.nei-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.nei-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00A3E0;
    margin-bottom: 4px;
}
.nei-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}
.nei-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00A3E0;
    font-weight: 500;
    text-decoration: none;
    margin-top: 32px;
}
.nei-back-link:hover {
    color: #10069F;
}

/* Benefit grid (meeting simulation) */
.nei-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.nei-benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
}
.nei-benefit-card svg {
    color: #00A3E0;
    margin-bottom: 12px;
}
.nei-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}
.nei-benefit-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.nei-pricing-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 32px;
}
.nei-pricing-box h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}
.nei-pricing-box p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for page content */
@media (max-width: 768px) {
    .nei-steps-grid,
    .nei-steps-3 {
        grid-template-columns: 1fr;
    }
    .nei-features-grid {
        grid-template-columns: 1fr;
    }
    .nei-score-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .nei-info-boxes {
        grid-template-columns: 1fr;
    }
    .nei-two-col {
        grid-template-columns: 1fr;
    }
    .nei-stat-cards {
        grid-template-columns: 1fr;
    }
    .nei-benefit-grid {
        grid-template-columns: 1fr;
    }
    .nei-bg-alt {
        margin: 0 -24px;
    }
}

/* ---- Button Widgets ---- */
.elementor-widget-button .elementor-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.15s;
}

/* ---- Counter Widgets (stats bar) ---- */
.elementor-widget-counter .elementor-counter-number-wrapper {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #111827;
}
.elementor-widget-counter .elementor-counter-title {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 4px;
}

/* ---- Video Widgets ---- */
.elementor-widget-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.elementor-widget-video .elementor-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
.elementor-widget-video .elementor-wrapper iframe,
.elementor-widget-video .elementor-wrapper .elementor-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---- Shortcode Containers ---- */
.elementor-widget-shortcode {
    min-height: 100px;
}

/* ==================================================================
   METHOD STEPS — horizontal cards with connecting arrows
   ================================================================== */
.nei-method-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}
.nei-step-card {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.nei-step-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.nei-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e0f4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #00A3E0;
}
.nei-step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin: 0 0 8px;
}
.nei-step-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 14px;
}
.nei-step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}
.nei-step-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6b7280;
}
.nei-step-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2380BC00' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center/contain;
}
.nei-step-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 6px;
    color: #d1d5db;
}

/* ==================================================================
   REVIEWS — grid (full page) + carousel (homepage)
   ================================================================== */
.nei-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.nei-review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nei-review-quote {
    margin-bottom: 12px;
}
.nei-review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 16px;
}
.nei-review-text p {
    margin: 0 0 8px;
}
.nei-review-text p:last-child {
    margin-bottom: 0;
}
.nei-review-text strong {
    font-style: normal;
    font-weight: 600;
}
.nei-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nei-review-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.nei-review-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f4fd;
    color: #00A3E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}
.nei-review-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #111827;
    margin: 0;
}
.nei-review-role {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

/* ---- Carousel (homepage) ---- */
.nei-carousel-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.nei-carousel-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
}
.nei-carousel-scroll::-webkit-scrollbar {
    display: none;
}
.nei-carousel-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: calc(33.333% - 16px);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nei-carousel-text {
    max-height: 140px;
    overflow: hidden;
    position: relative;
}
.nei-carousel-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(transparent, #fff);
}
.nei-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, opacity 0.2s;
    color: #374151;
    padding: 0;
}
.nei-carousel-arrow:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.nei-carousel-arrow[disabled] {
    opacity: 0.3;
    cursor: default;
}
.nei-carousel-arrow-left {
    left: -16px;
}
.nei-carousel-arrow-right {
    right: -16px;
}

/* ==================================================================
   TEAM — cards with bio expand/collapse
   ================================================================== */
.nei-team-section {
    margin-bottom: 48px;
}
.nei-team-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 12px;
}
.nei-team-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.nei-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.nei-team-leadership .nei-team-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.nei-team-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.nei-team-card .nei-team-info {
    padding: 16px 20px 20px;
}
.nei-team-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.nei-team-leadership .nei-team-photo {
    height: 280px;
}
.nei-team-initial {
    width: 100%;
    height: 180px;
    background: #e0f4fd;
    color: #00A3E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2.5rem;
}
.nei-team-name {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin: 0 0 4px;
}
.nei-team-role {
    font-size: 0.8rem;
    color: #00A3E0;
    font-weight: 500;
    margin: 0 0 8px;
}
.nei-team-bio-preview {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nei-team-bio-full {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #6b7280;
}
.nei-team-bio-full p {
    margin: 0 0 8px;
}
.nei-team-read-bio {
    background: none;
    border: none;
    color: #00A3E0;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}
.nei-team-read-bio:hover {
    color: #10069F;
}

/* ==================================================================
   PRICING — comparison table with toggle
   ================================================================== */
.nei-pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.nei-toggle-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #00A3E0;
    cursor: pointer;
    transition: all 0.15s;
}
.nei-toggle-btn:hover {
    background: #f9fafb;
}
.nei-toggle-btn.nei-toggle-active {
    background: #FF8200;
    color: #fff;
    border-color: #FF8200;
}
.nei-pricing-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.nei-pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.nei-pricing-table th {
    padding: 16px 12px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
}
.nei-pricing-table td {
    padding: 12px;
    text-align: center;
    font-size: 0.875rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}
.nei-pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #111827;
    min-width: 200px;
}
.nei-pricing-table .nei-row-alt {
    background: #f9fafb;
}
.nei-pricing-table tfoot td {
    padding-top: 24px;
    vertical-align: top;
    border-bottom: none;
}
.nei-feat-dash {
    color: #d1d5db;
    font-size: 1.2rem;
}
.nei-price-annual,
.nei-price-monthly {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}
.nei-price-per {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
}
.nei-price-struck {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 12px;
}
.nei-price-free {
    font-size: 1.5rem;
    font-weight: 800;
    color: #80BC00;
    margin-bottom: 12px;
}
.nei-price-na {
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
}
.nei-price-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #fff;
    margin-top: 8px;
    transition: opacity 0.15s;
}
.nei-price-cta:hover {
    opacity: 0.9;
    color: #fff;
}
.nei-price-cta-free {
    background: #80BC00;
}
.nei-price-cta-paid {
    background: #FF8200;
}

/* ==================================================================
   CONTACT FORM
   ================================================================== */
.nei-cf {
    max-width: 640px;
    margin: 0 auto;
}
.nei-cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.nei-cf-field {
    margin-bottom: 16px;
}
.nei-cf-full {
    grid-column: 1 / -1;
}
.nei-cf-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 6px;
}
.nei-cf-req {
    color: #ef4444;
}
.nei-cf-input,
.nei-cf-select,
.nei-cf-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #111827;
    background: #fff;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.nei-cf-input:focus,
.nei-cf-select:focus,
.nei-cf-textarea:focus {
    outline: none;
    border-color: #00A3E0;
    box-shadow: 0 0 0 3px rgba(0,163,224,0.1);
}
.nei-cf-submit {
    text-align: center;
    margin-top: 24px;
}
.nei-cf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00A3E0;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
    width: 100%;
    justify-content: center;
}
.nei-cf-btn:hover {
    background: #10069F;
}
.nei-cf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.nei-cf-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 8px;
}
.nei-cf-success {
    text-align: center;
    padding: 48px 24px;
}
.nei-cf-success-icon {
    width: 64px;
    height: 64px;
    background: #80BC00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}
.nei-cf-success p {
    font-size: 1.125rem;
    color: #111827;
    line-height: 1.6;
}

/* ---- Turnstile ---- */
.nei-cf-turnstile {
    margin-bottom: 16px;
}

/* ==================================================================
   FAQ ACCORDION (guide pages)
   ================================================================== */
.nei-faq-category {
    margin-bottom: 32px;
}
.nei-faq-cat-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00A3E0;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
    margin: 0 0 16px;
}
.nei-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.nei-faq-item[open] {
    border-color: #00A3E0;
}
.nei-faq-q {
    display: block;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    background: #fff;
    list-style: none;
    transition: background 0.15s;
}
.nei-faq-q::-webkit-details-marker {
    display: none;
}
.nei-faq-q::before {
    content: '+';
    display: inline-block;
    width: 20px;
    color: #00A3E0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 8px;
}
.nei-faq-item[open] .nei-faq-q::before {
    content: '−';
}
.nei-faq-q:hover {
    background: #f9fafb;
}
.nei-faq-a {
    padding: 0 16px 14px 44px;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
}
.nei-faq-a p {
    margin: 0;
}

/* Step list (guide pages) */
.nei-step-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    counter-reset: step-counter;
}
.nei-step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #374151;
}
.nei-step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00A3E0;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================================================================
   ADA AI PAGE
   ================================================================== */
.nei-ada-hero {
    margin: -40px -20px 0;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.nei-ada-hero-img {
    width: 100%;
    display: block;
}
.nei-ada-body {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}
.nei-ada-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.nei-ada-feature {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}
.nei-ada-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.nei-ada-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f5e0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nei-ada-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.nei-ada-feature p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    text-align: left;
}
.nei-ada-video-wrapper {
    text-align: center;
    margin-top: 24px;
}
.nei-ada-video-wrapper iframe {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    height: auto;
}
@media (max-width: 640px) {
    .nei-ada-features {
        grid-template-columns: 1fr;
    }
}

/* ==================================================================
   LOADING STATE
   ================================================================== */
.nei-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 0.875rem;
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1024px) {
    .nei-carousel-card {
        width: calc(50% - 12px);
    }
    .nei-carousel-arrow-left { left: -8px; }
    .nei-carousel-arrow-right { right: -8px; }
}

@media (max-width: 768px) {
    h1.elementor-heading-title {
        font-size: 1.75rem;
    }
    h2.elementor-heading-title {
        font-size: 1.5rem;
    }
    .nei-cf-grid {
        grid-template-columns: 1fr;
    }
    .nei-team-photo {
        height: 180px;
    }
    .nei-review-grid {
        grid-template-columns: 1fr;
    }
    .nei-method-steps {
        flex-direction: column;
        align-items: center;
    }
    .nei-step-card {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    .nei-step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }
    .nei-carousel-card {
        width: calc(85vw - 32px);
        max-width: 340px;
    }
    .nei-carousel-scroll {
        padding-left: 16px;
        padding-right: 16px;
        scroll-padding-left: 16px;
    }
    .nei-carousel-arrow {
        display: none;
    }
    .nei-carousel-text {
        max-height: none;
    }
    .nei-carousel-text::after {
        display: none;
    }
}
