/* ============================================
   COGNITUDO.AI - Premium Card & Box Overrides
   ============================================ */

/* === FEATURE GRID — CENTERED & PREMIUM === */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    padding: 44px 32px 40px; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden;
    text-align: center;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s; }
.feature-card::after {
    content: ''; position: absolute; top: -60%; left: -20%; width: 140%; height: 140%;
    background: radial-gradient(circle, rgba(101,65,204,0.04) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(101,65,204,0.12); border-color: rgba(101,65,204,0.2); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
    width: 68px; height: 68px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(101,65,204,0.1) 0%, rgba(79,70,229,0.06) 100%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-size: 1.5rem; color: var(--primary);
    transition: all 0.4s; position: relative;
}
.feature-icon::after {
    content: ''; position: absolute; inset: -4px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(101,65,204,0.15), transparent);
    opacity: 0; transition: opacity 0.4s; z-index: -1;
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, rgba(101,65,204,0.18) 0%, rgba(79,70,229,0.1) 100%); transform: scale(1.08); }
.feature-card:hover .feature-icon::after { opacity: 1; }
.feature-icon svg { width: 28px; height: 28px; stroke: var(--primary); }
.feature-card h4 { margin-bottom: 14px; color: var(--text); font-size: 1.15rem; }
.feature-card h3 { margin-bottom: 14px; color: var(--text); font-size: 1.15rem; text-align: center; }
.feature-card p { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); }

/* === HIGHLIGHT CARDS — CENTERED & GLASS === */
.highlight-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 992px) { .highlight-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .highlight-cards { grid-template-columns: 1fr; } }
.highlight-card {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 36px 28px; backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1); text-align: center; position: relative; overflow: hidden;
}
.highlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184,164,232,0.4), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.highlight-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(101,65,204,0.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(101,65,204,0.15); }
.highlight-card:hover::before { opacity: 1; }
.highlight-card-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: rgba(101,65,204,0.15); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; line-height: 1; transition: all 0.4s;
}
.highlight-card:hover .highlight-card-icon { background: rgba(101,65,204,0.25); transform: scale(1.08); }
.highlight-card-icon svg { width: 28px; height: 28px; stroke: #B8A4E8; }
.highlight-card h4 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
.highlight-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }

/* === STEPS — PREMIUM === */
.steps { counter-reset: step; max-width: 800px; margin: 0 auto; }
.step-item {
    display: flex; gap: 32px; padding: 36px 0; border-bottom: 1px solid var(--border-light);
    counter-increment: step; transition: all 0.3s; position: relative;
}
.step-item:last-child { border-bottom: none; }
.step-item:hover { padding-left: 8px; }
.step-number {
    flex-shrink: 0; width: 60px; height: 60px; border-radius: 16px;
    background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700; box-shadow: 0 8px 24px rgba(101,65,204,0.25);
    transition: all 0.4s;
}
.step-item:hover .step-number { transform: scale(1.08); box-shadow: 0 12px 32px rgba(101,65,204,0.35); }
.step-content h4 { margin-bottom: 10px; font-size: 1.1rem; }
.step-content p { font-size: 0.92rem; line-height: 1.75; }

/* === STATS BAR — PREMIUM === */
.stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: #fff; border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1); overflow: hidden;
}
.stat-item {
    text-align: center; padding: 40px 20px;
    border-right: 1px solid var(--border-light); position: relative;
    transition: all 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(101,65,204,0.02); }
.stat-number {
    font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
    background: linear-gradient(269deg, #6541CC 2.78%, #FF7A7A 228.38%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 6px; line-height: 1.1;
}
.stat-label { font-size: 0.88rem; color: var(--text-secondary); font-weight: 500; }

/* === LOGO STRIP — ENHANCED VISIBILITY === */
.logo-strip {
    padding: 48px 0 56px;
    background: #fff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.logo-strip-title {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.logo-grid img {
    height: 85px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.75);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.logo-grid img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
    }
    .logo-grid img { height: 56px; max-width: 130px; }
}
@media (max-width: 480px) {
    .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .logo-grid img { height: 50px; max-width: 120px; }
}

/* === PAIN CARDS (WS + NT) — CENTERED & PREMIUM === */
.ws-pain-card, .nt-pain-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.ws-pain-card:hover, .nt-pain-card:hover {
    transform: translateY(-4px); box-shadow: 0 16px 40px rgba(101,65,204,0.1);
    border-color: rgba(101,65,204,0.15);
}
.ws-pain-line, .nt-pain-line {
    width: 48px; height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 24px;
}
.ws-pain-card p, .nt-pain-card p { color: var(--text); line-height: 1.75; font-size: 0.95rem; }

/* === WHOIS CARDS (WS + NT) — PREMIUM === */
.ws-whois-card, .nt-whois-card {
    background: #fff;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ws-whois-card:hover, .nt-whois-card:hover {
    transform: translateY(-6px); box-shadow: 0 20px 50px rgba(101,65,204,0.12);
    border-color: rgba(101,65,204,0.2);
}
.ws-whois-img, .nt-whois-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.6s; }
.ws-whois-card:hover .ws-whois-img, .nt-whois-card:hover .nt-whois-img { transform: scale(1.05); }
.ws-whois-body, .nt-whois-body { padding: 28px; }
.ws-whois-body h4, .nt-whois-body h4 { margin-bottom: 10px; font-size: 1.05rem; color: var(--text); }
.ws-whois-body p, .nt-whois-body p { color: var(--text-secondary); line-height: 1.7; font-size: 0.92rem; }

/* === WORKSPACE STEPS — PREMIUM === */
.ws-step-num {
    font-size: 3.5rem; font-weight: 800;
    background: linear-gradient(269deg, rgba(101,65,204,0.15) 0%, rgba(79,70,229,0.05) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 20px;
}
.ws-step-img {
    width: 100%; border-radius: var(--radius-lg);
    margin-bottom: 24px; height: 210px; object-fit: cover; display: block;
    transition: transform 0.6s; box-shadow: var(--shadow);
}
.ws-step:hover .ws-step-img { transform: scale(1.03); }
.ws-step h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--text); }
.ws-step p  { color: var(--text-secondary); line-height: 1.75; font-size: 0.94rem; }

/* === NT FLOW STEPS — PREMIUM === */
.nt-flow-num {
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(269deg, rgba(101,65,204,0.15) 0%, rgba(79,70,229,0.05) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 14px;
}
.nt-flow-img {
    width: 100%; height: 190px; object-fit: cover;
    border-radius: var(--radius-lg); display: block; margin-bottom: 20px;
    transition: transform 0.6s; box-shadow: var(--shadow);
}
.nt-flow-step:hover .nt-flow-img { transform: scale(1.03); }
.nt-flow-step h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.nt-flow-step p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* === FEATURE DETAIL ROWS (WS + NT) — PREMIUM === */
.ws-feature-img img, .nt-feature-img img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    transition: transform 0.6s, box-shadow 0.4s;
}
.ws-feature-row:hover .ws-feature-img img, .nt-feature-row:hover .nt-feature-img img {
    transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.ws-feature-label, .nt-feature-label {
    display: inline-block;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px;
    background: rgba(101,65,204,0.06); padding: 4px 14px; border-radius: 50px;
}

/* === PRIVACY DOTS — PREMIUM === */
.ws-privacy-dot, .nt-privacy-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--gradient-primary); flex-shrink: 0; margin-top: 5px;
    box-shadow: 0 2px 8px rgba(101,65,204,0.3);
}

/* === CTA SECTIONS (WS + NT) — PREMIUM === */
.ws-cta-section, .nt-cta-section {
    background: var(--gradient-hero);
    padding: 100px 0; position: relative; overflow: hidden;
}
.ws-cta-section::before, .nt-cta-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(101,65,204,0.2) 0%, transparent 60%); filter: blur(80px);
}
.ws-cta-inner, .nt-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.ws-cta-inner h2, .nt-cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.2rem); margin-bottom: 18px; }
.ws-cta-inner p, .nt-cta-inner p { color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.75; margin-bottom: 40px; }

/* === ONBOARD STEPS (WS) — PREMIUM === */
.ws-onboard-step {
    flex: 1; min-width: 200px;
    background: #fff; border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow); border: 1px solid var(--border-light);
    transition: all 0.4s;
}
.ws-onboard-step:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(101,65,204,0.1); }
.ws-onboard-num {
    display: inline-block;
    background: var(--gradient-primary); color: #fff;
    border-radius: var(--radius-sm); padding: 6px 16px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: .04em; margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(101,65,204,0.25);
}

/* === ARTICLE CARDS — PREMIUM === */
.article-card {
    background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
    overflow: hidden; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(101,65,204,0.12); border-color: rgba(101,65,204,0.15); }
.article-card img { transition: transform 0.6s; }
.article-card:hover img { transform: scale(1.05); }
.article-card-body { padding: 28px; }

/* === BLUR CARDS — ENHANCED === */
.blur-card { height: 340px; border: 1px solid rgba(255,255,255,0.05); }
.blur-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.blur-card-content { padding: 32px; }

/* === SOLUTIONS — 4 COLUMNS === */
.section-light .blur-cards { grid-template-columns: repeat(4, 1fr); }
.section-light .blur-card { height: 360px; }
.section-light .blur-card h3 { font-size: 1.05rem; }
.section-light .blur-card p { font-size: 0.8rem; line-height: 1.55; }
.section-light .blur-card-content { padding: 24px; }
@media (max-width: 1024px) {
    .section-light .blur-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section-light .blur-cards { grid-template-columns: 1fr; }
    .section-light .blur-card { height: 320px; }
}

/* === TWO-COL IMAGES — PREMIUM === */
.two-col-image img { box-shadow: var(--shadow-lg); transition: transform 0.6s, box-shadow 0.4s; }
.two-col:hover .two-col-image img { transform: scale(1.02); }

/* === CHECK LIST — PREMIUM === */
.check-list li::before {
    content: '\2713'; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(101,65,204,0.12) 0%, rgba(79,70,229,0.06) 100%);
    color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; box-shadow: 0 2px 6px rgba(101,65,204,0.1);
}

/* === FOOTER — ENHANCED === */
.site-footer {
    background: #0A0714;
    padding: 80px 0 32px;
    border-top: 1px solid rgba(101,65,204,0.15);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
    line-height: 1.7;
}
.footer-compliance {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-compliance .compliance-badge {
    height: 52px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    padding: 6px;
}
.footer-compliance .compliance-badge:hover {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(255,255,255,0.1);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom .footer-compliance-text {
    color: rgba(101,65,204,0.6);
    font-weight: 600;
    font-size: 0.82rem;
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-compliance { justify-content: flex-start; }
}

/* ============================================
   SECURITY / COMPLIANCE SECTION — PREMIUM
   ============================================ */
.highlight-section--security {
    text-align: center;
    position: relative;
}
.highlight-inner--centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.highlight-inner--centered h2 {
    text-align: center;
}
.highlight-inner--centered p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.highlight-lead {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.8 !important;
    max-width: 680px;
    margin-bottom: 36px !important;
}
.security-highlight {
    background: linear-gradient(269deg, #B8A4E8 0%, #FFD700 180%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background shield/lock art */
.security-bg-art {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}
.security-bg-art svg {
    width: 100%;
    height: 100%;
}

/* Compliance badges row */
.compliance-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.compliance-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 10px 22px 10px 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.compliance-badge-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(101,65,204,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101,65,204,0.2);
}
.compliance-badge-item img {
    height: 32px;
    width: auto;
    border-radius: 4px;
}
.compliance-badge-item span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.compliance-badge-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards stay full-width grid under the centered header */
.highlight-section--security .highlight-cards {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .security-bg-art { width: 360px; height: 360px; }
    .compliance-badges-row { gap: 16px; }
    .compliance-badge-item { padding: 8px 16px 8px 10px; }
    .compliance-badge-item img { height: 26px; }
    .compliance-badge-item span { font-size: 0.78rem; }
}

/* ============================================
   PRESENTATION VIEWER — PREMIUM
   ============================================ */
.prezi-viewer {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #1A1033;
    box-shadow: 0 24px 80px rgba(101, 65, 204, 0.2), 0 0 0 1px rgba(101, 65, 204, 0.1);
    position: relative;
}
.prezi-stage {
    position: relative;
    background: #0F0A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
}
.prezi-stage canvas {
    display: block;
    width: 100%;
    height: auto;
}
.prezi-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #0F0A1A;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 5;
}
.prezi-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(101, 65, 204, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: preziSpin 0.8s linear infinite;
}
@keyframes preziSpin {
    to { transform: rotate(360deg); }
}
.prezi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(180deg, #1A1033 0%, #150D28 100%);
}
.prezi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}
.prezi-btn:hover:not(:disabled) {
    background: rgba(101, 65, 204, 0.3);
    border-color: rgba(101, 65, 204, 0.5);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(101, 65, 204, 0.25);
}
.prezi-btn:disabled {
    opacity: 0.25;
    cursor: default;
}
.prezi-page-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 72px;
    text-align: center;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
}
.prezi-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 4px;
}
.prezi-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
}
.prezi-progress-bar {
    height: 100%;
    background: var(--gradient-btn);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
    border-radius: 0 2px 2px 0;
}

/* Fullscreen mode */
.prezi-viewer:fullscreen {
    background: #0A0714;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}
.prezi-viewer:fullscreen .prezi-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prezi-viewer:fullscreen .prezi-stage canvas {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.prezi-viewer:fullscreen .prezi-controls {
    padding: 20px 32px;
}
.prezi-viewer:fullscreen .prezi-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .prezi-viewer {
        border-radius: var(--radius-lg);
        margin: 0 -8px;
    }
    .prezi-stage {
        min-height: 200px;
    }
    .prezi-controls {
        padding: 12px 16px;
        gap: 8px;
    }
    .prezi-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .prezi-page-info {
        font-size: 0.82rem;
        min-width: 56px;
    }
}
@media (max-width: 480px) {
    .prezi-controls {
        padding: 10px 12px;
    }
    .prezi-btn {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   AUDIT HERO — WHITE BG, ANIMATED ORBIT
   ============================================ */
.audit-hero {
    background: #fff;
    padding: 40px 0 100px;
    position: relative;
    overflow: hidden;
}
.audit-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Badge */
.audit-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(101,65,204,0.06);
    border: 1px solid rgba(101,65,204,0.12);
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    margin-bottom: 24px;
}
.audit-hero-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary, #6541CC);
    flex-shrink: 0;
}
.audit-hero-badge span {
    color: var(--primary, #6541CC);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Title */
.audit-hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text, #1a1a2e);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.audit-hero-title .highlight {
    background: linear-gradient(269deg, #6541CC 2.78%, #FF7A7A 228.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.audit-hero-subtitle {
    color: var(--text-secondary, #64648c);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}
.audit-hero-subtitle strong {
    color: var(--text, #1a1a2e);
}

/* Buttons */
.audit-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.audit-hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.audit-hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(101,65,204,0.25);
    color: var(--primary, #6541CC);
}
.audit-hero-buttons .btn-outline:hover {
    background: rgba(101,65,204,0.06);
    border-color: rgba(101,65,204,0.4);
}

/* Checks */
.audit-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.audit-hero-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary, #64648c);
    font-size: 0.85rem;
    font-weight: 500;
}
.audit-hero-check svg {
    color: var(--primary, #6541CC);
    flex-shrink: 0;
}

/* ===== ORBIT VISUAL ===== */
.audit-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.audit-visual-container {
    position: relative;
    width: 440px;
    height: 440px;
}

/* Orbit rings */
.audit-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(101,65,204,0.1);
}
.audit-orbit-ring--1 {
    top: 50%; left: 50%;
    width: 260px; height: 260px;
    transform: translate(-50%, -50%);
}
.audit-orbit-ring--2 {
    top: 50%; left: 50%;
    width: 380px; height: 380px;
    transform: translate(-50%, -50%);
}

/* Orbit items — base (dim) state */
.audit-orbit-item {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid rgba(101,65,204,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    z-index: 1;
}
.audit-orbit-item svg {
    width: 22px;
    height: 22px;
    stroke: rgba(101,65,204,0.3);
    transition: stroke 0.5s;
}

/* Label next to each item */
.orbit-label {
    position: absolute;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary, #6541CC);
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

/* Positions for 8 items clockwise from top-right (45deg increments starting at ~22.5deg for visual balance) */
/* 0: top-right */
.audit-orbit-item[data-step="0"] { top: 24px; left: calc(50% + 120px); }
.audit-orbit-item[data-step="0"] .orbit-label { top: -20px; left: 50%; transform: translateX(-50%) translateY(4px); }
/* 1: right */
.audit-orbit-item[data-step="1"] { top: calc(50% - 24px); left: calc(50% + 166px); }
.audit-orbit-item[data-step="1"] .orbit-label { left: calc(100% + 8px); top: 50%; transform: translateY(-50%); }
/* 2: bottom-right */
.audit-orbit-item[data-step="2"] { bottom: 24px; left: calc(50% + 120px); }
.audit-orbit-item[data-step="2"] .orbit-label { bottom: -20px; left: 50%; transform: translateX(-50%) translateY(-4px); }
/* 3: bottom */
.audit-orbit-item[data-step="3"] { bottom: -4px; left: calc(50% - 24px); }
.audit-orbit-item[data-step="3"] .orbit-label { bottom: -22px; left: 50%; transform: translateX(-50%) translateY(-4px); }
/* 4: bottom-left */
.audit-orbit-item[data-step="4"] { bottom: 24px; right: calc(50% + 120px); left: auto; }
.audit-orbit-item[data-step="4"] .orbit-label { bottom: -20px; left: 50%; transform: translateX(-50%) translateY(-4px); }
/* 5: left */
.audit-orbit-item[data-step="5"] { top: calc(50% - 24px); right: calc(50% + 166px); left: auto; }
.audit-orbit-item[data-step="5"] .orbit-label { right: calc(100% + 8px); left: auto; top: 50%; transform: translateY(-50%); }
/* 6: top-left */
.audit-orbit-item[data-step="6"] { top: 24px; right: calc(50% + 120px); left: auto; }
.audit-orbit-item[data-step="6"] .orbit-label { top: -20px; left: 50%; transform: translateX(-50%) translateY(4px); }
/* 7: top */
.audit-orbit-item[data-step="7"] { top: -4px; left: calc(50% - 24px); }
.audit-orbit-item[data-step="7"] .orbit-label { top: -22px; left: 50%; transform: translateX(-50%) translateY(4px); }

/* ===== ACTIVE (lit) state ===== */
.audit-orbit-item.orbit-active {
    background: rgba(101,65,204,0.08);
    border-color: var(--primary, #6541CC);
    box-shadow: 0 4px 20px rgba(101,65,204,0.2);
    transform: scale(1.12);
}
.audit-orbit-item.orbit-active svg {
    stroke: var(--primary, #6541CC);
}
.audit-orbit-item.orbit-active .orbit-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* Labels that aren't centered (left/right positions) */
.audit-orbit-item[data-step="1"].orbit-active .orbit-label,
.audit-orbit-item[data-step="5"].orbit-active .orbit-label {
    transform: translateY(-50%);
    opacity: 1;
}

/* Fading out state */
.audit-orbit-item.orbit-fading {
    opacity: 0.3;
    transform: scale(0.95);
}
.audit-orbit-item.orbit-fading .orbit-label {
    opacity: 0;
}

/* All-active glow on center */
.orbit-all-active .audit-visual-center {
    box-shadow: 0 8px 40px rgba(101,65,204,0.35);
    border-color: var(--primary, #6541CC);
}

/* Center piece */
.audit-visual-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary, #6541CC) 0%, #4F46E5 100%);
    border: 2px solid rgba(101,65,204,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(101,65,204,0.25);
    z-index: 2;
    transition: all 0.5s;
}
.audit-visual-center svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}
.audit-visual-center span {
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .audit-hero { padding: 30px 0 60px; }
    .audit-hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .audit-hero-subtitle { margin: 0 auto 32px; }
    .audit-hero-buttons { justify-content: center; }
    .audit-hero-checks { justify-content: center; }
    .audit-visual-container { width: 360px; height: 360px; }
    .audit-orbit-ring--1 { width: 210px; height: 210px; }
    .audit-orbit-ring--2 { width: 310px; height: 310px; }
    .audit-orbit-item { width: 42px; height: 42px; }
    .audit-orbit-item[data-step="0"] { top: 16px; left: calc(50% + 96px); }
    .audit-orbit-item[data-step="1"] { top: calc(50% - 21px); left: calc(50% + 134px); }
    .audit-orbit-item[data-step="2"] { bottom: 16px; left: calc(50% + 96px); }
    .audit-orbit-item[data-step="3"] { bottom: -4px; left: calc(50% - 21px); }
    .audit-orbit-item[data-step="4"] { bottom: 16px; right: calc(50% + 96px); left: auto; }
    .audit-orbit-item[data-step="5"] { top: calc(50% - 21px); right: calc(50% + 134px); left: auto; }
    .audit-orbit-item[data-step="6"] { top: 16px; right: calc(50% + 96px); left: auto; }
    .audit-orbit-item[data-step="7"] { top: -4px; left: calc(50% - 21px); }
    .orbit-label { font-size: 0.65rem; }
}
@media (max-width: 600px) {
    .audit-hero-buttons { flex-direction: column; align-items: stretch; }
    .audit-hero-checks { flex-direction: column; align-items: center; gap: 12px; }
    .audit-visual-container { width: 300px; height: 300px; }
    .audit-orbit-ring--1 { width: 180px; height: 180px; }
    .audit-orbit-ring--2 { width: 260px; height: 260px; }
    .audit-orbit-item { width: 38px; height: 38px; border-radius: 10px; }
    .audit-orbit-item svg { width: 18px; height: 18px; }
    .audit-orbit-item[data-step="0"] { top: 10px; left: calc(50% + 80px); }
    .audit-orbit-item[data-step="1"] { top: calc(50% - 19px); left: calc(50% + 112px); }
    .audit-orbit-item[data-step="2"] { bottom: 10px; left: calc(50% + 80px); }
    .audit-orbit-item[data-step="3"] { bottom: -4px; left: calc(50% - 19px); }
    .audit-orbit-item[data-step="4"] { bottom: 10px; right: calc(50% + 80px); left: auto; }
    .audit-orbit-item[data-step="5"] { top: calc(50% - 19px); right: calc(50% + 112px); left: auto; }
    .audit-orbit-item[data-step="6"] { top: 10px; right: calc(50% + 80px); left: auto; }
    .audit-orbit-item[data-step="7"] { top: -4px; left: calc(50% - 19px); }
    .orbit-label { font-size: 0.55rem; }
    .audit-visual-center { width: 72px; height: 72px; border-radius: 18px; }
    .audit-visual-center svg { width: 24px; height: 24px; }
}

/* ============================================
   AUDIT PREVIEW — TABLET FRAME
   ============================================ */
.tablet-frame {
    max-width: 900px;
    margin: 0 auto;
}
.tablet-bezel {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 16px 16px 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.08);
    position: relative;
}
.tablet-camera {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 12px;
}
/* === AUDIT PREVIEW WORKSPACE DASHBOARD === */
.tablet-screen {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.ap-workspace {
    display: flex;
    height: 600px;
    font-family: 'Inter', -apple-system, sans-serif;
}
.ap-ws-sidebar {
    width: 170px;
    background: #1a1033;
    color: #fff;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
}
.ap-ws-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 8px;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: 0.02em;
}
.ap-ws-logo svg { width: 14px; height: 14px; stroke: #A855F7; flex-shrink: 0; }
.ap-ws-nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    cursor: default;
    transition: background 0.15s;
    margin-bottom: 1px;
}
.ap-ws-nav-item svg { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.6; }
.ap-ws-nav-active {
    background: rgba(168,85,247,0.2);
    color: #fff;
}
.ap-ws-nav-active svg { opacity: 1; stroke: #A855F7; }
.ap-ws-sidebar-bottom {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ap-ws-company { font-size: 9px; color: rgba(255,255,255,0.4); padding: 0 8px; margin-bottom: 6px; }
.ap-ws-badge {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ef4444;
    background: rgba(239,68,68,0.1);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 8px;
}
/* Main area */
.ap-ws-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f9fb;
    overflow-y: auto;
    min-width: 0;
}
.ap-ws-topbar {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 14px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.ap-ws-tab {
    font-size: 9px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 5px;
    color: #94a3b8;
    cursor: default;
}
.ap-ws-tab-active {
    background: rgba(101,65,204,0.08);
    color: #6541CC;
    font-weight: 600;
}
.ap-ws-date {
    margin-left: auto;
    font-size: 8px;
    color: #94a3b8;
}
.ap-ws-dashboard {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Widget rows */
.ap-ws-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ap-ws-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
}
.ap-ws-widget-full { grid-column: 1 / -1; }
.ap-ws-widget-title {
    font-size: 9px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
/* Donut chart */
.ap-ws-donut-wrap { display: flex; align-items: center; gap: 12px; }
.ap-ws-donut { width: 80px; height: 80px; flex-shrink: 0; }
.ap-donut-fill {
    animation: ap-donut-draw 1.5s ease-out forwards;
}
@keyframes ap-donut-draw {
    from { stroke-dashoffset: 251.2; }
    to { stroke-dashoffset: 175.8; }
}
.ap-ws-donut-labels, .ap-ws-pie-legend, .ap-ws-prio-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ap-ws-dlabel {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    color: #64748b;
}
.ap-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.ap-dot-low { background: #ef4444; }
.ap-dot-target { background: #10b981; }
/* Bar chart */
.ap-ws-bars { display: flex; flex-direction: column; gap: 5px; }
.ap-ws-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.ap-ws-bar-label { font-size: 8px; color: #64748b; width: 52px; flex-shrink: 0; text-align: right; }
.ap-ws-bar-track {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}
.ap-ws-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6541CC, #A855F7);
    border-radius: 4px;
    width: var(--bar-w, 0%);
}
.ap-bar-anim {
    animation: ap-bar-grow 1.2s ease-out forwards;
}
@keyframes ap-bar-grow {
    from { width: 0%; }
    to { width: var(--bar-w); }
}
.ap-ws-bar-val { font-size: 8px; font-weight: 700; color: #6541CC; width: 24px; }
/* Stats row */
.ap-ws-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ap-ws-stat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ap-ws-stat-val {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}
.ap-ws-stat-label {
    font-size: 7px;
    color: #94a3b8;
    margin-top: 2px;
}
.ap-ws-sparkline {
    display: block;
    width: 100%;
    height: 16px;
    margin-top: 4px;
    opacity: 0.5;
}
/* Pie chart */
.ap-ws-pie-wrap { display: flex; align-items: center; gap: 12px; }
.ap-ws-pie { width: 80px; height: 80px; flex-shrink: 0; }
.ap-pie-anim {
    transform-origin: 50% 50%;
    animation: ap-pie-spin 1s ease-out forwards;
}
@keyframes ap-pie-spin {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
/* Priority bar */
.ap-ws-priority { margin-bottom: 4px; }
.ap-ws-prio-bar {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}
.ap-ws-prio-seg { height: 100%; width: var(--bar-w, 0%); }
.ap-ws-prio-critical { background: #ef4444; }
.ap-ws-prio-high { background: #f59e0b; }
.ap-ws-prio-medium { background: #cbd5e1; }
/* Compliance row */
.ap-ws-compliance-row {
    display: flex;
    gap: 6px;
}
.ap-ws-comply-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}
.ap-ws-comply-item svg { width: 10px; height: 10px; flex-shrink: 0; }
.ap-ws-comply-ok {
    background: rgba(16,185,129,0.08);
    color: #10b981;
}
.ap-ws-comply-ok svg { stroke: #10b981; }
/* Roadmap */
.ap-ws-roadmap {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ap-ws-rm-phase {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
}
.ap-ws-rm-q1 { border-left: 3px solid #10b981; }
.ap-ws-rm-q2 { border-left: 3px solid #6541CC; }
.ap-ws-rm-q3 { border-left: 3px solid #f59e0b; }
.ap-ws-rm-head {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.ap-ws-rm-head svg { width: 10px; height: 10px; flex-shrink: 0; }
.ap-ws-rm-q1 .ap-ws-rm-head svg { stroke: #10b981; }
.ap-ws-rm-q2 .ap-ws-rm-head svg { stroke: #6541CC; }
.ap-ws-rm-q3 .ap-ws-rm-head svg { stroke: #f59e0b; }
.ap-ws-rm-label { font-size: 8px; color: #64748b; }
.ap-ws-rm-roi { font-size: 8px; font-weight: 700; color: #6541CC; margin-top: 3px; }
.ap-ws-rm-connector { width: 16px; flex-shrink: 0; display: flex; align-items: center; }
.ap-ws-rm-connector svg { width: 16px; height: 6px; }
/* More hint */
.ap-ws-more {
    text-align: center;
    font-size: 9px;
    color: #94a3b8;
    padding: 10px;
    background: #fff;
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
}
/* Responsive */
@media (max-width: 768px) {
    .ap-workspace { height: 450px; }
    .ap-ws-sidebar { width: 130px; padding: 10px 6px; }
    .ap-ws-logo { font-size: 8px; }
    .ap-ws-nav-item { font-size: 8px; padding: 5px 6px; }
    .ap-ws-row { grid-template-columns: 1fr; }
    .ap-ws-stats-row { grid-template-columns: repeat(2, 1fr); }
    .ap-ws-donut { width: 60px; height: 60px; }
    .ap-ws-pie { width: 60px; height: 60px; }
    .ap-ws-roadmap { flex-direction: column; }
    .ap-ws-rm-connector { transform: rotate(90deg); width: 100%; height: 16px; justify-content: center; }
}
@media (max-width: 480px) {
    .ap-ws-sidebar { display: none; }
    .ap-workspace { height: 400px; }
    .ap-ws-stats-row { grid-template-columns: 1fr 1fr; }
}
}

/* ============================================
   AUDIT PROCESS TIMELINE
   ============================================ */
.audit-process-timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Vertical connecting line */
.apt-line {
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary, #6541CC), rgba(101,65,204,0.12));
    z-index: 0;
}

/* Each step */
.apt-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    z-index: 1;
    padding-bottom: 36px;
}
.apt-step:last-child { padding-bottom: 0; }

/* Numbered dot */
.apt-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary, #6541CC);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #f8f7ff, 0 4px 16px rgba(101,65,204,0.15);
    transition: all 0.3s;
}
.apt-step:hover .apt-dot {
    background: var(--primary, #6541CC);
    box-shadow: 0 0 0 5px #f8f7ff, 0 8px 24px rgba(101,65,204,0.3);
}
.apt-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary, #6541CC);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}
.apt-step:hover .apt-num { color: #fff; }

/* Content card */
.apt-card {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border-light, #f0f0f0);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
    position: relative;
}
.apt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}
.apt-step:hover .apt-card {
    box-shadow: 0 12px 32px rgba(101,65,204,0.08);
    border-color: rgba(101,65,204,0.15);
}
.apt-step:hover .apt-card::before { opacity: 1; }

/* Card header: title + time tag inline */
.apt-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

/* Final step highlight */
.apt-card--final {
    border-color: rgba(101,65,204,0.2);
    background: linear-gradient(135deg, rgba(101,65,204,0.03) 0%, rgba(168,85,247,0.03) 100%);
}
.apt-card--final::before { opacity: 1; }

/* Tag */
.apt-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary, #6541CC);
    background: rgba(101,65,204,0.08);
    padding: 3px 10px;
    border-radius: 50px;
    flex-shrink: 0;
    margin-top: 2px;
    white-space: nowrap;
}

/* Text */
.apt-card h4 {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    margin: 0;
    line-height: 1.35;
}
.apt-card p {
    font-size: 0.875rem;
    color: var(--text-secondary, #64648c);
    line-height: 1.75;
    margin: 0;
}

/* Who is involved */
.apt-who {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary, #64648c);
    margin-top: 10px;
}
.apt-who::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary, #6541CC);
    opacity: 0.45;
    flex-shrink: 0;
}

/* CTA button inside last card */
.apt-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary, #6541CC);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(101,65,204,0.25);
}
.apt-cta:hover {
    background: #5435B0;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(101,65,204,0.35);
}

/* Timeline responsive — already vertical, only tweak spacing */
@media (max-width: 600px) {
    .apt-step { gap: 18px; padding-bottom: 28px; }
    .apt-dot { width: 48px; height: 48px; }
    .apt-line { left: 23px; top: 24px; bottom: 24px; }
    .apt-num { font-size: 0.8rem; }
    .apt-header { flex-direction: column; gap: 6px; }
    .apt-tag { margin-top: 0; }
    .apt-card { padding: 16px 18px; }
}


/* ==============================
   ROADMAP apt-card extensions (transzformacio.php)
   ============================== */
.rm-sub {
    font-size: 0.88rem;
    color: #6541CC;
    font-weight: 600;
    margin: 0 0 10px;
}
.rm-items {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rm-items li {
    font-size: 0.88rem;
    color: #444;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}
.rm-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6541CC;
}
.rm-out {
    background: #faf8ff;
    border: 1px solid #ede8f8;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}
.rm-out-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6541CC;
    margin-bottom: 4px;
}
.rm-out p {
    font-size: 0.85rem;
    color: #444;
    margin: 0;
    line-height: 1.5;
}
.rm-out--exit {
    background: linear-gradient(135deg, #f5f0ff 0%, #ede8f8 100%);
    border-color: #c4b5f8;
}
.rm-out--exit .rm-out-label { color: #4f2cb5; }
.rm-aside {
    font-size: 0.82rem;
    color: #888;
    font-style: italic;
    border-left: 2px solid #ede8f8;
    padding-left: 10px;
    margin: 0;
    line-height: 1.4;
}
.rm-aside--exit {
    border-color: #c4b5f8;
    color: #6541CC;
}
.apt-dot--exit {
    background: linear-gradient(135deg, #6541CC, #A855F7);
    border-color: #6541CC;
}
.apt-dot--exit .apt-num {
    color: #fff;
    font-size: 1.1rem;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .blur-cards--benefits { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .blur-card--benefit { min-height: 280px; }
}
@media (max-width: 768px) {
    .tablet-bezel { padding: 12px 10px 16px; border-radius: 18px; }
    .audit-preview-scroll { padding: 24px 20px; max-height: 480px; }
    .ap-cover-title { font-size: 24px; }
    .ap-cover-company { font-size: 16px; }
    .ap-maturity-row { flex-direction: column; gap: 16px; }
    .ap-maturity-levels { grid-template-columns: 1fr; }
    .ap-issues-grid { grid-template-columns: 1fr; }
    .ap-roi-number { font-size: 36px; }
    .ap-more-items { grid-template-columns: 1fr; }
    .ap-dept-grid { grid-template-columns: 1fr; }
    .ap-solution-metrics { grid-template-columns: 1fr; gap: 6px; }
    .ap-kpi-grid { grid-template-columns: 1fr 1fr; }
    .ap-compliance-checklist { grid-template-columns: 1fr; }
    .ap-pyramid-bar { min-width: 80px; }
    .ap-dept-list li { flex-direction: column; gap: 2px; }
}
@media (max-width: 480px) {
    .audit-preview-scroll { padding: 20px 16px; max-height: 420px; }
    .ap-issue-counts { flex-direction: column; gap: 4px; }
    .ap-kpi-grid { grid-template-columns: 1fr; }
    .ap-kpi-value { font-size: 24px; }
    .ap-arch-row--bottom { flex-direction: column; align-items: center; }
}

/* ============================================
   TRANSZFORMÁCIÓ PAGE — tf-* classes
   ============================================ */

/* === HERO === */
.tf-hero {
    padding: 40px 0 80px;
    background: #fff;
    overflow: hidden;
}
.tf-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tf-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(101,65,204,0.06);
    border: 1px solid rgba(101,65,204,0.12);
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    margin-bottom: 24px;
}
.tf-hero-badge svg {
    width: 18px; height: 18px;
    stroke: var(--primary, #6541CC);
    flex-shrink: 0;
}
.tf-hero-badge span {
    color: var(--primary, #6541CC);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.tf-hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text, #1a1a2e);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.tf-hero-title .highlight {
    background: linear-gradient(269deg, #6541CC 2.78%, #FF7A7A 228.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tf-hero-subtitle {
    color: var(--text-secondary, #64648c);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}
.tf-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.tf-hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(101,65,204,0.25);
    color: var(--primary, #6541CC);
}
.tf-hero-buttons .btn-outline:hover {
    background: rgba(101,65,204,0.06);
    border-color: rgba(101,65,204,0.4);
}

/* Hero stats */
.tf-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.tf-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tf-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(269deg, #6541CC 2.78%, #FF7A7A 228.38%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.tf-stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary, #64648c);
    font-weight: 500;
}

/* === LAPTOP MOCKUP === */
.tf-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tf-laptop-mockup {
    width: 100%;
    max-width: 560px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
}
.tf-laptop-screen {
    background: #1a1a2e;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border: 2px solid #2a2a40;
    border-bottom: none;
}
.tf-laptop-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #252540;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tf-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.tf-dot--red { background: #FF5F57; }
.tf-dot--yellow { background: #FFBD2E; }
.tf-dot--green { background: #28CA41; }
.tf-topbar-url {
    margin-left: 12px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
    background: rgba(255,255,255,0.06);
    padding: 3px 12px;
    border-radius: 4px;
    flex: 1;
}
.tf-laptop-gallery {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1a1a2e;
}
.tf-screen-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease;
}
.tf-screen-img--active {
    opacity: 1;
}
.tf-laptop-base {
    height: 16px;
    background: linear-gradient(180deg, #d1d5db 0%, #e5e7eb 100%);
    border-radius: 0 0 4px 4px;
    position: relative;
}
.tf-laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c0c4cc;
    border-radius: 0 0 4px 4px;
}

/* === VALUE CARDS — 6 GRID === */
.tf-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tf-value-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-lg, 16px);
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.tf-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    opacity: 0;
    transition: opacity 0.4s;
}
.tf-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(101,65,204,0.12);
    border-color: rgba(101,65,204,0.2);
}
.tf-value-card:hover::before { opacity: 1; }
.tf-value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(101,65,204,0.1) 0%, rgba(79,70,229,0.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s;
}
.tf-value-card:hover .tf-value-icon {
    background: linear-gradient(135deg, rgba(101,65,204,0.18) 0%, rgba(79,70,229,0.1) 100%);
    transform: scale(1.08);
}
.tf-value-icon svg {
    width: 26px; height: 26px;
    stroke: var(--primary, #6541CC);
}
.tf-value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text, #1a1a2e);
}
.tf-value-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary, #64648c);
}

/* === BEFORE/AFTER CHANGE LIST === */
.tf-change-list {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tf-change-row {
    display: grid;
    grid-template-columns: 200px 1fr 40px 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-lg, 16px);
    transition: all 0.3s;
}
.tf-change-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(101,65,204,0.08);
    border-color: rgba(101,65,204,0.15);
}
.tf-change-task {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text, #1a1a2e);
}
.tf-change-task svg {
    width: 20px; height: 20px;
    stroke: var(--primary, #6541CC);
    flex-shrink: 0;
}
.tf-change-before, .tf-change-after {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
}
.tf-change-before span:last-child {
    color: var(--text-secondary, #64648c);
}
.tf-change-after span:last-child {
    color: var(--text, #1a1a2e);
    font-weight: 600;
}
.tf-change-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}
.tf-change-tag--before {
    background: rgba(239,68,68,0.08);
    color: #EF4444;
}
.tf-change-tag--after {
    background: rgba(16,185,129,0.08);
    color: #10B981;
}
.tf-change-arrow {
    display: flex;
    justify-content: center;
}
.tf-change-arrow svg {
    width: 20px; height: 20px;
    stroke: var(--primary, #6541CC);
}

/* Change box */
.tf-change-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(101,65,204,0.06) 0%, rgba(79,70,229,0.02) 100%);
    border: 1px solid rgba(101,65,204,0.12);
    border-radius: var(--radius-lg, 16px);
}
.tf-change-box-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--primary, #6541CC);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tf-change-box-icon svg {
    width: 24px; height: 24px;
    stroke: #fff;
}
.tf-change-box h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text, #1a1a2e);
}
.tf-change-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary, #64648c);
}

/* === PHOTO ROW === */
.tf-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.tf-photo-row--reverse {
    direction: rtl;
}
.tf-photo-row--reverse > * {
    direction: ltr;
}
.tf-photo-block img {
    width: 100%;
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    transition: transform 0.6s;
}
.tf-photo-block:hover img {
    transform: scale(1.02);
}
.tf-photo-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tf-photo-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text, #1a1a2e);
    line-height: 1.3;
}
.tf-photo-content p {
    color: var(--text-secondary, #64648c);
    font-size: 0.95rem;
    line-height: 1.75;
}
.tf-quote {
    font-style: italic;
    font-size: 1.05rem !important;
    color: var(--text, #1a1a2e) !important;
    border-left: 3px solid var(--primary, #6541CC);
    padding-left: 20px;
    margin: 8px 0;
}

/* === ROADMAP TIMELINE === */
.rm-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 200px;
}

/* Timeline vertical line */
.rm-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 60px;
    bottom: 60px;
    width: 6px;
    background: linear-gradient(180deg,
        #7C3AED 0%,
        #8B5CF6 20%,
        #A855F7 40%,
        #C084FC 60%,
        #D946EF 80%,
        #10b981 100%);
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.25);
    border-radius: 3px;
}

/* Step */
.rm-step {
    position: relative;
    margin-bottom: 100px;
}
.rm-step:last-child { margin-bottom: 0; }

/* Circle badge */
.rm-circle {
    position: absolute;
    left: -200px;
    top: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}
.rm-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.4);
}
.rm-circle-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: -5px;
    opacity: 0.95;
    display: block;
}

/* Progressive circle colors */
.rm-circle--1 { background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%); }
.rm-circle--2 { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); }
.rm-circle--3 { background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%); }
.rm-circle--4 { background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%); }
.rm-circle--5 { background: linear-gradient(135deg, #D946EF 0%, #C084FC 100%); }
.rm-circle--exit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
    animation: rmCelebrate 3s ease-in-out infinite;
}

@keyframes rmCelebrate {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 20px 70px rgba(16, 185, 129, 0.7); }
}

/* Content card */
.rm-content {
    background: #FFFFFF;
    border: 2px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
}
.rm-content:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
}
.rm-step--exit .rm-content {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.12);
}

/* Duration badge */
.rm-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}
.rm-duration svg { stroke: #fff; }
.rm-duration--exit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Titles */
.rm-title {
    font-size: 28px;
    font-weight: 800;
    color: #2C313D;
    margin-bottom: 12px;
    line-height: 1.3;
}
.rm-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Benefits list */
.rm-benefits { margin-top: 24px; }
.rm-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(124, 58, 237, 0.04);
    border-radius: 12px;
    border-left: 3px solid #7C3AED;
    transition: all 0.2s ease;
}
.rm-benefit:hover {
    background: rgba(124, 58, 237, 0.08);
    transform: translateX(4px);
}
.rm-benefit svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    stroke: #7C3AED;
}
.rm-benefit span {
    font-size: 15px;
    font-weight: 600;
    color: #2C313D;
    line-height: 1.6;
}
.rm-step--exit .rm-benefit {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
}
.rm-step--exit .rm-benefit:hover {
    background: rgba(16, 185, 129, 0.08);
}
.rm-step--exit .rm-benefit svg { stroke: #10b981; }

/* Value box */
.rm-value {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
    border-radius: 12px;
    border: 2px solid rgba(124, 58, 237, 0.15);
}
.rm-value-label {
    font-size: 13px;
    font-weight: 800;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}
.rm-value p {
    font-size: 15px;
    font-weight: 600;
    color: #2C313D;
    line-height: 1.7;
    margin: 0;
}
.rm-value--exit {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(5, 150, 105, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}
.rm-value--exit .rm-value-label { color: #10b981; }

/* Motivational quote */
.rm-quote {
    margin-top: 24px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
    border-left: 4px solid #7C3AED;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #7C3AED;
    font-style: italic;
    line-height: 1.5;
}
.rm-quote--exit {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-left-color: #10b981;
    color: #10b981;
}

/* AI Readiness badge */
.rm-readiness {
    position: absolute;
    right: -180px;
    top: 0;
    text-align: center;
    background: #FFFFFF;
    border: 3px solid rgba(124, 58, 237, 0.2);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}
.rm-readiness:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}
.rm-readiness-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.rm-readiness-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6B7280;
    letter-spacing: 1.2px;
}
.rm-readiness--exit {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}
.rm-readiness--exit .rm-readiness-num {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .rm-timeline { padding-left: 160px; }
    .rm-circle { left: -160px; width: 100px; height: 100px; font-size: 40px; }
    .rm-readiness { right: -140px; padding: 16px 20px; }
    .rm-readiness-num { font-size: 28px; }
}

@media (max-width: 1024px) {
    .tf-hero { padding: 30px 0 40px; }
    .tf-hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .tf-hero-subtitle { margin: 0 auto 32px; }
    .tf-hero-buttons { justify-content: center; }
    .tf-hero-stats { justify-content: center; }
    .tf-value-grid { grid-template-columns: repeat(2, 1fr); }
    .tf-photo-row, .tf-photo-row--reverse { grid-template-columns: 1fr; gap: 40px; }
    .tf-photo-row--reverse { direction: ltr; }
    .rm-timeline { padding-left: 120px; }
    .rm-timeline::before { left: 40px; width: 5px; }
    .rm-step { margin-bottom: 80px; }
    .rm-circle { left: -120px; width: 80px; height: 80px; font-size: 32px; }
    .rm-circle-label { font-size: 9px; }
    .rm-title { font-size: 24px; }
    .rm-benefit span { font-size: 14px; }
    .rm-readiness { right: -120px; padding: 14px 18px; }
    .rm-readiness-num { font-size: 24px; }
}

@media (max-width: 768px) {
    .tf-change-row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
    .tf-change-arrow { display: none; }
    .tf-change-before, .tf-change-after { flex-direction: row; align-items: center; gap: 8px; }
    /* Mobile Timeline Layout */
    .rm-timeline { padding-left: 0; padding-top: 40px; }
    .rm-timeline::before { display: none; }
    .rm-step { margin-bottom: 60px; padding-top: 100px; }
    .rm-circle {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        width: 80px; height: 80px;
        font-size: 32px;
    }
    .rm-readiness {
        position: absolute;
        right: 15px;
        top: 15px;
        padding: 12px 16px;
        border-width: 2px;
    }
    .rm-readiness-num { font-size: 20px; }
    .rm-readiness-label { font-size: 9px; }
    .rm-content { padding: 28px 20px; }
    .rm-title { font-size: 22px; }
    .rm-duration { font-size: 13px; padding: 8px 18px; }
    .rm-benefit { padding: 12px; }
    .rm-benefit span { font-size: 13px; }
    .rm-quote { padding: 14px 18px; font-size: 13px; }
    .rm-value { padding: 18px 20px; }
    .rm-value p { font-size: 14px; }
}

@media (max-width: 600px) {
    .tf-value-grid { grid-template-columns: 1fr; }
    .tf-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .tf-change-box { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
    .rm-step { padding-top: 90px; margin-bottom: 50px; }
    .rm-circle { width: 70px; height: 70px; font-size: 28px; }
    .rm-circle-label { font-size: 8px; }
    .rm-readiness { right: 10px; top: 10px; padding: 10px 14px; }
    .rm-readiness-num { font-size: 18px; }
    .rm-readiness-label { font-size: 8px; }
    .rm-content { padding: 24px 16px; }
    .rm-title { font-size: 20px; }
    .rm-duration { font-size: 12px; padding: 7px 16px; }
    .rm-benefit { padding: 10px; margin-bottom: 12px; }
    .rm-benefit svg { width: 18px; height: 18px; }
    .rm-benefit span { font-size: 12px; }
    .rm-quote { padding: 12px 16px; font-size: 12px; }
    .rm-value { padding: 16px 18px; }
    .rm-value-label { font-size: 12px; }
    .rm-value p { font-size: 13px; }
}

/* ============================================
   KEPZES.PHP — Training Page Styles (.tr-*)
   ============================================ */

/* === 3 PROBLEMS === */
.tr-problems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.tr-problem {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-lg, 16px);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.tr-problem::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(90deg, #6541CC, #4F46E5));
    opacity: 0;
    transition: opacity 0.3s;
}
.tr-problem:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(101,65,204,0.1); }
.tr-problem:hover::before { opacity: 1; }
.tr-problem-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(101,65,204,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.tr-problem-icon svg { width: 24px; height: 24px; stroke: var(--primary, #6541CC); }
.tr-problem h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--text, #1a1a2e); }
.tr-problem p { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary, #64648c); margin: 0; }

/* === TRAINING LEVELS === */
.tr-level {
    background: #fff;
    border: 2px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.tr-level:last-child { margin-bottom: 0; }
.tr-level:hover { box-shadow: 0 8px 40px rgba(101,65,204,0.1); }

/* Level header bar */
.tr-level-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(101,65,204,0.04) 0%, rgba(79,70,229,0.01) 100%);
    border-bottom: 1px solid var(--border-light, #e8e8f0);
}

/* Level badge (numbered circle) */
.tr-level-badge {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.5);
}
.tr-level-badge--1 { background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%); box-shadow: 0 8px 24px rgba(124,58,237,0.35); }
.tr-level-badge--2 { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); box-shadow: 0 8px 24px rgba(168,85,247,0.35); }
.tr-level-badge--3 { background: linear-gradient(135deg, #D946EF 0%, #A855F7 100%); box-shadow: 0 8px 24px rgba(217,70,239,0.35); }
.tr-level-num {
    font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
}
.tr-level-tag {
    font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* Level meta */
.tr-level-target {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--primary, #6541CC);
    background: rgba(101,65,204,0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.tr-level-meta h3 {
    font-size: 1.4rem; color: var(--text, #1a1a2e);
    margin: 0 0 6px;
}
.tr-level-tagline {
    font-size: 0.95rem; color: var(--text-secondary, #64648c);
    margin: 0;
}

/* Level stats */
.tr-level-stats {
    display: flex; gap: 24px; flex-shrink: 0;
}
.tr-level-stat {
    text-align: center;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-md, 12px);
}
.tr-level-stat-val {
    display: block;
    font-size: 0.92rem; font-weight: 700;
    color: var(--primary, #6541CC);
    margin-bottom: 2px;
}
.tr-level-stat-label {
    display: block;
    font-size: 0.75rem; color: var(--text-secondary, #64648c);
}

/* Level body */
.tr-level-body {
    padding: 36px 40px;
}
.tr-level-body > p {
    font-size: 0.96rem; line-height: 1.8;
    color: var(--text-secondary, #64648c);
    margin-bottom: 28px;
    max-width: 780px;
}

/* Skills grid */
.tr-level-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.tr-skill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.2s;
}
.tr-skill:hover { transform: translateX(3px); }
.tr-skill svg {
    flex-shrink: 0; width: 18px; height: 18px;
    margin-top: 2px; stroke: var(--primary, #6541CC);
}
.tr-skill span { font-size: 0.9rem; font-weight: 500; color: var(--text, #1a1a2e); line-height: 1.5; }

/* Highlight bar */
.tr-level-highlight {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(101,65,204,0.07) 0%, rgba(79,70,229,0.04) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary, #6541CC);
}
.tr-level-highlight svg {
    flex-shrink: 0; width: 20px; height: 20px;
    margin-top: 2px; stroke: var(--primary, #6541CC);
}
.tr-level-highlight span {
    font-size: 0.95rem; font-weight: 600;
    color: var(--primary, #6541CC); line-height: 1.6;
}

/* === TRANSFORMATION ROADMAP === */
.tr-roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 24px 0 8px;
}
.tr-roadmap-step {
    text-align: center;
    flex-shrink: 0;
    position: relative;
}
.tr-roadmap-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(101,65,204,0.1);
    color: var(--primary, #6541CC);
    font-size: 1.3rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    border: 2px solid rgba(101,65,204,0.2);
    transition: all 0.3s;
}
.tr-roadmap-step--active .tr-roadmap-num {
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    color: #fff;
    box-shadow: 0 8px 24px rgba(101,65,204,0.35);
    border-color: transparent;
    transform: scale(1.15);
}
.tr-roadmap-step--done .tr-roadmap-num {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(16,185,129,0.3);
}
.tr-roadmap-badge {
    position: absolute;
    top: -28px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #6541CC);
    color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.tr-roadmap-label {
    font-size: 0.82rem; font-weight: 700;
    color: var(--text, #1a1a2e);
    margin-bottom: 4px;
}
.tr-roadmap-desc {
    font-size: 0.75rem; color: var(--text-secondary, #64648c);
    max-width: 100px;
    line-height: 1.4;
}
.tr-roadmap-arrow {
    flex-shrink: 0; padding: 0 12px; padding-bottom: 30px;
}
.tr-roadmap-arrow svg { width: 20px; height: 20px; stroke: rgba(101,65,204,0.3); }

/* === CTA === */
.tr-cta {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: #fff;
    border: 2px solid rgba(101,65,204,0.12);
    border-radius: var(--radius-xl, 24px);
    box-shadow: 0 8px 40px rgba(101,65,204,0.08);
}
.tr-cta h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--text, #1a1a2e);
    margin-bottom: 16px;
    line-height: 1.35;
}
.tr-cta > p {
    font-size: 1rem; line-height: 1.8;
    color: var(--text-secondary, #64648c);
    margin-bottom: 28px;
}
.tr-cta-features {
    display: flex; gap: 24px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 32px;
}
.tr-cta-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--text, #1a1a2e);
}
.tr-cta-feat svg { width: 18px; height: 18px; stroke: var(--primary, #6541CC); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .tr-level-header { grid-template-columns: auto 1fr; gap: 24px; }
    .tr-level-stats { grid-column: 1 / -1; flex-wrap: wrap; gap: 12px; }
    .tr-level-stat { flex: 1; min-width: 120px; }
}
@media (max-width: 768px) {
    .tr-problems { grid-template-columns: 1fr; gap: 16px; }
    .tr-level-header { grid-template-columns: auto 1fr; padding: 24px; }
    .tr-level-body { padding: 24px; }
    .tr-level-body > p { margin-bottom: 20px; }
    .tr-level-grid { grid-template-columns: 1fr; }
    .tr-roadmap { gap: 0; justify-content: flex-start; }
    .tr-roadmap-arrow { padding: 0 8px 30px; }
    .tr-roadmap-desc { max-width: 80px; font-size: 0.68rem; }
    .tr-cta { padding: 36px 24px; }
}
@media (max-width: 600px) {
    .tr-level-header { grid-template-columns: 1fr; text-align: center; }
    .tr-level-badge { margin: 0 auto; }
    .tr-level-target { display: block; text-align: center; }
    .tr-level-stats { justify-content: center; }
    .tr-roadmap { gap: 0; }
    .tr-roadmap-step { min-width: 72px; }
    .tr-roadmap-arrow { padding: 0 4px 30px; }
    .tr-roadmap-desc { display: none; }
}

/* ============================================
   WORKSPACE.PHP — Workspace Page Styles (.ws-*)
   ============================================ */

/* === FEATURES GRID === */
.ws-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ws-feature {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-lg, 16px);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.ws-feature::before { display: none; }
.ws-feature:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(101,65,204,0.13); }

/* Photo + overlay visual header */
.wf-visual {
    position: relative;
    height: 196px;
    overflow: hidden;
    border-radius: var(--radius-lg, 16px) var(--radius-lg, 16px) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wf-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 0.5s ease;
}
.ws-feature:hover .wf-photo { transform: scale(1.12); }
.wf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(18,8,42,0.88) 0%, rgba(101,65,204,0.68) 100%);
}
.wf-mockup {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 18px 4px;
}
.wf-mockup svg {
    width: 100%;
    height: auto;
    max-height: 116px;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.35));
}
.wf-use {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 7px 14px;
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.75);
    font-size: 0.7rem;
    line-height: 1.35;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.wf-use strong { color: #fff; font-weight: 600; }
.wf-body { padding: 18px 22px 22px; }
.wf-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 8px; color: var(--text, #1a1a2e); }
.wf-body p { font-size: 0.875rem; line-height: 1.72; color: var(--text-secondary, #64648c); margin: 0; }

/* === BLOG GRID === */
.ws-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ws-blog-card {
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
}
.ws-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(101,65,204,0.14);
}

/* Blog card header — coloured top area */
.ws-blog-header {
    padding: 32px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ws-blog-header--sales {
    background: linear-gradient(135deg, #6541CC 0%, #4F46E5 100%);
}
.ws-blog-header--knowledge {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
}
.ws-blog-header--admin {
    background: linear-gradient(135deg, #0ea5e9 0%, #6541CC 100%);
}

.ws-blog-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.18);
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
}
.ws-blog-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.ws-blog-icon svg { width: 30px; height: 30px; stroke: #fff; }

.ws-blog-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ws-blog-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ws-blog-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Blog card body */
.ws-blog-body {
    padding: 28px;
}
.ws-blog-body h3 {
    font-size: 1.15rem;
    color: var(--text, #1a1a2e);
    margin-bottom: 12px;
    line-height: 1.35;
}
.ws-blog-body > p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary, #64648c);
    margin-bottom: 20px;
}
.ws-blog-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ws-blog-list li {
    font-size: 0.88rem;
    color: var(--text, #1a1a2e);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.ws-blog-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary, #6541CC);
}

/* === SECURITY GRID === */
.ws-security {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ws-sec-item {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-lg, 16px);
    transition: all 0.3s;
}
.ws-sec-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(101,65,204,0.1);
    border-color: rgba(101,65,204,0.2);
}
.ws-sec-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(101,65,204,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.ws-sec-icon svg { width: 24px; height: 24px; stroke: var(--primary, #6541CC); }
.ws-sec-item h4 { font-size: 1rem; margin-bottom: 10px; color: var(--text, #1a1a2e); }
.ws-sec-item p { font-size: 0.87rem; line-height: 1.7; color: var(--text-secondary, #64648c); margin: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .ws-features { grid-template-columns: repeat(2, 1fr); }
    .ws-blog-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .ws-security { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ws-features { grid-template-columns: 1fr; }
    .ws-security { grid-template-columns: 1fr; }
}

/* ============================================
   VOICE-AGENT.PHP — Voice Agent Styles (.va-*)
   ============================================ */

/* === HERO === */
.va-hero { overflow: visible; }

/* Stats row */
.va-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light, #e8e8f0);
}
.va-hero-stat { text-align: center; }
.va-hero-stat-num {
    display: block;
    font-size: 1.5rem; font-weight: 800;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 4px;
}
.va-hero-stat-label {
    display: block;
    font-size: 0.78rem; color: var(--text-secondary, #64648c);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.va-hero-stat-divider {
    width: 1px; height: 36px;
    background: var(--border-light, #e8e8f0);
    flex-shrink: 0;
}

/* === PHONE VISUAL === */
.va-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 60px;
}
.va-phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,65,204,0.15) 0%, transparent 70%);
    animation: vaGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes vaGlowPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

/* Phone silhouette */
.va-phone {
    width: 240px;
    background: linear-gradient(160deg, #1c1c2e 0%, #12121f 100%);
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(101,65,204,0.3),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.va-phone-notch {
    width: 80px; height: 22px;
    background: #0a0a14;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative; z-index: 1;
}
.va-phone-screen {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 380px;
}
.va-phone-chin {
    height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.va-phone-chin::after {
    content: '';
    width: 60px; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

/* Phone header */
.va-phone-header {
    display: flex; align-items: center; gap: 12px;
}
.va-phone-caller {
    display: flex; flex-direction: column; gap: 2px;
}
.va-phone-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6541CC, #4F46E5);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.va-phone-avatar svg { width: 22px; height: 22px; stroke: #fff; }
.va-phone-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.va-phone-status {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.72rem; color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* Pulse dot */
.va-pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: vaPulse 2s ease-in-out infinite;
}
@keyframes vaPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* Wave animation */
.va-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 52px;
    padding: 4px 0;
}
.va-wave-bar {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #a78bfa 0%, #6541CC 100%);
    animation: vaWave 1.2s ease-in-out infinite;
}
.va-wave-bar:nth-child(1)  { height: 16px; animation-delay: 0s; }
.va-wave-bar:nth-child(2)  { height: 24px; animation-delay: 0.1s; }
.va-wave-bar:nth-child(3)  { height: 36px; animation-delay: 0.2s; }
.va-wave-bar:nth-child(4)  { height: 44px; animation-delay: 0.15s; }
.va-wave-bar:nth-child(5)  { height: 52px; animation-delay: 0.05s; }
.va-wave-bar:nth-child(6)  { height: 44px; animation-delay: 0.25s; }
.va-wave-bar:nth-child(7)  { height: 52px; animation-delay: 0.1s; }
.va-wave-bar:nth-child(8)  { height: 36px; animation-delay: 0.2s; }
.va-wave-bar:nth-child(9)  { height: 28px; animation-delay: 0.3s; }
.va-wave-bar:nth-child(10) { height: 20px; animation-delay: 0.15s; }
.va-wave-bar:nth-child(11) { height: 12px; animation-delay: 0.05s; }
@keyframes vaWave {
    0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Timer */
.va-phone-timer {
    text-align: center;
    font-size: 1.6rem; font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

/* Transcript */
.va-phone-transcript {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.va-transcript-line {
    font-size: 0.7rem;
    padding: 6px 10px;
    border-radius: 10px;
    max-width: 90%;
    line-height: 1.4;
}
.va-transcript-ai {
    background: rgba(101,65,204,0.25);
    color: rgba(255,255,255,0.85);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.va-transcript-user {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Action buttons */
.va-phone-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 4px;
}
.va-phone-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.va-phone-btn svg { width: 18px; height: 18px; }
.va-phone-btn--mute  { background: rgba(255,255,255,0.1); }
.va-phone-btn--mute svg { stroke: rgba(255,255,255,0.6); }
.va-phone-btn--end   { background: #ef4444; }
.va-phone-btn--end svg { stroke: #fff; }
.va-phone-btn--speaker { background: rgba(255,255,255,0.1); }
.va-phone-btn--speaker svg { stroke: rgba(255,255,255,0.6); }
.va-phone-btn:hover { transform: scale(1.1); }

/* Floating badges */
.va-badge {
    position: absolute;
    display: flex; align-items: center; gap: 6px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--text, #1a1a2e);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.va-badge svg { width: 16px; height: 16px; stroke: #10b981; }
.va-badge--tl { top: 10px; left: 10px; }
.va-badge--br { bottom: 10px; right: 10px; }
.va-badge--br svg { stroke: var(--primary, #6541CC); }

/* === USE CASES GRID === */
.va-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.va-case-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    transition: all 0.3s;
}
.va-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(101,65,204,0.12);
    border-color: rgba(101,65,204,0.2);
}
.va-case-icon {
    height: 80px;
    display: flex; align-items: center; justify-content: center;
}
.va-case-icon svg { width: 32px; height: 32px; stroke: #fff; }
.va-case-icon--health      { background: linear-gradient(135deg, #6541CC 0%, #4F46E5 100%); }
.va-case-icon--realestate  { background: linear-gradient(135deg, #7C3AED 0%, #6541CC 100%); }
.va-case-icon--hospitality { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }
.va-case-icon--auto        { background: linear-gradient(135deg, #0ea5e9 0%, #6541CC 100%); }
.va-case-icon--logistics   { background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%); }
.va-case-icon--finance     { background: linear-gradient(135deg, #D946EF 0%, #A855F7 100%); }

.va-case-body { padding: 24px; }
.va-case-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--primary, #6541CC);
    background: rgba(101,65,204,0.08);
    padding: 3px 10px; border-radius: 50px;
    margin-bottom: 10px;
}
.va-case-body h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text, #1a1a2e); }
.va-case-body p  { font-size: 0.87rem; line-height: 1.7; color: var(--text-secondary, #64648c); margin-bottom: 16px; }
.va-case-metric {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700;
    color: #10b981;
    padding: 8px 12px;
    background: rgba(16,185,129,0.07);
    border-radius: 8px;
}
.va-case-metric svg { width: 16px; height: 16px; stroke: #10b981; flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .va-hero .tf-hero-container { grid-template-columns: 1fr; }  /* already handled by tf-hero */
    .va-hero-stats { justify-content: center; }
    .va-hero-visual { padding: 20px; }
    .va-badge--tl { top: 0; left: -10px; }
    .va-badge--br { bottom: 0; right: -10px; }
    .va-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .va-hero-stats { justify-content: center; }
}
@media (max-width: 600px) {
    .va-hero { padding: 72px 0 60px; }
    .va-phone { width: 200px; border-radius: 28px; }
    .va-phone-screen { min-height: 280px; padding: 10px 14px 14px; gap: 10px; }
    .va-phone-notch { width: 60px; height: 16px; border-radius: 0 0 10px 10px; }
    .va-phone-avatar { width: 30px; height: 30px; }
    .va-phone-avatar svg { width: 16px; height: 16px; }
    .va-phone-name { font-size: 0.75rem; }
    .va-phone-status { font-size: 0.62rem; }
    .va-wave { gap: 3px; padding: 8px 0; }
    .va-wave-bar { width: 3px; border-radius: 2px; }
    .va-wave-bar:nth-child(1)  { height: 10px; }
    .va-wave-bar:nth-child(2)  { height: 16px; }
    .va-wave-bar:nth-child(3)  { height: 22px; }
    .va-wave-bar:nth-child(4)  { height: 28px; }
    .va-wave-bar:nth-child(5)  { height: 34px; }
    .va-wave-bar:nth-child(6)  { height: 28px; }
    .va-wave-bar:nth-child(7)  { height: 34px; }
    .va-wave-bar:nth-child(8)  { height: 22px; }
    .va-wave-bar:nth-child(9)  { height: 16px; }
    .va-wave-bar:nth-child(10) { height: 12px; }
    .va-wave-bar:nth-child(11) { height: 8px; }
    .va-phone-timer { font-size: 1.3rem; letter-spacing: 3px; }
    .va-phone-transcript { gap: 4px; }
    .va-transcript-line { font-size: 0.68rem; padding: 5px 9px; max-width: 88%; }
    .va-phone-actions { gap: 14px; padding-top: 6px; }
    .va-phone-btn { width: 36px; height: 36px; }
    .va-phone-btn svg { width: 14px; height: 14px; }
    .va-phone-chin { height: 14px; }
    .va-phone-chin::after { width: 44px; height: 3px; }
    .va-phone-glow { width: 220px; height: 220px; }
    .va-cases-grid { grid-template-columns: 1fr; }
    .va-badge { font-size: 0.7rem; padding: 6px 12px; }
}

/* ============================================
   NOTE-TAKER.PHP — Google Meet Mockup (.nt-*)
   ============================================ */

/* === GOOGLE MEET SCREEN (inside tf-laptop-mockup) === */
.nt-meet-screen {
    background: #202124;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

/* Meet top bar */
.nt-meet-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #202124;
    flex-shrink: 0;
}
.nt-meet-info {
    display: flex; align-items: center; gap: 10px;
}
.nt-meet-name-tag {
    font-size: 0.75rem; font-weight: 600;
    color: #e8eaed;
}
.nt-meet-time {
    font-size: 0.72rem; color: #9aa0a6;
    font-variant-numeric: tabular-nums;
}
.nt-meet-rec {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700;
    color: #e8eaed;
    background: rgba(239,68,68,0.2);
    border: 1px solid rgba(239,68,68,0.4);
    padding: 3px 8px;
    border-radius: 50px;
}
.nt-rec-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: ntRecBlink 1.4s ease-in-out infinite;
}
@keyframes ntRecBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

/* 2x2 video grid */
.nt-meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0 4px;
    flex: 1;
}
.nt-meet-tile {
    background: #2d2e30;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 8px 8px;
    position: relative;
    min-height: 80px;
    gap: 6px;
    overflow: hidden;
    transition: all 0.3s;
}
.nt-meet-tile--speaking {
    outline: 2px solid #1a73e8;
    outline-offset: -2px;
}
.nt-meet-tile--ai {
    background: #1c1c2e;
    outline: 1px solid rgba(101,65,204,0.4);
    outline-offset: -1px;
}

/* Tile avatar */
.nt-tile-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--tc, #6541CC);
    color: #fff;
    font-size: 0.72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nt-tile-avatar--ai {
    background: linear-gradient(135deg, #6541CC 0%, #4F46E5 100%);
}
.nt-tile-avatar--ai svg { width: 18px; height: 18px; stroke: #fff; }

/* Tile name label */
.nt-tile-label {
    font-size: 0.62rem; color: #e8eaed;
    background: rgba(0,0,0,0.5);
    padding: 2px 7px;
    border-radius: 4px;
    max-width: 90%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nt-tile-label--ai { color: #a78bfa; }

/* Voice wave bars on speaking tile */
.nt-tile-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 20px;
}
.nt-tile-bar {
    width: 3px;
    border-radius: 3px;
    background: #1a73e8;
    animation: ntTileWave 1s ease-in-out infinite;
}
.nt-tile-bar:nth-child(1) { height: 6px;  animation-delay: 0s; }
.nt-tile-bar:nth-child(2) { height: 14px; animation-delay: 0.12s; }
.nt-tile-bar:nth-child(3) { height: 20px; animation-delay: 0.24s; }
.nt-tile-bar:nth-child(4) { height: 14px; animation-delay: 0.12s; }
.nt-tile-bar:nth-child(5) { height: 6px;  animation-delay: 0s; }
@keyframes ntTileWave {
    0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    50%       { transform: scaleY(1);   opacity: 1; }
}

/* Live transcript strip */
.nt-meet-transcript-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
    overflow: hidden;
}
.nt-transcript-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 5px;
    background: rgba(101,65,204,0.3);
    display: flex; align-items: center; justify-content: center;
}
.nt-transcript-icon svg { width: 11px; height: 11px; stroke: #a78bfa; }
.nt-transcript-live {
    font-size: 0.65rem;
    color: #e8eaed;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nt-transcript-cursor {
    display: inline-block;
    width: 2px; height: 11px;
    background: #a78bfa;
    border-radius: 1px;
    animation: ntCursorBlink 1s step-end infinite;
    flex-shrink: 0;
}
@keyframes ntCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.nt-transcript-badge {
    flex-shrink: 0;
    font-size: 0.6rem; font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    padding: 2px 7px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Controls bar */
.nt-meet-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: #202124;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.nt-ctrl-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: #3c4043;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.nt-ctrl-btn:hover { background: #4a4d50; }
.nt-ctrl-btn svg { width: 14px; height: 14px; stroke: #e8eaed; }
.nt-ctrl-btn--end {
    background: #ea4335;
    width: 38px; height: 38px;
}
.nt-ctrl-btn--end:hover { background: #d33; }
.nt-ctrl-btn--end svg { stroke: #fff; }

/* ============================================
   VOICE-AGENT.PHP — Voice Agent Styles (.va-*)
   ============================================ */

/* === HERO === */
.va-hero { overflow: visible; }

/* Stats row */
.va-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light, #e8e8f0);
}
.va-hero-stat { text-align: center; }
.va-hero-stat-num {
    display: block;
    font-size: 1.5rem; font-weight: 800;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 4px;
}
.va-hero-stat-label {
    display: block;
    font-size: 0.78rem; color: var(--text-secondary, #64648c);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.va-hero-stat-divider {
    width: 1px; height: 36px;
    background: var(--border-light, #e8e8f0);
    flex-shrink: 0;
}

/* === PHONE VISUAL === */
.va-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 60px;
}
.va-phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,65,204,0.15) 0%, transparent 70%);
    animation: vaGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes vaGlowPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

/* Phone silhouette */
.va-phone {
    width: 240px;
    background: linear-gradient(160deg, #1c1c2e 0%, #12121f 100%);
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(101,65,204,0.3),
        inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.va-phone-notch {
    width: 80px; height: 22px;
    background: #0a0a14;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative; z-index: 1;
}
.va-phone-screen {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 380px;
}
.va-phone-chin {
    height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.va-phone-chin::after {
    content: '';
    width: 60px; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

/* Phone header */
.va-phone-header {
    display: flex; align-items: center; gap: 12px;
}
.va-phone-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6541CC, #4F46E5);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.va-phone-avatar svg { width: 22px; height: 22px; stroke: #fff; }
.va-phone-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.va-phone-status {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.72rem; color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* Pulse dot */
.va-pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: vaPulse 2s ease-in-out infinite;
}
@keyframes vaPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* Wave animation */
.va-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 52px;
    padding: 4px 0;
}
.va-wave-bar {
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #a78bfa 0%, #6541CC 100%);
    animation: vaWave 1.2s ease-in-out infinite;
}
.va-wave-bar:nth-child(1)  { height: 16px; animation-delay: 0s; }
.va-wave-bar:nth-child(2)  { height: 24px; animation-delay: 0.1s; }
.va-wave-bar:nth-child(3)  { height: 36px; animation-delay: 0.2s; }
.va-wave-bar:nth-child(4)  { height: 44px; animation-delay: 0.15s; }
.va-wave-bar:nth-child(5)  { height: 52px; animation-delay: 0.05s; }
.va-wave-bar:nth-child(6)  { height: 44px; animation-delay: 0.25s; }
.va-wave-bar:nth-child(7)  { height: 52px; animation-delay: 0.1s; }
.va-wave-bar:nth-child(8)  { height: 36px; animation-delay: 0.2s; }
.va-wave-bar:nth-child(9)  { height: 28px; animation-delay: 0.3s; }
.va-wave-bar:nth-child(10) { height: 20px; animation-delay: 0.15s; }
.va-wave-bar:nth-child(11) { height: 12px; animation-delay: 0.05s; }
@keyframes vaWave {
    0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Timer */
.va-phone-timer {
    text-align: center;
    font-size: 1.6rem; font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

/* Transcript */
.va-phone-transcript {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.va-transcript-line {
    font-size: 0.7rem;
    padding: 6px 10px;
    border-radius: 10px;
    max-width: 90%;
    line-height: 1.4;
}
.va-transcript-ai {
    background: rgba(101,65,204,0.25);
    color: rgba(255,255,255,0.85);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.va-transcript-user {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Action buttons */
.va-phone-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 4px;
}
.va-phone-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.va-phone-btn svg { width: 18px; height: 18px; }
.va-phone-btn--mute  { background: rgba(255,255,255,0.1); }
.va-phone-btn--mute svg { stroke: rgba(255,255,255,0.6); }
.va-phone-btn--end   { background: #ef4444; }
.va-phone-btn--end svg { stroke: #fff; }
.va-phone-btn--speaker { background: rgba(255,255,255,0.1); }
.va-phone-btn--speaker svg { stroke: rgba(255,255,255,0.6); }
.va-phone-btn:hover { transform: scale(1.1); }

/* Floating badges */
.va-badge {
    position: absolute;
    display: flex; align-items: center; gap: 6px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--text, #1a1a2e);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.va-badge svg { width: 16px; height: 16px; stroke: #10b981; }
.va-badge--tl { top: 10px; left: 10px; }
.va-badge--br { bottom: 10px; right: 10px; }
.va-badge--br svg { stroke: var(--primary, #6541CC); }

/* === USE CASES GRID === */
.va-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.va-case-card {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    transition: all 0.3s;
}
.va-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(101,65,204,0.12);
    border-color: rgba(101,65,204,0.2);
}
.va-case-icon {
    height: 80px;
    display: flex; align-items: center; justify-content: center;
}
.va-case-icon svg { width: 32px; height: 32px; stroke: #fff; }
.va-case-icon--health      { background: linear-gradient(135deg, #6541CC 0%, #4F46E5 100%); }
.va-case-icon--realestate  { background: linear-gradient(135deg, #7C3AED 0%, #6541CC 100%); }
.va-case-icon--hospitality { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }
.va-case-icon--auto        { background: linear-gradient(135deg, #0ea5e9 0%, #6541CC 100%); }
.va-case-icon--logistics   { background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%); }
.va-case-icon--finance     { background: linear-gradient(135deg, #D946EF 0%, #A855F7 100%); }

.va-case-body { padding: 24px; }
.va-case-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--primary, #6541CC);
    background: rgba(101,65,204,0.08);
    padding: 3px 10px; border-radius: 50px;
    margin-bottom: 10px;
}
.va-case-body h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text, #1a1a2e); }
.va-case-body p  { font-size: 0.87rem; line-height: 1.7; color: var(--text-secondary, #64648c); margin-bottom: 16px; }
.va-case-metric {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700;
    color: #10b981;
    padding: 8px 12px;
    background: rgba(16,185,129,0.07);
    border-radius: 8px;
}
.va-case-metric svg { width: 16px; height: 16px; stroke: #10b981; flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .va-hero .tf-hero-container { grid-template-columns: 1fr; }  /* already handled by tf-hero */
    .va-hero-stats { justify-content: center; }
    .va-hero-visual { padding: 20px; }
    .va-badge--tl { top: 0; left: -10px; }
    .va-badge--br { bottom: 0; right: -10px; }
    .va-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .va-hero-stats { justify-content: center; }
}
@media (max-width: 600px) {
    .va-hero { padding: 72px 0 60px; }
    .va-phone { width: 200px; border-radius: 28px; }
    .va-phone-screen { min-height: 280px; padding: 10px 14px 14px; gap: 10px; }
    .va-phone-notch { width: 60px; height: 16px; border-radius: 0 0 10px 10px; }
    .va-phone-avatar { width: 30px; height: 30px; }
    .va-phone-avatar svg { width: 16px; height: 16px; }
    .va-phone-name { font-size: 0.75rem; }
    .va-phone-status { font-size: 0.62rem; }
    .va-wave { gap: 3px; padding: 8px 0; }
    .va-wave-bar { width: 3px; border-radius: 2px; }
    .va-wave-bar:nth-child(1)  { height: 10px; }
    .va-wave-bar:nth-child(2)  { height: 16px; }
    .va-wave-bar:nth-child(3)  { height: 22px; }
    .va-wave-bar:nth-child(4)  { height: 28px; }
    .va-wave-bar:nth-child(5)  { height: 34px; }
    .va-wave-bar:nth-child(6)  { height: 28px; }
    .va-wave-bar:nth-child(7)  { height: 34px; }
    .va-wave-bar:nth-child(8)  { height: 22px; }
    .va-wave-bar:nth-child(9)  { height: 16px; }
    .va-wave-bar:nth-child(10) { height: 12px; }
    .va-wave-bar:nth-child(11) { height: 8px; }
    .va-phone-timer { font-size: 1.3rem; letter-spacing: 3px; }
    .va-phone-transcript { gap: 4px; }
    .va-transcript-line { font-size: 0.68rem; padding: 5px 9px; max-width: 88%; }
    .va-phone-actions { gap: 14px; padding-top: 6px; }
    .va-phone-btn { width: 36px; height: 36px; }
    .va-phone-btn svg { width: 14px; height: 14px; }
    .va-phone-chin { height: 14px; }
    .va-phone-chin::after { width: 44px; height: 3px; }
    .va-phone-glow { width: 220px; height: 220px; }
    .va-cases-grid { grid-template-columns: 1fr; }
    .va-badge { font-size: 0.7rem; padding: 6px 12px; }
}

/* ============================================
   NOTE-TAKER.PHP — Notetaker Styles (.nt-*)
   ============================================ */

/* === MEETING MOCKUP WRAPPER === */
.nt-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

/* === MEETING WINDOW === */
.nt-meeting {
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(101,65,204,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.nt-meeting-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #6541CC 0%, #4F46E5 100%);
}
.nt-meeting-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 700; color: #fff;
}
.nt-meeting-title svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); }

/* REC indicator */
.nt-rec {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 50px;
}
.nt-rec-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: ntRecBlink 1.4s ease-in-out infinite;
}
@keyframes ntRecBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Participants row */
.nt-participants {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px 10px;
}
.nt-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--c, #6541CC);
    color: #fff;
    font-size: 0.68rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: transform 0.2s;
}
.nt-avatar--active {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    animation: ntActivePulse 2s ease-in-out infinite;
}
@keyframes ntActivePulse {
    0%, 100% { outline-color: #10b981; }
    50% { outline-color: rgba(16,185,129,0.4); }
}
.nt-avatar--ai {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-size: 0.6rem;
}

/* Transcript */
.nt-transcript {
    padding: 4px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nt-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: ntFadeIn 0.5s ease forwards;
    opacity: 0;
}
.nt-line { animation-delay: 0.2s; }
.nt-line--2 { animation-delay: 0.8s; }
.nt-line--3 { animation-delay: 1.4s; }
@keyframes ntFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.nt-speaker {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--c, #6541CC);
    color: #fff;
    font-size: 0.6rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.nt-text {
    font-size: 0.82rem;
    color: var(--text, #1a1a2e);
    line-height: 1.5;
    background: rgba(101,65,204,0.04);
    padding: 6px 10px;
    border-radius: 8px;
    border-bottom-left-radius: 2px;
}
.nt-cursor {
    width: 10px; height: 18px;
    background: var(--primary, #6541CC);
    border-radius: 2px;
    animation: ntCursorBlink 1s step-end infinite;
    margin-left: 34px;
}
@keyframes ntCursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* === SUMMARY CARD === */
.nt-summary {
    background: #fff;
    border: 1px solid rgba(101,65,204,0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(101,65,204,0.08);
    animation: ntFadeIn 0.5s ease 2s forwards;
    opacity: 0;
}
.nt-summary-header {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(101,65,204,0.04);
    border-bottom: 1px solid rgba(101,65,204,0.08);
    font-size: 0.82rem; font-weight: 600;
    color: var(--text, #1a1a2e);
}
.nt-summary-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nt-summary-icon svg { width: 14px; height: 14px; stroke: #fff; }
.nt-summary-tag {
    margin-left: auto;
    font-size: 0.7rem; font-weight: 700;
    background: rgba(16,185,129,0.12);
    color: #10b981;
    padding: 2px 10px;
    border-radius: 50px;
}
.nt-tasks { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.nt-task {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; color: var(--text, #1a1a2e);
}
.nt-task b { color: var(--primary, #6541CC); }
.nt-task-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-light, #e8e8f0);
    flex-shrink: 0;
}
.nt-task-check--done {
    border-color: #10b981;
    background: #10b981;
    position: relative;
}
.nt-task-check--done::after {
    content: '';
    position: absolute;
    left: 3px; top: 1px;
    width: 8px; height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.nt-task-due {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--text-secondary, #64648c);
    background: rgba(101,65,204,0.06);
    padding: 2px 8px;
    border-radius: 50px;
}

/* === FLOATING BADGES === */
.nt-crm-badge,
.nt-notif-badge {
    position: absolute;
    display: flex; align-items: center; gap: 6px;
    background: #fff;
    border: 1px solid var(--border-light, #e8e8f0);
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--text, #1a1a2e);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    white-space: nowrap;
}
.nt-crm-badge svg  { width: 15px; height: 15px; stroke: #10b981; }
.nt-notif-badge svg { width: 15px; height: 15px; stroke: var(--primary, #6541CC); }
.nt-crm-badge   { right: -20px; top: 30px; animation: ntFadeIn 0.5s ease 2.5s forwards; opacity: 0; }
.nt-notif-badge { right: -20px; bottom: 60px; animation: ntFadeIn 0.5s ease 3s forwards; opacity: 0; }

/* === HOW IT WORKS — 4-STEP FLOW === */
.nt-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.nt-flow-step {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
}
.nt-flow-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary, linear-gradient(135deg, #6541CC, #4F46E5));
    color: #fff;
    font-size: 0.9rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(101,65,204,0.3);
}
.nt-flow-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(101,65,204,0.08);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}
.nt-flow-step:hover .nt-flow-icon {
    background: rgba(101,65,204,0.14);
    transform: translateY(-3px);
}
.nt-flow-icon svg { width: 26px; height: 26px; stroke: var(--primary, #6541CC); }
.nt-flow-step h3 { font-size: 0.98rem; margin-bottom: 8px; color: var(--text, #1a1a2e); }
.nt-flow-step p  { font-size: 0.85rem; line-height: 1.65; color: var(--text-secondary, #64648c); }
.nt-flow-arrow {
    padding: 0 4px;
    padding-top: 88px;
    color: rgba(101,65,204,0.3);
    flex-shrink: 0;
}
.nt-flow-arrow svg { width: 22px; height: 22px; stroke: rgba(101,65,204,0.3); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nt-crm-badge, .nt-notif-badge { right: -10px; }
}
@media (max-width: 768px) {
    .nt-flow { gap: 16px; }
    .nt-flow-arrow { display: none; }
    .nt-flow-step { min-width: 140px; max-width: 160px; }
    .nt-crm-badge, .nt-notif-badge { position: static; margin-top: 8px; justify-content: center; }
}
@media (max-width: 600px) {
    .nt-flow-step { min-width: 100%; max-width: 100%; }
}

/* ============================================================
   TUDÁSDIGITALIZÁLÁS PAGE — .td-*
   ============================================================ */

/* === Brain visual wrapper === */
.td-visual {
    position: relative;
    width: 510px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === Brain SVG (viewBox 480x380) === */
.td-brain-svg {
    width: 480px;
    height: 380px;
    position: relative;
    z-index: 2;
}

/* === Scan beam animation === */
@keyframes tdScan {
    0%   { transform: translateY(-10px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(230px); opacity: 0; }
}
.td-scan-beam {
    animation: tdScan 3s ease-in-out infinite;
    transform-origin: top center;
}

/* === Node pulse === */
@keyframes tdNodePulse {
    0%, 100% { r: 4; opacity: 0.9; }
    50%       { r: 6; opacity: 0.6; }
}
.td-node {
    animation: tdNodePulse 2s ease-in-out infinite;
}
.td-node:nth-child(2) { animation-delay: 0.4s; }
.td-node:nth-child(3) { animation-delay: 0.8s; }
.td-node:nth-child(4) { animation-delay: 0.3s; }
.td-node:nth-child(5) { animation-delay: 0.7s; }
.td-node:nth-child(6) { animation-delay: 1.1s; }
.td-node:nth-child(7) { animation-delay: 0.6s; }
.td-node:nth-child(8) { animation-delay: 1.0s; }

/* === Connecting line dash animation === */
@keyframes tdDash {
    to { stroke-dashoffset: -20; }
}
.td-conn-line {
    animation: tdDash 1.5s linear infinite;
}

/* === Knowledge node cards === */
.td-knode {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 3;
    min-width: 140px;
    max-width: 160px;
}
.td-knode--tl { top:  10px; left:  0px; }
.td-knode--tr { top:  10px; right: 0px; }
.td-knode--bl { bottom: 10px; left: 0px; }
.td-knode--br { bottom: 10px; right: 0px; }

.td-knode-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(124,58,237,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.td-knode-icon svg { width: 16px; height: 16px; stroke: #7c3aed; }

.td-knode-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.td-knode-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}
.td-knode-sub {
    font-size: 0.65rem;
    color: #7c3aed;
    font-weight: 500;
}

/* === Floating badges === */
.td-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
    white-space: nowrap;
    z-index: 4;
}
.td-badge svg { width: 14px; height: 14px; stroke: #7c3aed; flex-shrink: 0; }
.td-badge--top    { top: -8px; left: 50%; transform: translateX(-50%); }
.td-badge--bottom { bottom: -8px; left: 50%; transform: translateX(-50%); }

/* === Responsive === */
@media (max-width: 1200px) {
    .td-visual { width: 430px; height: 345px; }
    .td-brain-svg { width: 410px; height: 325px; }
}
@media (max-width: 1024px) {
    .td-visual { width: 360px; height: 290px; }
    .td-brain-svg { width: 344px; height: 273px; }
    .td-knode { min-width: 110px; padding: 6px 9px; font-size: 0.64rem; }
}
@media (max-width: 860px) {
    .td-visual { width: 300px; height: 300px; }
    .td-brain-svg { width: 286px; height: 286px; }
    .td-knode { min-width: 90px; max-width: 120px; padding: 5px 7px; gap: 5px; }
    .td-knode-icon { width: 24px; height: 24px; border-radius: 6px; }
    .td-knode-icon svg { width: 12px; height: 12px; }
    .td-knode-title { font-size: 0.58rem; }
    .td-knode-sub { font-size: 0.52rem; }
}
@media (max-width: 600px) {
    .td-visual { width: 260px; height: 270px; }
    .td-brain-svg { width: 248px; height: 258px; }
    .td-knode { min-width: 80px; max-width: 105px; padding: 4px 6px; gap: 4px; border-radius: 8px; }
    .td-knode-icon { width: 20px; height: 20px; border-radius: 5px; }
    .td-knode-icon svg { width: 10px; height: 10px; }
    .td-knode-title { font-size: 0.52rem; }
    .td-knode-sub { font-size: 0.48rem; }
    .td-knode--tl { top: 0; left: -5px; }
    .td-knode--tr { top: 0; right: -5px; }
}

/* === HERO GAP FIX — reduce space between header and hero === */
.hero { padding-top: 40px !important; min-height: auto !important; }
.sub-hero { padding-top: 40px !important; }
.audit-hero { padding-top: 40px !important; }
@media (max-width: 768px) {
    .hero { padding-top: 24px !important; }
    .sub-hero { padding-top: 24px !important; }
    .tf-hero { padding-top: 24px !important; }
    .audit-hero { padding-top: 24px !important; }
}

/* ===================================================================
   SOLUTION CARDS (index.php megoldások section)
   =================================================================== */
.sol-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.sol-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ede8f8;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.sol-card:hover {
    box-shadow: 0 12px 40px rgba(101,65,204,0.13);
    transform: translateY(-4px);
}
.sol-card-visual {
    background: #12082a;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.sol-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sol-card-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6541CC;
    margin-bottom: 7px;
    display: block;
    line-height: 1.4;
}
.sol-card h3 {
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}
.sol-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
/* Mini laptop frame */
.sc-laptop { width: 88%; position: relative; }
.sc-laptop-screen {
    background: #0f0a1a;
    border-radius: 8px 8px 0 0;
    border: 2.5px solid #2d1b69;
    overflow: hidden;
}
.sc-topbar {
    background: #1a1033;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sc-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.sc-dot-r { background: #ef4444; }
.sc-dot-y { background: #f59e0b; }
.sc-dot-g { background: #10b981; }
.sc-url {
    flex: 1;
    font-size: 7px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sc-screen-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: top;
    display: block;
}
.sc-laptop-base {
    height: 10px;
    background: #2d1b69;
    border-radius: 0 0 10px 10px;
    width: 108%;
    margin-left: -4%;
}
/* Mini meeting screen (Notetaker) */
.sc-meet-inner { display: flex; flex-direction: column; }
.sc-meet-header {
    background: #202124;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 7px;
    color: rgba(255,255,255,0.7);
    font-family: sans-serif;
}
.sc-rec { display: flex; align-items: center; gap: 3px; }
.sc-rec-dot {
    width: 5px; height: 5px;
    background: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
    animation: scRecPulse 1s ease-in-out infinite;
}
@keyframes scRecPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.sc-meet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #3c4043;
    padding: 2px;
}
.sc-meet-tile {
    background: #202124;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap: 2px;
}
.sc-meet-tile--active { box-shadow: inset 0 0 0 1.5px #1a73e8; }
.sc-meet-tile--ai { background: #1a1033; }
.sc-meet-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    font-family: sans-serif;
}
.sc-wave-mini {
    display: flex;
    align-items: center;
    gap: 1.5px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}
.sc-wave-mini-bar {
    width: 2px;
    background: #1a73e8;
    border-radius: 1px;
    animation: scWaveMini 0.8s ease-in-out infinite alternate;
}
.sc-wave-mini-bar:nth-child(1) { height: 4px; }
.sc-wave-mini-bar:nth-child(2) { height: 8px; animation-delay: 0.15s; }
.sc-wave-mini-bar:nth-child(3) { height: 5px; animation-delay: 0.3s; }
.sc-wave-mini-bar:nth-child(4) { height: 9px; animation-delay: 0.45s; }
@keyframes scWaveMini {
    from { transform: scaleY(1); }
    to { transform: scaleY(1.8); }
}
.sc-meet-transcript {
    background: #1a1a1a;
    padding: 5px 7px;
    font-size: 6.5px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Mini phone (Voice Agent) */
.sc-phone {
    width: 105px;
    background: #1a1033;
    border-radius: 18px;
    border: 2.5px solid #2d1b69;
    overflow: hidden;
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.sc-phone-notch {
    width: 30px; height: 5px;
    background: #2d1b69;
    border-radius: 3px;
    margin: 0 auto;
}
.sc-phone-caller {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 7px;
    padding: 5px;
}
.sc-phone-avatar {
    width: 20px; height: 20px;
    background: #6541CC;
    border-radius: 50%;
    flex-shrink: 0;
}
.sc-phone-name {
    font-size: 7.5px; color: #fff;
    font-weight: 600; font-family: sans-serif;
}
.sc-phone-status {
    font-size: 6px; color: #10b981;
    display: flex; align-items: center; gap: 3px;
    font-family: sans-serif;
}
.sc-pulse {
    width: 5px; height: 5px;
    background: #10b981; border-radius: 50%;
    display: inline-block;
    animation: scRecPulse 1s ease-in-out infinite;
}
.sc-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    height: 28px;
}
.sc-wave-bar {
    width: 3px; background: #A855F7;
    border-radius: 2px;
    animation: scWave 1.2s ease-in-out infinite;
}
.sc-wave-bar:nth-child(1) { height: 7px; animation-delay: 0s; }
.sc-wave-bar:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.sc-wave-bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.sc-wave-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.sc-wave-bar:nth-child(5) { height: 12px; animation-delay: 0.4s; }
.sc-wave-bar:nth-child(6) { height: 8px; animation-delay: 0.5s; }
.sc-wave-bar:nth-child(7) { height: 16px; animation-delay: 0.6s; }
.sc-wave-bar:nth-child(8) { height: 6px; animation-delay: 0.7s; }
@keyframes scWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.7); }
}
.sc-msg {
    background: rgba(101,65,204,0.25);
    border-radius: 6px 6px 6px 2px;
    padding: 4px 6px;
    font-size: 6.5px;
    color: rgba(255,255,255,0.85);
    font-family: sans-serif;
    line-height: 1.3;
}
.sc-msg-user {
    background: rgba(255,255,255,0.08);
    border-radius: 6px 6px 2px 6px;
    text-align: right;
}
.sc-0-24 {
    font-size: 6.5px; color: #10b981;
    text-align: center;
    display: flex; align-items: center;
    justify-content: center; gap: 4px;
    font-family: sans-serif; margin-top: 2px;
}
/* Knowledge graph SVG */
.sc-knowledge-svg {
    width: 90%; height: auto; max-height: 168px;
}
/* Responsive */
@media (max-width: 1100px) {
    .sol-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .sol-cards { grid-template-columns: 1fr; }
    .sol-card-visual { height: 180px; }
}

/* ===================================================================
   AUDIT BENEFIT CARDS (ab-cards)
   =================================================================== */
.ab-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.ab-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ede8f8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.ab-card:hover {
    box-shadow: 0 12px 40px rgba(101,65,204,0.12);
    transform: translateY(-3px);
}
.ab-card-visual {
    background: #faf8ff;
    border-bottom: 1px solid #ede8f8;
    padding: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-svg {
    width: 100%;
    height: auto;
    max-height: 170px;
    display: block;
}
.ab-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ab-card-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6541CC;
    margin-bottom: 8px;
    display: block;
}
.ab-card h3 {
    font-size: 1rem !important;
    color: #1a1a2e !important;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.35;
}
.ab-card p {
    font-size: 0.82rem !important;
    color: #64748b !important;
    line-height: 1.65;
    margin: 0;
}
.ab-card strong { color: #1a1a2e !important; }
.ab-card u { color: #64748b !important; }
@media (max-width: 920px) {
    .ab-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
