/*!
 * Page-Specific Styles
 * Styles extracted from inline <style> blocks in HTML files
 */

/* ============================================
   Enterprise Solutions - SOC Dashboard (realistic screenshot style)
   ============================================ */

.soc-dashboard-screen-wrap {
    padding: 20px 0;
    width: 520px;
    max-width: 100%;
    margin: 0 auto;
    flex-shrink: 0;
}

.soc-dashboard {
    --soc-bg: #0f1114;
    --soc-panel: #16181c;
    --soc-border: #2a2c30;
    --soc-text: #9ca0a8;
    --soc-muted: #4a4d54;
    --soc-ok: #98c379;
    --soc-warn: #e5c07b;
    --soc-danger: #e06c75;
    --soc-accent: #61afef;
    background: var(--soc-bg);
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    color: var(--soc-text);
    font-size: 12px;
    box-shadow:
        inset 0 0 0 14px #0c0d10,
        inset 0 0 0 15px rgba(255,255,255,0.04),
        inset 0 2px 4px rgba(0,0,0,0.35),
        0 8px 24px rgba(0,0,0,0.35),
        0 0 0 1px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1);
}

.soc-dashboard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    border-radius: 4px;
    background: radial-gradient(ellipse at 20% 10%, rgba(80,90,100,0.08) 0%, transparent 50%);
}

.soc-dashboard::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    border-radius: 4px;
    background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, transparent 35%, transparent 100%);
    box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.03);
}

.soc-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #1a1c20;
    border-bottom: 1px solid var(--soc-border);
    flex-wrap: wrap;
    min-width: 0;
}
.soc-product { font-weight: 600; color: #d8dae0; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.soc-time { color: var(--soc-muted); margin-left: auto; font-size: 11px; }
.soc-badge.live {
    background: var(--soc-danger);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: soc-live-blink 1.5s ease-in-out infinite;
}
@keyframes soc-live-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(224,108,117,0.5); }
    50% { opacity: 0.75; box-shadow: 0 0 12px rgba(224,108,117,0.9); }
}
.soc-status { display: flex; align-items: center; gap: 6px; color: var(--soc-ok); font-size: 11px; }
.soc-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.soc-dot.ok { color: var(--soc-ok); box-shadow: 0 0 8px currentColor; }

.soc-kpis {
    display: flex;
    gap: 1px;
    padding: 12px 16px;
    background: #1a1c20;
}
.soc-kpi {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    background: var(--soc-panel);
    border: 1px solid var(--soc-border);
    border-radius: 4px;
    margin: 0 2px;
}
.soc-kpi:first-child { margin-left: 0; }
.soc-kpi:last-child { margin-right: 0; }
.soc-kpi-val {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--soc-ok);
    letter-spacing: 0.02em;
}
.soc-kpi-label { font-size: 10px; color: var(--soc-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.soc-row { display: flex; gap: 12px; padding: 12px 16px; }
.soc-panel {
    background: var(--soc-panel);
    border: 1px solid var(--soc-border);
    border-radius: 4px;
    padding: 10px 12px;
    position: relative;
}
.soc-panel-title {
    font-size: 10px;
    color: var(--soc-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--soc-border);
}
.soc-chart-panel { flex: 1; min-width: 0; }
.soc-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 56px;
}
.soc-bar {
    flex: 1;
    min-width: 6px;
    max-width: 20px;
    background: linear-gradient(180deg, var(--soc-accent) 0%, #3b82a8 100%);
    border-radius: 2px 2px 0 0;
    opacity: 0.9;
}
.soc-map-panel { flex: 1; min-width: 0; }
.soc-map {
    position: relative;
    height: 56px;
    background: radial-gradient(ellipse at center, rgba(60,64,72,0.2) 0%, transparent 70%);
    border-radius: 4px;
}
.soc-map-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--soc-danger);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--soc-danger);
    animation: soc-dot-blink 1.2s ease-in-out infinite;
    transition: top 0.7s ease-out, left 0.7s ease-out;
}
.soc-map-dot:nth-child(1) { animation-delay: 0s; }
.soc-map-dot:nth-child(2) { animation-delay: 0.2s; }
.soc-map-dot:nth-child(3) { animation-delay: 0.4s; }
.soc-map-dot:nth-child(4) { animation-delay: 0.6s; }
.soc-map-dot:nth-child(5) { animation-delay: 0.8s; }
.soc-map-dot:nth-child(6) { animation-delay: 1s; }
@keyframes soc-dot-blink {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--soc-danger), 0 0 12px var(--soc-danger); }
    50% { opacity: 0.25; transform: scale(0.85); box-shadow: 0 0 4px var(--soc-danger); }
}

.soc-events-panel { margin: 0 16px 12px; }
.soc-events {
    font-size: 11px;
    max-height: 140px;
    overflow-y: auto;
}
.soc-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(42,44,48,0.6);
    line-height: 1.3;
    min-width: 0;
}
.soc-event:last-child { border-bottom: none; }
.soc-sev {
    flex-shrink: 0;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.soc-sev.critical { background: rgba(224,108,117,0.25); color: #e06c75; }
.soc-sev.high { background: rgba(229,192,123,0.2); color: #e5c07b; }
.soc-sev.medium { background: rgba(97,175,239,0.2); color: #61afef; }
.soc-ts { flex-shrink: 0; color: var(--soc-muted); min-width: 58px; }
.soc-msg { color: var(--soc-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }

.soc-footer {
    padding: 6px 16px;
    font-size: 10px;
    color: var(--soc-muted);
    border-top: 1px solid var(--soc-border);
    background: #1a1c20;
}

@media (max-width: 768px) {
    .soc-dashboard-screen-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
    .soc-dashboard { min-height: 380px; }
    .soc-topbar { flex-wrap: wrap; }
    .soc-time { margin-left: 0; }
    .soc-kpis { flex-wrap: wrap; }
    .soc-kpi { min-width: calc(50% - 8px); }
    .soc-row { flex-direction: column; }
    .soc-event { flex-wrap: wrap; }
    .soc-msg { white-space: normal; }
}

/* ============================================
   Enterprise Solutions - WHY REDFOX ENTERPRISE (dark, hero-aligned)
   ============================================ */
.why-redfox-section {
    position: relative;
    padding: 70px 0 80px;
    overflow: hidden;
    background-color: #000;
    background-image: radial-gradient(ellipse at bottom, #1a0505 0%, #0d0303 40%, #0a0a0a 70%, #000 100%);
    background-size: 100% 100%;
    background-position: 0 0;
}

.why-redfox-section .container {
    position: relative;
    z-index: 1;
}

.why-redfox-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 85%);
    opacity: 0.9;
}

.why-redfox-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(221, 34, 34, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 88% 75%, rgba(221, 34, 34, 0.06) 0%, transparent 40%);
    mix-blend-mode: screen;
}

.why-redfox-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom right, #fff 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 180, 180, 0.9) 50%, #dd2222 75%, rgba(221, 34, 34, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.02em;
}

.why-redfox-lead {
    max-width: 640px;
    margin: 0 auto 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.65;
}

.why-redfox-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.why-redfox-card {
    background: rgba(22, 22, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem 1.35rem;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-redfox-card:hover {
    border-color: rgba(221, 34, 34, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-redfox-num {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.85rem;
    font-weight: 700;
    color: rgba(221, 34, 34, 0.9);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.why-redfox-card:nth-child(1) .why-redfox-num { font-size: 3.25rem; }
.why-redfox-card:nth-child(2) .why-redfox-num { font-size: 5rem; }
.why-redfox-card:nth-child(3) .why-redfox-num { font-size: 2rem; }
.why-redfox-card:nth-child(4) .why-redfox-num { font-size: 3rem; }
.why-redfox-card:nth-child(5) .why-redfox-num { font-size: 1.35rem; }

.why-redfox-card-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.why-redfox-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.why-redfox-stat {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-redfox-stat-val {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: #dd2222;
    letter-spacing: 0.02em;
}

.why-redfox-stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.2rem;
}

.why-redfox-stat-small .why-redfox-stat-val {
    font-size: 1.35rem;
}

.why-redfox-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-redfox-quote {
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: rgba(22, 22, 26, 0.7);
    border-left: 3px solid rgba(221, 34, 34, 0.7);
    border-radius: 0 6px 6px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-redfox-quote p {
    margin: 0 0 0.75rem;
    font-style: italic;
}

.why-redfox-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.why-redfox-quote-src {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .why-redfox-section {
        padding: 50px 0 60px;
    }
    .why-redfox-title {
        font-size: 1.75rem;
    }
    .why-redfox-lead {
        font-size: 0.98rem;
        margin-bottom: 2rem;
    }
    .why-redfox-num {
        font-size: 1.5rem !important;
    }
    .why-redfox-card:nth-child(1) .why-redfox-num { font-size: 2.5rem !important; }
    .why-redfox-card:nth-child(2) .why-redfox-num { font-size: 3.5rem !important; }
    .why-redfox-card:nth-child(3) .why-redfox-num { font-size: 1.6rem !important; }
    .why-redfox-card:nth-child(4) .why-redfox-num { font-size: 2.35rem !important; }
    .why-redfox-card:nth-child(5) .why-redfox-num { font-size: 1.2rem !important; }
    .why-redfox-cards {
        grid-template-columns: 1fr;
    }
    .why-redfox-quotes {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Enterprise Solutions - FAQ Section Styles
   ============================================ */
.faq-section {
    font-family: 'Montserrat', sans-serif;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-item.active .faq-question {
    background-color: #f0f0f5;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #dd2222;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 64px;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 59px;
    }
}

/* ============================================
   AI Phishing Defender - Coming Soon Styles
   ============================================ */
.coming-soon-overlay {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(153, 27, 27, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.coming-soon-subtitle {
    font-size: 1.8rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out;
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease-out;
}

.ai-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.notify-form {
    max-width: 500px;
    margin: 40px auto;
    animation: fadeInUp 1.6s ease-out;
}

.notify-input {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid white;
    border-radius: 50px;
    width: 100%;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.notify-button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: white;
    color: #dc2626;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hidden-for-later {
    display: none !important;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    .coming-soon-subtitle {
        font-size: 1.4rem;
    }
    .coming-soon-description {
        font-size: 1rem;
    }
}

/* ============================================
   Product Pages - Why Choose List Styles
   ============================================ */
.why-choose-list .check-item {
    margin-bottom: 15px;
    line-height: 1.6;
}

.why-choose-list .red-check {
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    margin-right: 8px;
}

.why-choose-list .item-title {
    font-weight: bold;
}

/* ============================================
   PhishAgent - Infographic Styles
   ============================================ */
.phishagent-infographic {
    width: 100%;
    max-width: 520px;
    height: 350px;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.12) 0%, transparent 45%),
                radial-gradient(circle at 100% 100%, rgba(0,0,0,0.45) 0%, transparent 55%),
                linear-gradient(135deg, #dd2222 0%, #8b1010 55%, #2b0606 100%);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

.phishagent-infographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: phishagent-rotate 20s linear infinite;
}

@keyframes phishagent-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phishagent-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phishagent-title {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phishagent-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.phishagent-step {
    background: rgba(255,255,255,0.96);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.18);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
}

.phishagent-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.phishagent-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, #ffffff 0%, #ffeaea 25%, #dd2222 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.phishagent-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 22px;
    height: 22px;
    background: #dd2222;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.phishagent-step-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.phishagent-step-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

.phishagent-arrow {
    color: white;
    font-size: 25px;
    margin: 0 8px;
    animation: phishagent-pulse 2s infinite;
}

@keyframes phishagent-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.phishagent-bottom-text {
    text-align: center;
    color: white;
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.9;
}

.phishagent-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: phishagent-float 6s ease-in-out infinite;
}

.phishagent-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.phishagent-particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 2s; }
.phishagent-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.phishagent-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1s; }
.phishagent-particle:nth-child(5) { top: 40%; left: 70%; animation-delay: 3s; }

@keyframes phishagent-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .phishagent-infographic {
        height: 300px;
        padding: 20px;
    }
    
    .phishagent-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .phishagent-step {
        width: 110px;
        padding: 12px;
    }
    
    .phishagent-step-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .phishagent-step-title {
        font-size: 11px;
    }
    
    .phishagent-step-desc {
        font-size: 9px;
    }
}

/* ============================================
   PhishIQ - How It Works section (reusable)
   ============================================ */
.product-how-it-works {
    background-color: #ffffff;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    text-align: left;
}
.product-how-it-works-row {
    align-items: center;
}
.product-how-it-works-text {
    padding-right: 2rem;
}
.product-how-it-works-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-how-it-works-list {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.product-how-it-works-list p {
    margin-bottom: 1rem;
}
.product-how-it-works-ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 1rem 0;
}
.product-how-it-works-ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
}
.product-how-it-works-ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #dd2222;
    border-radius: 50%;
}
.product-how-it-works-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991px) {
    .product-how-it-works-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* ============================================
   PhishIQ - Infographic Styles
   ============================================ */
.phishiq-infographic {
    width: 100%;
    max-width: 520px;
    height: 350px;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 40%, #4a2020 100%);
    border-radius: 16px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(221, 34, 34, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.phishiq-infographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: phishiq-rotate 20s linear infinite;
}

/* PhishIQ Plus - allow infographic to be an image wrapper */
.phishiq-infographic.phishiq-infographic--image {
    height: auto;
    padding: 18px;
    background: linear-gradient(135deg, #dd2222 0%, #a01515 55%, #5a0b0b 100%);
    border: 1px solid rgba(255,255,255,0.18);
}
.phishiq-infographic.phishiq-infographic--image::before {
    display: none;
}
.phishiq-infographic-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

@keyframes phishiq-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.phishiq-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phishiq-title {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.phishiq-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.phishiq-step {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    width: 130px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
}

.phishiq-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.phishiq-step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: #dd2222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(221, 34, 34, 0.4);
}

.phishiq-step:nth-child(3) .phishiq-step-icon {
    background: #dd2222;
    box-shadow: 0 4px 15px rgba(221, 34, 34, 0.4);
}

.phishiq-step:nth-child(5) .phishiq-step-icon {
    background: #dd2222;
    box-shadow: 0 4px 15px rgba(221, 34, 34, 0.4);
}

.phishiq-step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 24px;
    height: 24px;
    background: #dd2222;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.phishiq-step-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.phishiq-step-desc {
    font-size: 10px;
    color: #666;
    line-height: 1.3;
}

.phishiq-arrow {
    color: white;
    font-size: 25px;
    margin: 0 8px;
    animation: phishiq-pulse 2s infinite;
}

@keyframes phishiq-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.phishiq-bottom-text {
    text-align: center;
    color: white;
    font-size: 11px;
    margin-top: 15px;
    opacity: 0.9;
}

.phishiq-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: phishiq-float 6s ease-in-out infinite;
}

.phishiq-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.phishiq-particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 2s; }
.phishiq-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 4s; }
.phishiq-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1s; }
.phishiq-particle:nth-child(5) { top: 40%; left: 70%; animation-delay: 3s; }

@keyframes phishiq-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .phishiq-infographic {
        height: 300px;
        padding: 20px;
    }
    
    .phishiq-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .phishiq-step {
        width: 110px;
        padding: 12px;
    }
    
    .phishiq-step-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .phishiq-step-title {
        font-size: 11px;
    }
    
    .phishiq-step-desc {
        font-size: 9px;
    }
}

/* ============================================
   PhishAgent User Guide - PDF Wrapper Styles
   ============================================ */
.pdf-wrapper {
    width: 100%;
    height: calc(100vh - 240px);
    min-height: 600px;
    background: #f4f4f4;
}

.pdf-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #ffffff;
}

/* ============================================
   PhishIQ product page - hero with triangle image
   ============================================ */
#header2-1.phishiq-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 110px;
    background-image:
        linear-gradient(to bottom, #000000 0%, #1a0505 40%, #2b0b0b 65%, #f6ecec 100%);
    color: #ffffff;
    overflow: hidden;
}

#header2-1.phishiq-hero .mbr-section-title.display-4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

#header2-1.phishiq-hero .mbr-section-title.display-10 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #f9fafb;
    margin-bottom: 0.9rem;
}

#header2-1.phishiq-hero .mbr-section-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
}

.phishiq-hero-text {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.phishiq-hero-label {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(248,250,252,0.6);
    color: #f9fafb;
    margin-bottom: 10px;
}

.phishiq-hero-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88%;
    height: 92%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.phishiq-hero-triangle-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #dd2222;
    border-right-color: transparent;
    border-bottom-width: 12px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.5);
    background: #000;
}

.phishiq-hero-triangle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #header2-1.phishiq-hero {
        padding-top: 110px;
        padding-bottom: 80px;
    }
    #header2-1.phishiq-hero .mbr-section-title.display-4 {
        font-size: 1.7rem;
    }
    #header2-1.phishiq-hero .mbr-section-title.display-10 {
        font-size: 1rem;
    }

    .phishiq-hero-text {
        max-width: 100%;
    }

    .phishiq-hero-triangle {
        right: 0;
        width: 100%;
        height: 70%;
        opacity: 0.35;
    }
}

/* ============================================
   Product pages – Intro section (reusable)
   גדלי טקסט שונים, הבלטות, ימין/שמאל, מספרים בולטים, ריבועים/עיגולים
   ============================================ */
.product-intro {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    text-align: left;
}
.product-intro-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 2.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-intro-row {
    align-items: center;
    margin-bottom: 2.5rem;
}
.product-intro-row-reverse .product-intro-col-text { order: 2; }
.product-intro-row-reverse .product-intro-col-stat { order: 1; }
@media (min-width: 992px) {
    .product-intro-row-reverse { flex-direction: row-reverse; }
    .product-intro-row-reverse .product-intro-col-text,
    .product-intro-row-reverse .product-intro-col-stat { order: unset; }
}
.product-intro-col-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;
}
.product-intro-col-text-right {
    margin-top: 1.4rem;
}
.product-intro .product-intro-col-text,
.product-intro .product-intro-col-text p,
.product-intro .product-intro-col-text ul,
.product-intro .product-intro-col-text ol,
.product-intro .product-intro-col-text li {
    text-align: left !important;
}
.product-intro-col-text p { margin-bottom: 1rem; }
.product-intro-col-text p:last-child { margin-bottom: 0; }
.product-intro-lead {
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #1a1a1a !important;
    line-height: 1.55;
    margin-top: 0.25rem;
    margin-bottom: 0.9rem;
}
.product-intro-highlight-line {
    font-size: 1.02rem;
    color: #ffffff;
    padding: 0.7rem 1rem;
    margin: 0.9rem 0 0.4rem 0;
    background: linear-gradient(135deg, #dd2222 0%, #b01c1c 60%, #6f0f0f 100%);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(221,34,34,0.25);
}
.product-intro-kicker {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 2.8rem 0;
    line-height: 1.35;
}
.product-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
    margin: 2.4rem 0 1.75rem 0;
}
.product-fact {
    border-radius: 12px;
    padding: 1.05rem 1.05rem;
    border-left: 4px solid #dd2222;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.product-fact--red {
    background: linear-gradient(135deg, #dd2222 0%, #b01c1c 60%, #6f0f0f 100%);
    border-left-color: rgba(255,255,255,0.35);
    box-shadow: 0 10px 26px rgba(221,34,34,0.28);
}
.product-fact--gray {
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    border-left-color: #dd2222;
}
.product-fact-value {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #dd2222;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.product-fact--red .product-fact-value {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.product-fact-label {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.35;
    font-weight: 600;
}
.product-fact--red .product-fact-label {
    color: rgba(255,255,255,0.92);
}
@media (max-width: 576px) {
    .product-fact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Defender – intro threat card */
.mobile-threat-card {
    max-width: 100%;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.mobile-threat-card-title {
    text-align: center;
    font-weight: 800;
    color: #dd2222;
    margin-bottom: 1rem;
}
.mobile-threat-card-item {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: #333;
}
.mobile-threat-card-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    text-align: center;
}
/* ============================================
   Mobile Defender – Employee privacy card
   ============================================ */
.privacy-section {
    background-color: #ffffff;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.privacy-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 14px;
    padding: 1.9rem 2.2rem;
    box-shadow: 0 8px 26px rgba(0,0,0,0.12);
    border-left: 5px solid #28a745;
}
.privacy-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e7e34;
}
.privacy-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.4rem;
}
.privacy-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.privacy-step {
    flex: 1 1 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border-top: 4px solid #1e7e34;
}
.privacy-step-number {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1e7e34;
    margin-bottom: 0.35rem;
}
.privacy-step-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 0.35rem;
}
.privacy-step-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}
/* ============================================
   Mobile Defender – Custom Branding section
   ============================================ */
.branding-section {
    background-color: #f8f8f8;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.branding-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
}
.branding-intro {
    margin-bottom: 1.4rem;
}
.branding-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.4rem;
}
.branding-pillar {
    flex: 1 1 230px;
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.branding-pillar-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}
.branding-list {
    padding-left: 1.1rem;
    margin: 0;
    list-style: disc;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #333;
}
.branding-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}
.branding-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.branding-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .branding-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .branding-pillars {
        flex-direction: column;
    }
}

/* ============================================
   Mobile Defender – Customer Protection Program
   ============================================ */
.customer-program-section {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.customer-program-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 0 2.2rem 2rem 2.2rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.customer-program-header {
    margin: 0 -2.2rem 1.4rem -2.2rem;
    padding: 0.95rem 2.2rem;
    background-color: #000000;
    border-radius: 16px 16px 0 0;
}
.customer-program-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to bottom right, #ffffff 0%, #ffe5e5 30%, #ffb4b4 55%, #dd2222 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.customer-program-intro {
    margin: 0.45rem 0 0 0;
    font-size: 0.98rem;
    color: rgba(249,250,251,0.9);
}
.customer-program-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.customer-program-column {
    flex: 1 1 260px;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.customer-program-column:first-child {
    background: linear-gradient(135deg, #dd2222 0%, #b01c1c 50%, #6f0f0f 100%);
    color: #ffffff;
}
.customer-program-column:last-child {
    background: linear-gradient(135deg, #fff5f5 0%, #fbe5e5 40%, #f3d1d1 100%);
    color: #3b0b0b;
}
.customer-program-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 0 0.4rem 0;
}
.customer-program-column:last-child .customer-program-column-title {
    color: #3b0b0b;
}
.customer-program-list {
    margin: 0;
    padding-left: 1.1rem;
    list-style: disc;
    font-size: 0.95rem;
    color: inherit;
    line-height: 1.6;
}
.customer-program-footer {
    margin-top: 1.6rem;
    font-size: 0.95rem;
    color: #374151;
}
@media (max-width: 768px) {
    .customer-program-card {
        padding: 1.6rem 1.4rem;
    }
}
@media (max-width: 768px) {
    .privacy-card {
        padding: 1.5rem 1.3rem;
    }
    .privacy-facts {
        flex-direction: column;
    }
}
.product-intro-text-right { text-align: right; }
@media (max-width: 991px) {
    .product-intro-text-right { text-align: left; }
}
/* עיגול עם מספר/אחוז */
.product-intro-stat-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dd2222;
    color: #fff;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    box-shadow: 0 6px 20px rgba(221, 34, 34, 0.35);
}
.product-intro-stat-circle-lg {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    margin-bottom: 0.35rem;
}
.product-intro-stat-label {
    font-size: 1.35rem;
    font-weight: bold;
    color: #444;
    margin: -0.25rem 0 0 0;
    max-width: 280px;
}
.product-intro-col-stat .product-intro-stat-label { margin-left: auto; margin-right: auto; }
.product-intro-row .product-intro-col-stat:first-child .product-intro-stat-label { margin-left: 0; margin-right: auto; text-align: left; }
.product-intro-row-reverse .product-intro-col-stat .product-intro-stat-label { margin-left: auto; margin-right: auto; text-align: center; }
.product-intro-stat-label-small {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dd2222;
}
/* ריבוע צבע עם מספר */
.product-intro-stat-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #dd2222 0%, #b01c1c 100%);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    box-shadow: 0 8px 24px rgba(221, 34, 34, 0.3);
}
.product-intro-stat-number {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}
.product-intro-stat-sublabel {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-top: 0.25rem;
}
/* שורת תמונה + טקסט */
.product-intro-visual-row {
    padding: 2rem 0;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    background: linear-gradient(135deg, #f0ebeb 0%, #e5dede 100%);
    border-radius: 16px;
    border-left: 5px solid #dd2222;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.product-intro-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.product-intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(221, 34, 34, 0.2);
}
/* קופסת הדגשה לסיום */
.product-intro-callout {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(to right, rgba(221, 34, 34, 0.12) 0%, rgba(221, 34, 34, 0.04) 50%, transparent 100%);
    border-left: 5px solid #dd2222;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: left;
}
.product-intro-callout-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 1rem !important;
}
.product-intro-callout p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.75rem;
    text-align: left !important;
}
.product-intro-callout p:last-child { margin-bottom: 0; }
/* מובייל */
@media (max-width: 991px) {
    .product-intro-row { margin-bottom: 2rem; }
    .product-intro-col-stat { text-align: center !important; margin-bottom: 1rem; }
    .product-intro-col-stat .product-intro-stat-label { margin-left: auto; margin-right: auto; max-width: 100%; }
    .product-intro-visual-row { margin-left: 0; margin-right: 0; padding: 1.5rem 1rem; }
    .product-intro-img-wrap { margin-top: 1rem; }
}
@media (max-width: 768px) {
    .product-intro-stat-circle-lg { width: 100px; height: 100px; font-size: 2rem; }
    .product-intro-callout { padding: 1.25rem 1.25rem; }
}

/* ============================================
   Product pages – Key Benefits (white section, big rounded black inner box, reusable)
   ============================================ */
.product-key-benefits {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #e5e5e5;
}
.product-key-benefits-inner {
    background-color: #080808;
    border-radius: 32px;
    padding: 2.5rem 2rem 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: left;
}
@media (min-width: 992px) {
    .product-key-benefits-inner {
        padding: 3rem 2.5rem 3rem 2.5rem;
    }
}
.product-key-benefits-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-key-benefits-col {
    padding-left: 1rem;
    padding-right: 1rem;
}
.product-benefit-item {
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    border-left: 3px solid #dd2222;
}
.product-benefit-item:last-child {
    margin-bottom: 0;
}
.product-benefit-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}
.product-benefit-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #b8b8b8;
    margin: 0;
}
.product-key-benefits a {
    color: #dd2222;
}
.product-key-benefits a:hover {
    color: #ff4444;
}

/* ============================================
   Product pages – Primary Use Cases (zigzag layout, reusable)
   ============================================ */
.product-primary-use-cases {
    background-color: #f8f8f8;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}
.product-primary-use-cases-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.product-use-case-item {
    display: flex;
    width: 100%;
}
/* זיגזג: אי-זוגי = תוכן משמאל, זוגי = תוכן מימין */
.product-use-case-item:nth-child(odd) {
    justify-content: flex-start;
}
.product-use-case-item:nth-child(even) {
    justify-content: flex-end;
}
.product-use-case-content {
    max-width: 75%;
    padding: 1.5rem 1.75rem;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #dd2222;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.product-use-case-item:nth-child(even) .product-use-case-content {
    border-left: none;
    border-right: 4px solid #dd2222;
    text-align: right;
}
.product-use-case-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}
.product-use-case-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
}
@media (max-width: 768px) {
    .product-use-case-content {
        max-width: 100%;
    }
    .product-use-case-item:nth-child(even) .product-use-case-content {
        text-align: left;
        border-right: none;
        border-left: 4px solid #dd2222;
    }
}

/* ============================================
   Product pages – Technical Specifications (reusable)
   ============================================ */
.product-technical-specs {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: left;
}
.product-technical-specs.has-bg {
    /* תמונת רקע חיוורת – העלי את הקובץ ל־assets/images והחלפי את השם/קובץ */
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.78) 100%), linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.05) 100%), url(../../images/HERO1.png);
    background-size: 100% 100%, 100% 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
}
.phishagent-tech-specs.has-bg {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.78) 100%), linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.06) 100%), url(../../images/HERO3.png);
}
.mobile-defender-tech-specs.has-bg {
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.78) 100%), linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.06) 100%), url(../../images/HERO4.png);
}
.product-technical-specs-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-technical-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 42em;
}
.product-technical-specs-list.product-technical-specs-list--two-col {
    max-width: 60rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}
.product-technical-spec-item-title {
    font-weight: 700;
    color: #111;
    margin-right: 0.35rem;
}
@media (max-width: 768px) {
    .product-technical-specs-list.product-technical-specs-list--two-col {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}
.product-technical-spec-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.55;
    color: #333;
}
.product-technical-spec-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #dd2222;
    border-radius: 50%;
}
.product-technical-spec-item:last-child {
    margin-bottom: 0;
}

/* ============================================
   Product pages – Why Choose + CTA (reusable)
   ============================================ */
.product-why-choose {
    background-color: #f4f4f4;
    padding-top: 3rem;
    padding-bottom: 3.5rem;
    text-align: left;
}
.product-why-choose-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 4px solid #dd2222;
    display: inline-block;
    letter-spacing: -0.02em;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}
.product-why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 60rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
}
.product-why-choose-item {
    position: relative;
    padding-left: 1.6rem;
    color: #333;
    line-height: 1.55;
    font-size: 0.98rem;
}
.product-why-choose-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #dd2222;
    font-weight: 800;
}
.product-why-choose-item-title {
    font-weight: 700;
    color: #111;
    margin-right: 0.35rem;
}

.product-cta {
    margin-top: 2.25rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(to right, rgba(221,34,34,0.14), rgba(221,34,34,0.05));
    border-left: 5px solid #dd2222;
    border-radius: 0 14px 14px 0;
    max-width: 60rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.product-cta-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 0.75rem 0;
}
.product-cta-text {
    margin: 0 0 1rem 0;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}
.product-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.product-cta-btn {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}
.product-cta-btn-primary {
    background: #dd2222;
    color: #fff;
}
.product-cta-btn-primary:hover {
    background: #c61e1e;
    color: #fff;
}
.product-cta-btn-secondary {
    background: #fff;
    color: #111;
    border-color: rgba(0,0,0,0.15);
}
.product-cta-btn-secondary:hover {
    border-color: rgba(221,34,34,0.45);
    color: #111;
}

/* Ensure footer download button text is visible on dark background */
#header2-footer a[download] {
    color: #333 !important;
    font-weight: 700;
}
@media (max-width: 768px) {
    .product-why-choose-list {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    .product-cta {
        padding: 1.25rem 1.25rem;
    }
}

/* ============================================
   PhishAgent product page - hero כמו PhishIQ (משולש מימין, טקסט משמאל)
   ============================================ */
#header2-2.phishagent-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 110px;
    background: linear-gradient(to bottom, #000000 0%, #1a0505 40%, #2b0b0b 65%, #f6ecec 100%) !important;
    color: #ffffff;
    overflow: hidden;
    text-align: left;
}

#header2-2.phishagent-hero .mbr-section-title.display-4,
#header2-2.phishagent-hero .mbr-section-title.display-10 {
    text-align: left;
}

#header2-2.phishagent-hero .mbr-section-title.display-4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

#header2-2.phishagent-hero .mbr-section-title.display-10 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #f9fafb;
    margin-bottom: 0.9rem;
}

#header2-2.phishagent-hero .mbr-section-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
    text-align: left;
}

.phishagent-hero-text {
    position: relative;
    z-index: 1;
    max-width: 500px;
    text-align: left;
}

.phishagent-hero-label {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(248,250,252,0.6);
    color: #f9fafb;
    margin-bottom: 10px;
}

/* עיגול – HERO3 בפנים עם מסגרת אדומה */
.phishagent-hero-circle {
    position: absolute;
    top: 44%;
    right: -8%;
    width: 820px;
    height: 820px;
    margin-top: -470px; /* כמו לפני ניסיונות התמונות – גבוה ויוצא מעט ימינה */
    border-radius: 50%;
    /* קובץ ה-CSS נמצא ב-assets/theme/css, ולכן צריך ../../images כדי להגיע ל-assets/images */
    background: #000 url(../../images/HERO3.png) center center / cover no-repeat;
    border: 3px solid #dd2222;
    box-shadow: 0 18px 45px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .phishagent-hero-circle {
        width: 220px;
        height: 220px;
        margin-top: -110px;
        right: 50%;
        transform: translateX(50%);
        opacity: 0.35;
    }
}

.phishagent-hero-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88%;
    height: 92%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.phishagent-hero-hexagon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 92%;
    min-height: 380px;
    /* משושה: צלע ימין אנכית (צמודה למסך), 6 קודקודים */
    clip-path: polygon(100% 8%, 100% 92%, 82% 100%, 18% 85%, 18% 15%, 82% 0%);
    pointer-events: none;
}

/* אליפסה חתוכה מלמטה – צד ימין, קשת חלקה (הרבה נקודות) */
.phishagent-hero-ellipse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 92%;
    min-height: 380px;
    clip-path: polygon(
        0% 100%, 0% 52%, 4% 38%, 12% 26%, 24% 16%, 40% 10%, 50% 8%, 60% 10%, 76% 16%, 88% 26%, 96% 38%, 100% 52%, 100% 100%
    );
    pointer-events: none;
}

/* (העיגול והצורות האחרות של PhishAgent הוסרו – משאירים רק טקסט ברקע הגרדיאנט) */

@media (max-width: 768px) {
    #header2-2.phishagent-hero {
        padding-top: 110px;
        padding-bottom: 80px;
    }
    #header2-2.phishagent-hero .mbr-section-title.display-4 {
        font-size: 1.7rem;
    }
    #header2-2.phishagent-hero .mbr-section-title.display-10 {
        font-size: 1rem;
    }
    .phishagent-hero-text {
        max-width: 100%;
    }
    .phishagent-hero-hexagon,
    .phishagent-hero-ellipse,
    .phishagent-hero-circle {
        right: 0;
        width: 100%;
        height: 70%;
        opacity: 0.35;
    }
}

/* ============================================
   RedFox Mobile Defender product page - hero like PhishIQ Plus
   ============================================ */
#header2-2.mobile-defender-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 110px;
    background: linear-gradient(to bottom, #000000 0%, #1a0505 40%, #2b0b0b 65%, #f6ecec 100%) !important;
    color: #ffffff;
    overflow: hidden;
    text-align: left;
}

#header2-2.mobile-defender-hero .mbr-section-title.display-4,
#header2-2.mobile-defender-hero .mbr-section-title.display-10 {
    text-align: left;
}

#header2-2.mobile-defender-hero .mbr-section-title.display-4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

#header2-2.mobile-defender-hero .mbr-section-title.display-10 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #f9fafb;
    margin-bottom: 0.9rem;
}

#header2-2.mobile-defender-hero .mbr-section-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
    text-align: left;
}

#header2-2.mobile-defender-hero .mobile-defender-hero-col {
    padding-left: 4%;
}

.mobile-defender-hero-text {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    text-align: left;
}

.mobile-defender-hero-label {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(248,250,252,0.6);
    color: #f9fafb;
    margin-bottom: 10px;
}

/* "טלפון" – מלבן מעוגל שמוטה שמאלה → ימינה */
.mobile-defender-hero-triangle {
    position: absolute;
    bottom: -30px;
    left: 6%;
    width: 60%;
    height: 90%;
    min-height: 320px;
    pointer-events: none;
    transform: rotate(8deg);
    transform-origin: bottom left;
}

.mobile-defender-hero-triangle-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    border: 2px solid #dd2222;
    border-bottom-width: 8px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0,0,0,0.6);
    background: #000;
}

.mobile-defender-hero-triangle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #header2-2.mobile-defender-hero {
        padding-top: 110px;
        padding-bottom: 80px;
    }
    #header2-2.mobile-defender-hero .mbr-section-title.display-4 {
        font-size: 1.7rem;
    }
    #header2-2.mobile-defender-hero .mbr-section-title.display-10 {
        font-size: 1rem;
    }

    .mobile-defender-hero-text {
        max-width: 100%;
        margin-left: 0;
    }

    .mobile-defender-hero-triangle {
        left: 12%;
        bottom: -20px;
        width: 78%;
        height: 64%;
        transform: rotate(5deg);
        opacity: 0.35;
    }
}

/* ============================================
   PhishIQ Plus product page - hero with triangle from LEFT
   ============================================ */
#header2-2.phishiq-plus-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 110px;
    background: linear-gradient(to bottom, #000000 0%, #1a0505 40%, #2b0b0b 65%, #f6ecec 100%) !important;
    color: #ffffff;
    overflow: hidden;
    text-align: left;
}

#header2-2.phishiq-plus-hero .mbr-section-title.display-4,
#header2-2.phishiq-plus-hero .mbr-section-title.display-10 {
    text-align: left;
}

#header2-2.phishiq-plus-hero .mbr-section-title.display-4 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

#header2-2.phishiq-plus-hero .mbr-section-title.display-10 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #f9fafb;
    margin-bottom: 0.9rem;
}

#header2-2.phishiq-plus-hero .mbr-section-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 0;
    text-align: left;
}

.phishiq-plus-hero-text {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    text-align: left;
}

/* דחיפת בלוק הטקסט ימינה ב־HERO */
#header2-2.phishiq-plus-hero .phishiq-plus-hero-col {
    padding-left: 4%;
}

.phishiq-plus-hero-label {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(248,250,252,0.6);
    color: #f9fafb;
    margin-bottom: 10px;
}

/* משולש מצד שמאל – אותו צורה כמו PhishIQ אבל במראה (פינה שמאל-תחתית) */
.phishiq-plus-hero-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88%;
    height: 92%;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    pointer-events: none;
}

.phishiq-plus-hero-triangle-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #dd2222;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-width: 12px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.5);
    background: #000;
}

.phishiq-plus-hero-triangle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #header2-2.phishiq-plus-hero {
        padding-top: 110px;
        padding-bottom: 80px;
    }
    #header2-2.phishiq-plus-hero .mbr-section-title.display-4 {
        font-size: 1.7rem;
    }
    #header2-2.phishiq-plus-hero .mbr-section-title.display-10 {
        font-size: 1rem;
    }

    .phishiq-plus-hero-text {
        max-width: 100%;
        margin-left: 0;
    }

    .phishiq-plus-hero-triangle {
        left: 0;
        width: 100%;
        height: 70%;
        opacity: 0.35;
    }
}

.simple-header {
    background: linear-gradient(135deg, #9c1b1b, #c62828);
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
}

.simple-footer {
    background: linear-gradient(135deg, #7a1111, #a61c1c);
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.simple-footer a {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   Enterprise Solutions - One Platform Section (selector + triangle carousel)
   ============================================ */
.platform-section {
    position: relative;
    background-color: #fff;
    padding: 60px 0 80px;
    overflow: hidden;
    min-height: 520px;
}

/* קו אדום עבה בתחתית המשולש (One Platform) */
.platform-triangle-red-line {
    position: absolute;
    bottom: 0;
    left: 12%;
    right: 0;
    height: 24px;
    background: #dd2222;
    z-index: 10;
}

/* שכבת רקע תחתונה: משולש ענק מימין עם תמונות מתחלפות */
.platform-triangle-carousel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 88%;
    height: 92%;
    min-height: 380px;
    z-index: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.platform-triangle-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.platform-triangle-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.platform-triangle-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.platform-triangle-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-triangle-prev,
.platform-triangle-next {
    position: absolute;
    bottom: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
}

.platform-triangle-prev { left: 24px; }
.platform-triangle-next { right: 24px; }

.platform-triangle-prev:hover,
.platform-triangle-next:hover {
    background: #fff;
    transform: scale(1.05);
}

.platform-triangle-prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -8px;
    border: solid #333;
    border-width: 2px 0 0 2px;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
}

.platform-triangle-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -8px;
    border: solid #333;
    border-width: 2px 0 0 2px;
    width: 12px;
    height: 12px;
    transform: rotate(135deg);
}

.platform-triangle-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.platform-triangle-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.platform-triangle-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

/* Hide manual controls for triangle carousel (auto-rotate only) */
.platform-triangle-prev,
.platform-triangle-next,
.platform-triangle-dots,
.platform-triangle-dot {
    display: none !important;
}

.platform-section .container {
    position: relative;
    z-index: 1;
}

.platform-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.platform-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.platform-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* קוביה ~60% רוחב, מיושרת לשמאל, צבע כהה */
.platform-selector-wrap {
    width: 60%;
    max-width: 880px;
    margin-left: 0;
    margin-right: auto;
}

.platform-selector {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
    background: #16181c;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 2rem 2.25rem 2rem 2rem;
}

.platform-content {
    min-height: 100px;
}

.platform-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.25rem;
}

.platform-learn-more {
    display: inline-block;
    background: #dd2222;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.platform-learn-more:hover {
    background: #c31c1c;
    color: #fff;
    transform: translateX(2px);
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 3px solid rgba(255,255,255,0.15);
}

.platform-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.platform-item.is-active {
    background: rgba(221, 34, 34, 0.2);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 992px) {
    .platform-selector-wrap {
        width: 100%;
    }
    .platform-selector {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .platform-list {
        border-right: none;
        border-top: 3px solid rgba(255,255,255,0.15);
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 40px 0 60px;
        min-height: 0;
    }
    .platform-title {
        font-size: 1.5rem;
    }
    .platform-triangle-carousel {
        width: 92%;
        height: 70%;
        min-height: 260px;
    }
}

/* ============================================
   Knowledge Hub - link color (site red, not orange)
   ============================================ */
.knowledge-hub-content a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.knowledge-hub-content a:hover,
.knowledge-hub-content a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Knowledge Hub - Core Topics equal-height rows */
.core-topics-row {
    display: flex;
    flex-wrap: wrap;
}
.core-topics-row > .core-topic-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.core-topics-row .core-topic-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.core-topics-row .core-topic-block p {
    flex: 1;
    margin-bottom: 0;
}

/* Knowledge Hub - Latest Insights: more space between link rows */
.insights-links-row [class*="col-"] {
    margin-bottom: 1.5rem;
}
.insights-links-row [class*="col-"]:last-child {
    margin-bottom: 0;
}

/* ============================================
   Article template (Knowledge Hub articles)
   ============================================ */
.article-template .article-hero {
    background-color: #111;
    padding: 120px 0 80px 0;
    color: #fff;
    text-align: center;
}

/* ============================================
   Enterprise Solutions - Ready to Secure CTA
   ============================================ */
#header2-2 .mbr-section-title.display-2 {
    font-size: 1.9rem;
    line-height: 1.25;
}

#header2-2 .mbr-section-text.display-8 {
    font-size: 1rem;
    line-height: 1.6;
}

.article-template .article-hero .container {
    color: #fff;
}
.article-template .article-hero .article-lead {
    max-width: 750px;
    margin: 20px auto 0;
}
.article-template .article-section {
    padding: 40px 0;
}
.article-template .article-section--alt {
    background-color: #f8f8f8;
}
.article-template .article-intro .article-body {
    max-width: 100%;
}
.article-template .article-body {
    font-size: 1.0625rem;
    line-height: 1.6;
}
.article-template .article-body h2 {
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.article-template .article-body p {
    margin-bottom: 1rem;
}
.article-template .article-body p:last-child {
    margin-bottom: 0;
}
.article-template .article-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.article-template .article-body ul li {
    margin-bottom: 0.35rem;
}
.article-template .article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}
.article-template .article-body h3:first-of-type {
    margin-top: 1rem;
}
/* Two-column row: text + image (like phishiq) */
.article-template .article-two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}
.article-template .article-two-col .article-text {
    padding-bottom: 1rem;
}
@media (min-width: 992px) {
    .article-template .article-two-col .article-text {
        padding-bottom: 0;
    }
}
.article-template .article-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-template .article-media img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Image on left: add class article-two-col--media-left to the row */
@media (min-width: 992px) {
    .article-template .article-two-col--media-left .article-text {
        order: 2;
    }
    .article-template .article-two-col--media-left .article-media {
        order: 1;
    }
}
.article-template .article-back-link {
    margin-top: 2rem;
    margin-bottom: 0;
}
.article-template .knowledge-hub-content a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.article-template .knowledge-hub-content a:hover,
.article-template .knowledge-hub-content a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Site footer (shared: article pages, no inline styles) */
.site-footer {
    background-image: url(../../images/f-mwo-dznni-averie-woodard-2000x300.jpg);
}
.site-footer .container {
    padding-top: 20px;
    padding-bottom: 20px;
}
.site-footer .footer-contact-row {
    margin-bottom: 30px;
}
.site-footer .mbr-section-text {
    text-align: center;
    color: #fff;
}
.site-footer .mbr-section-text h4 {
    color: #fff;
    margin-bottom: 15px;
}
.site-footer .mbr-section-text p {
    margin-bottom: 8px;
}
.site-footer .footer-cta p {
    margin-bottom: 15px;
}
.site-footer .footer-cta .btn-contact {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}
.site-footer .footer-links a {
    color: #fff;
    text-decoration: underline;
}

/* HERO – abstract waves (red & gray) for MORE pages; override theme #header2-2 */
#header2-2.hero-abstract-waves {
    background-color: #1a0f0f !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='none'%3E%3Cpath fill='%23b91313' fill-opacity='0.35' d='M0 200 Q300 80 600 200 T1200 200 V400 H0 Z'/%3E%3Cpath fill='%234a4a4a' fill-opacity='0.28' d='M0 250 Q300 350 600 250 T1200 250 V400 H0 Z'/%3E%3Cpath fill='%23810202' fill-opacity='0.22' d='M0 180 Q400 100 800 180 T1200 180 V400 H0 Z'/%3E%3Cpath fill='%23666' fill-opacity='0.18' d='M0 280 Q250 320 500 280 T1200 280 V400 H0 Z'/%3E%3C/svg%3E") !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
}

#header2-2.hero-abstract-waves .container {
    padding-top: 4rem !important;
}
#header2-2.hero-abstract-waves .hero-intro-text {
    font-size: 1.4rem !important;
    line-height: 1.65 !important;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cybersecurity Glossary – title size */
.glossary-page #overview .mbr-section-title {
    font-size: 2.1rem;
    font-weight: 700;
}

/* Cybersecurity Glossary – term cards */
.glossary-page .mbr-cards {
    background-color: #ffffff !important;
}

.glossary-page .mbr-cards-row {
    margin-left: -10px;
    margin-right: -10px;
}

.glossary-page .mbr-cards-col {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.glossary-page .card.cart-block {
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 22px;
}

/* alternate soft background colors to make cards more interesting */
.glossary-page .mbr-cards-col:nth-child(4n+1) .card.cart-block {
    background: #ffeaea; /* חזק יותר – ורוד/אדום בהיר */
}

.glossary-page .mbr-cards-col:nth-child(4n+2) .card.cart-block {
    background: #e9f2ff; /* כחול בהיר חזק יותר */
}

.glossary-page .mbr-cards-col:nth-child(4n+3) .card.cart-block {
    background: #fff3c9; /* צהוב/כתום בהיר אבל חזק */
}

.glossary-page .mbr-cards-col:nth-child(4n+0) .card.cart-block {
    background: #e9fff2; /* ירקרק בהיר אבל בולט */
}

.glossary-page .card-img.iconbox {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.glossary-page .card-img.iconbox img {
    width: 70px;
    height: 70px;
}

.glossary-page .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2px;
    margin-bottom: 8px;
}

.glossary-page .card-text {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .glossary-page .mbr-cards-col {
        padding-top: 20px !important;
        padding-bottom: 25px !important;
    }

    .glossary-page .card.cart-block {
        padding: 18px 18px;
    }
}

/* ============================================
   Latest Insights – compact, different from full articles
   ============================================ */
.insight-template .insight-banner {
    background: #f6f6f6;
    padding: 120px 0 36px;
    border-bottom: 3px solid #DC143C;
    text-align: left;
}
.insight-template .insight-banner .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}
.insight-template .insight-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #DC143C;
    margin-bottom: 0.5rem;
}
.insight-template .insight-banner h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.insight-template .insight-banner .insight-lead {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}
.insight-template .insight-wrap {
    padding: 0 15px 50px;
}
.insight-template .insight-card {
    background: #fff;
    max-width: 900px;
    margin: -24px auto 0;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    position: relative;
    z-index: 1;
}
.insight-template .insight-card .insight-body {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
}
.insight-template .insight-card .insight-body p {
    margin-bottom: 1rem;
}
.insight-template .insight-card .insight-body p:last-child {
    margin-bottom: 0;
}
.insight-template .insight-card .insight-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0 0.5rem;
}
.insight-template .insight-card .insight-body h2:first-child {
    margin-top: 0;
}
.insight-template .insight-card .insight-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.25rem;
}
.insight-template .insight-card .insight-body h3:first-of-type {
    margin-top: 0.75rem;
}
.insight-template .insight-card .insight-body ul {
    margin: 0.75rem 0 1rem 1.25rem;
    padding-left: 1rem;
}
.insight-template .insight-card .insight-body li {
    margin-bottom: 0.35rem;
}
.insight-template .insight-card .insight-media {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}
.insight-template .insight-card .insight-media img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.insight-template .insight-two-col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.insight-template .insight-two-col .insight-body {
    flex: 1;
    min-width: 0;
}
.insight-template .insight-two-col .insight-media {
    flex: 0 0 280px;
    margin-top: 0;
}
@media (max-width: 767px) {
    .insight-template .insight-two-col .insight-media {
        flex: 0 0 100%;
    }
}
.insight-template .insight-back-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px 2rem;
}
.insight-template .insight-back-wrap a {
    color: #b01030;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.insight-template .insight-back-wrap a:hover {
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Links inside Insight body – same as articles (red, Inter) */
.insight-template .insight-card .insight-body a,
.insight-template .insight-two-col .insight-body a {
    color: #b01030;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.insight-template .insight-card .insight-body a:hover,
.insight-template .insight-card .insight-body a:focus,
.insight-template .insight-two-col .insight-body a:hover,
.insight-template .insight-two-col .insight-body a:focus {
    color: #8B0A20;
    text-decoration: underline;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
