/* ========================================
   HackerSec - Landing Page Styles
   ======================================== */

/* Phosphor spin animation (replaces fa-spin) */
.ph-spin { animation: ph-spin 0.9s linear infinite; display: inline-block; }
@keyframes ph-spin { to { transform: rotate(360deg); } }

/* ----------------------------------------
   CSS Variables
   ---------------------------------------- */
:root {
    --bg-primary: #08080a;
    --bg-secondary: #0e0e0e;
    --bg-tertiary: #18181a;
    --bg-card: #131315;
    --border-color: rgba(255, 255, 255, 0.10);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --text-primary: #f0f0f2;
    --text-secondary: #c0c5cc;
    --text-muted: #8b949e;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-subtle: rgba(37, 99, 235, 0.12);
    --accent-glow: rgba(37, 99, 235, 0.2);
    --redteam: #dc2626;
    --redteam-subtle: rgba(220, 38, 38, 0.08);
    --redteam-glow: rgba(220, 38, 38, 0.12);
    --success: #00c853;
    --warning: #ff9500;
    --danger: #ff3b30;
    --critical: #ff2d55;

    /* Bootstrap variable overrides (foundation for future migration) */
    --bs-body-bg: var(--bg-primary);
    --bs-body-color: var(--text-primary);
    --bs-border-color: var(--border-color);
    --bs-link-color: var(--accent);
    --bs-link-hover-color: var(--accent-hover);
    --bs-primary: #1e3a8a;
    --bs-primary-rgb: 30, 58, 138;
    --bs-danger: var(--redteam);
    --bs-danger-rgb: 220, 38, 38;
    --bs-success: var(--success);
    --bs-warning: var(--warning);
    --bs-font-sans-serif: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bs-body-font-size: 0.9375rem; /* 15px */
    --bs-body-line-height: 1.7;
}

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(220, 38, 38, 0.09), transparent 50%),
                radial-gradient(ellipse 50% 80% at 100% 50%, rgba(37, 99, 235, 0.11), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* ----------------------------------------
   Navigation
   ---------------------------------------- */
body .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
    background: transparent;
}

body .navbar.scrolled {
    background: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

body .nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 40px;
    position: relative;
}

body .nav-logo {
    display: flex;
    align-items: center;
}

body .nav-logo img {
    height: 14.5px;
}

body .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body .nav-links li {
    display: flex;
    align-items: center;
}

body .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

body .nav-links a:hover {
    color: var(--text-primary);
}

body .nav-cta {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
body .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    --bs-btn-padding-y: 12px;
    --bs-btn-padding-x: 24px;
    --bs-btn-font-size: 15px;
    --bs-btn-font-weight: 500;
    --bs-btn-border-radius: 4px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

body .btn-ghost {
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--text-primary);
    --bs-btn-border-color: rgba(255, 255, 255, 0.22);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.04);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.38);
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

body .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.38);
}

body .btn i:last-child:not(:only-child) {
    transition: transform 0.2s ease;
}

body .btn:hover i:last-child:not(:only-child) {
    transform: translateX(3px);
}

body .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 0, 0, 0;
    background: transparent;
    color: #fff;
    border: 1px solid transparent;
    position: relative;
    box-shadow: none;
}

body .btn-primary:active,
body .btn-primary:focus,
body .btn-primary:focus-visible,
body .btn-primary:disabled,
body .btn-primary.disabled {
    background: transparent !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Gradient border ring via mask-composite trick (red → blue, brand) */
body .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #dc2626 0%, #2563eb 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: background 0.2s ease;
}

body .btn-primary:hover {
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.06) 0%, rgba(37, 99, 235, 0.06) 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgba(220, 38, 38, 0.10),
        0 4px 12px rgba(37, 99, 235, 0.08);
}

body .btn-primary:hover::before {
    background: linear-gradient(90deg, #e23939 0%, #3672e0 100%);
}

body .btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
}

/* Gradient Border Button */
.section-cta {
    margin-top: 48px;
    text-align: center;
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 270px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 0% 0%, rgba(220, 38, 38, 0.12), transparent 50%),
                radial-gradient(ellipse 60% 40% at 100% 0%, rgba(37, 99, 235, 0.14), transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 25%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: heroEffectIn 1.2s ease-out 0.1s forwards;
}

@keyframes heroEffectIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-cyber-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    animation: heroEffectIn 1.2s ease-out 0.3s forwards;
}

.cyber-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: cyberPulse 4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
}

.cyber-dot:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.cyber-dot:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.5s; }
.cyber-dot:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
.cyber-dot:nth-child(4) { top: 70%; left: 90%; animation-delay: 1.5s; }
.cyber-dot:nth-child(5) { top: 40%; left: 5%; animation-delay: 2s; }
.cyber-dot:nth-child(6) { top: 80%; left: 75%; animation-delay: 2.5s; }
.cyber-dot:nth-child(7) { top: 10%; left: 70%; animation-delay: 3s; }
.cyber-dot:nth-child(8) { top: 55%; left: 95%; animation-delay: 3.5s; }

.cyber-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3), transparent 70%);
    border-radius: 50%;
}

@keyframes cyberPulse {
    0%,
100% {
        opacity: 0.15;
        transform: scale(0.6);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

.hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(14, 14, 14, 0.4) 55%,
        var(--bg-secondary, #0e0e0e) 100%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-fade { height: 180px; }
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@keyframes pulse {
    0%,
100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    margin: 0 auto 16px;
    letter-spacing: -0.035em;
    line-height: 1.15;
    max-width: 1100px;
}

.highlight {
    background: linear-gradient(90deg, #dc2626 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
    white-space: nowrap;
}

/* Hero stats strip — used on home hero */
.hero:has(.hero-stats-strip) .hero-content {
    max-width: 1100px;
}

.hero:has(.hero-stats-strip) .hero-cta {
    margin-bottom: 0;
}

.hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 140px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.hero-stats-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.hero-stats-strip-number {
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary, #f0f0f2);
}

.hero-stats-strip-label {
    font-size: 12px;
    color: var(--text-muted, #94949c);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 64px;
    }
}

/* ----------------------------------------
   Services Page
   ---------------------------------------- */

/* ----------------------------------------
   Contact Page
   ---------------------------------------- */

/* ----------------------------------------
   Sections (General)
   ---------------------------------------- */
body section {
    padding: 140px 0;
}

.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    margin-bottom: 40px;
}

.features .section-title {
    white-space: nowrap;
}

.section-header {
    margin-bottom: 42px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: ui-monospace, 'SF Mono', 'Geist Mono', Menlo, monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #dc2626 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

.section-label::before {
    content: '[ ';
    margin-right: -2px;
}

.section-label::after {
    content: ' ]';
    margin-left: -2px;
}

.section-title {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 720px;
}

/* ----------------------------------------
   Services Tabs Section
   ---------------------------------------- */
.services-section {
    background: var(--bg-primary);
    position: relative;
}

/* ----------------------------------------
   Features / Ambientes Section
   ---------------------------------------- */
.features {
    background: var(--bg-primary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 40% 60% at 0% 30%, rgba(220, 38, 38, 0.05), transparent 50%),
                radial-gradient(ellipse 40% 60% at 100% 70%, rgba(37, 99, 235, 0.07), transparent 50%);
    pointer-events: none;
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.features-grid {
    /* Layout handled by Bootstrap */
}

.feature-card {
    background: transparent;
    border: none;
    padding: 16px 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.feature-icon {
    width: 220px;
    height: 120px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
    font-size: 42px;
    transition: all 0.2s ease;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ----------------------------------------
   Journey Steps (platform page)
   ---------------------------------------- */

.journey-step {
    padding: 80px 0;
}

.journey-step-inner {
    display: flex;
    align-items: stretch;
    gap: 64px;
}

.journey-step-text {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-step-reverse {
    flex-direction: row-reverse;
}

.journey-step-num {
    font-size: 160px;
    font-weight: 800;
    color: var(--border-color);
    opacity: 0.3;
    line-height: 1;
    margin-top: -45px;
    margin-bottom: -30px;
    letter-spacing: -0.05em;
    user-select: none;
}

.journey-step-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    position: relative;
}

.journey-step-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.journey-step-visual {
    flex: 1;
    min-width: 0;
}

.journey-step-visual .platform-mockup {
    max-width: 100%;
}

/* Journey mockup elements */
.j-mock-fixed {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}

.j-env-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.j-env-card {
    background: #161619;
    border: 1px solid #2c2c32;
    border-radius: 6px;
    padding: 10px 6px;
    text-align: center;
    font-size: 9px;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.j-env-card i {
    font-size: 16px;
}

.j-env-card span {
    line-height: 1.2;
}

.j-env-selected {
    border-color: #2563eb;
    color: #3b82f6;
    background: rgba(37, 99, 235, 0.08);
}

.j-input-mock {
    background: #161619;
    border: 1px solid #2c2c32;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 11px;
    color: #e6edf3;
}

/* Timeline */
.j-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 8px;
}

.j-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #2c2c32;
    transform: translateY(-50%);
    z-index: 0;
}

.j-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.j-timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2c2c32;
    border: 2px solid #2c2c32;
}

.j-timeline-done .j-timeline-dot {
    background: #1e40af;
    border-color: #1e40af;
}

.j-timeline-current .j-timeline-dot {
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.25);
}

.j-timeline-item span {
    font-size: 9px;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}

.j-timeline-done span {
    color: #1e40af;
}

@media (max-width: 991px) {
    .journey-step-inner,
.journey-step-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .journey-step-num {
        font-size: 80px;
        margin-bottom: -20px;
    }

    .journey-step-text h2 {
        font-size: 24px;
    }

    .journey-step {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .journey-step-num {
        font-size: 60px;
        margin-bottom: -15px;
    }

    .j-timeline-item span {
        font-size: 8px;
    }
}

/* ----------------------------------------
   Abstract Dashboard Preview (index)
   ---------------------------------------- */

.abstract-dashboard {
    padding: 20px;
    background: #0a0a0c;
}

.abs-stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.abs-stat-card {
    flex: 1;
    background: #161619;
    border: 1px solid #2c2c32;
    border-radius: 6px;
    padding: 14px 16px;
    text-align: center;
}

.abs-stat-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}

.abs-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #fafafa;
}

.abs-new-test-btn {
    display: block;
    width: 100%;
    padding: 7px 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    border: 1px solid #dc2626;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.abs-new-test-btn:hover {
    background: rgba(220, 38, 38, 0.1);
}

.abs-new-test-btn i {
    margin-right: 6px;
    font-size: 11px;
}

.abs-vuln-list {
    background: #161619;
    border: 1px solid #2c2c32;
    border-radius: 6px;
    overflow: hidden;
}

.abs-vuln-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid #2c2c32;
}

.abs-vuln-row:last-child {
    border-bottom: none;
}

.abs-vuln-sev {
    width: 4px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.abs-vuln-info {
    flex: 1;
    min-width: 0;
}

.abs-vuln-name {
    font-size: 12px;
    color: #e6edf3;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.abs-vuln-asset {
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
}

.abs-vuln-status {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.abs-vuln-status-reported {
    background: rgba(220, 38, 38, 0.12);
    color: #ef4444;
}

.abs-vuln-status-correction {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.abs-vuln-status-retest {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
}

.abs-vuln-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.abs-placeholder-bar {
    height: 10px;
    background: #2c2c32;
    border-radius: 4px;
    flex-shrink: 0;
}

.abs-placeholder-bar:first-of-type {
    flex: 1;
}

.abs-placeholder-sm {
    flex: none !important;
}

.abs-vuln-placeholder {
    opacity: 0.5;
}

.abs-vuln-fade {
    opacity: 0.25;
}

@media (max-width: 767px) {
    .abs-stats-row {
        flex-wrap: wrap;
    }

    .abs-stat-card {
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }

    .abs-vuln-name {
        font-size: 11px;
    }

    .abs-vuln-badge {
        display: none;
    }
}

/* ----------------------------------------
   Integrations Section
   ---------------------------------------- */

/* ----------------------------------------
   Why HackerSec (Services page)
   ---------------------------------------- */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    text-align: left;
    padding: 44px 20px 36px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.3s ease, border-top-color 0.3s ease;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
    background-position:
        top left, top right, bottom left, bottom right;
    background-size: 7px 7px;
    background-repeat: no-repeat;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.015);
    border-top-color: rgba(255, 255, 255, 0.18);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    display: block;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    margin: 0 0 28px;
    color: var(--text-primary);
    font-size: 40px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.why-icon i {
    display: block;
    line-height: 1;
}

.why-card:hover .why-icon {
    transform: scale(1.04);
}

.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.yaga-diff-fade .why-icon,
.yaga-diff-fade h4 {
    color: var(--text-secondary);
    opacity: 0.7;
}

.yaga-diff-fade p {
    opacity: 0.7;
}

.yaga-diff-winner .why-icon i {
    color: #60a5fa;
}

.integrations-section {
    position: relative;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
    transition: transform 0.2s ease;
}

.integration-item:hover {
    transform: translateY(-4px);
}

.integration-item span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.integration-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.integration-item:hover .integration-icon {
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.integrations-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.integration-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.integration-feature i {
    color: var(--accent);
    font-size: 16px;
}

@media (max-width: 767px) {
    .integrations-grid {
        gap: 20px;
    }

    .integration-icon {
        width: 60px;
        height: 60px;
    }

    .integration-icon svg,
.integration-icon i {
        font-size: 24px !important;
        width: 24px !important;
        height: 24px !important;
    }

    .integration-item {
        min-width: 80px;
    }

    .integrations-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ----------------------------------------
   Services Accordion
   ---------------------------------------- */

/* ----------------------------------------
   How It Works Section
   ---------------------------------------- */
.how-it-works {
    background: var(--bg-secondary);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 35% 50% at 0% 60%, rgba(220, 38, 38, 0.05), transparent 50%),
                radial-gradient(ellipse 35% 50% at 100% 40%, rgba(37, 99, 235, 0.07), transparent 50%);
    pointer-events: none;
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.steps-grid {
    position: relative;
}

.steps-grid::before {
    display: none;
}

.step-card {
    position: relative;
    padding: 44px 20px 36px;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0;
    transition: background 0.3s ease, border-top-color 0.3s ease;
    text-align: left;
    z-index: 1;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
    background-position:
        top left, top right, bottom left, bottom right;
    background-size: 7px 7px;
    background-repeat: no-repeat;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.015);
    border-top-color: rgba(255, 255, 255, 0.18);
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon {
    display: block;
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 40px;
    color: var(--text-primary);
    margin: 0 0 28px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.step-icon i {
    display: block;
    line-height: 1;
}

.step-card:hover .step-icon {
    transform: scale(1.04);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    font-family: ui-monospace, 'SF Mono', 'Geist Mono', Menlo, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.7;
    display: inline-block;
}

.step-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ----------------------------------------
   Frameworks Section
   ---------------------------------------- */

/* Grid layout now handled by Bootstrap row/col-* classes */

/* Pentest Real Card */

/* Frameworks Strip (compact single-line) */
.frameworks-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
    flex-wrap: nowrap;
}

.frameworks-strip-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.frameworks-strip-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
}

.frameworks-strip-items span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: border-color 0.2s ease;
}

.frameworks-strip-items span:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

/* ----------------------------------------
   Platform Section
   ---------------------------------------- */
.platform-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 40% 50% at 0% 80%, rgba(220, 38, 38, 0.06), transparent 50%),
                radial-gradient(ellipse 40% 50% at 100% 80%, rgba(37, 99, 235, 0.08), transparent 50%);
    pointer-events: none;
}

.platform-section .section-header {
    margin-bottom: 0;
}

.platform-preview {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.platform-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    max-width: 1100px;
    margin: 0 auto;
}

.mockup-header {
    background: var(--bg-tertiary);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

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

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

/* ----------------------------------------
   Badges
   ---------------------------------------- */

/* ----------------------------------------
   Differentials Section
   ---------------------------------------- */
.differentials {
    background: var(--bg-primary);
    position: relative;
}

.differentials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 40% 50% at 0% 50%, rgba(220, 38, 38, 0.06), transparent 50%),
                radial-gradient(ellipse 40% 50% at 100% 50%, rgba(37, 99, 235, 0.08), transparent 50%);
    pointer-events: none;
}

.diff-header {
    text-align: center;
    margin-bottom: 64px;
}

.diff-header h2 {
    font-size: 42px;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.diff-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layout now handled by Bootstrap row/col-* classes */

/* Comparison Table */
.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-table {
    background: transparent;
    border: none;
    border-radius: 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    padding: 18px 8px;
    font-family: ui-monospace, 'SF Mono', 'Geist Mono', Menlo, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.comparison-header span:nth-child(2),
.comparison-header span:nth-child(3) { color: var(--text-muted); }
.comparison-header .col-hackersec,
.comparison-header .col-traditional {
    text-align: center;
    text-indent: 0.18em;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    padding: 22px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    align-items: center;
    transition: background 0.2s ease;
}

.comparison-row:first-of-type {
    border-top: none;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

.comparison-row span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.check {
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.check i {
    font-size: 18px;
    color: #60a5fa;
}
.cross {
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cross i {
    font-size: 18px;
    color: var(--text-muted);
}

/* ----------------------------------------
   Pricing Section
   ---------------------------------------- */
.pricing {
    background: var(--bg-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 35% 60% at 0% 70%, rgba(220, 38, 38, 0.05), transparent 50%),
                radial-gradient(ellipse 35% 60% at 100% 30%, rgba(37, 99, 235, 0.07), transparent 50%);
    pointer-events: none;
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-card.featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 6px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
}

.pricing-card:hover {
    border-color: var(--border-subtle);
    transform: translateY(-4px);
}

.pricing-card.featured:hover {
    border-color: var(--accent);
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent);
    margin-top: 4px;
}

.pricing-card .btn {
    width: 100%;
}

/* ----------------------------------------
   Signup Section
   ---------------------------------------- */
.signup-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(220, 38, 38, 0.08), transparent 50%),
                radial-gradient(ellipse 50% 80% at 100% 50%, rgba(37, 99, 235, 0.1), transparent 50%);
    pointer-events: none;
}

.signup-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 56px 64px;
}

.signup-header {
    text-align: center;
    margin-bottom: 32px;
}

.signup-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.signup-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.error-message {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: var(--danger);
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-google {
    background: #fff;
    color: #3c4043;
}

.btn-google:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.footer-grid {
    margin-bottom: 64px;
}

.footer-brand img {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 20px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--text-primary);
}

/* ----------------------------------------
   Mobile Menu
   ---------------------------------------- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1000;
    padding: 100px 32px 32px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

/* ----------------------------------------
   Login Dropdown
   ---------------------------------------- */
.login-dropdown {
    position: relative;
    display: inline-flex;
}

.btn-icon {
    padding: 10px 14px;
    min-width: unset;
}

.btn-icon i {
    font-size: 16px;
}

/* Login button (EN/ES only): icon + text, same visual height as icon-only buttons */
.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    font-size: 14px;
}
.nav-login-btn i { font-size: 14px; }

.login-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    margin-top: 8px;
    background: rgba(22, 22, 25, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 0 24px rgba(37, 99, 235, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.login-dropdown:hover .login-dropdown-menu,
.login-dropdown:focus-within .login-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.login-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.login-dropdown-menu a:last-child {
    border-bottom: none;
}

.login-dropdown-menu a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Mobile Login Section */
.mobile-login-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.mobile-login-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mobile-login-section .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    padding: 14px 24px;
}

.mobile-login-section .btn:last-of-type {
    margin-bottom: 0;
}

/* Language Dropdown */
/* === Pentest AI-First page === */

/* === Megamenu Platform === */
.has-megamenu { position: relative; }
.nav-platform-trigger { display: inline-flex; align-items: center; }
.megamenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 760px;
    background: rgba(22, 22, 25, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 0 24px rgba(37, 99, 235, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.25s;
    z-index: 100;
    overflow: hidden;
}
.has-megamenu:hover .megamenu,
.has-megamenu:focus-within .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.has-megamenu::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 18px;
}
.megamenu-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}
.megamenu-intro {
    padding: 32px 26px;
    position: relative;
    background:
        radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(220, 38, 38, 0.04), transparent 60%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(37, 99, 235, 0.01));
    text-decoration: none;
    display: block;
    transition: background 0.25s ease;
}
.megamenu-intro::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08), transparent);
}
.megamenu-intro:hover {
    background:
        radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.14), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(220, 38, 38, 0.07), transparent 60%),
        linear-gradient(180deg, rgba(37, 99, 235, 0.07), rgba(37, 99, 235, 0.02));
}
.megamenu-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    color: var(--accent); margin-bottom: 14px;
    text-transform: uppercase;
}
.megamenu-intro h3 {
    font-size: 18px; font-weight: 600; color: var(--text-primary);
    line-height: 1.4; margin-bottom: 22px;
}
.megamenu-cta {
    display: inline-flex; align-items: center;
    color: var(--accent); font-size: 13px; font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: gap 0.2s ease;
}
.megamenu-intro:hover .megamenu-cta i {
    transform: translateX(3px);
}
.megamenu-cta i {
    transition: transform 0.2s ease;
}
.megamenu-features {
    padding: 20px 18px;
    display: grid;
    gap: 10px;
}
.megamenu-feature {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
    position: relative;
}
.megamenu-feature::after {
    content: '→';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.megamenu-feature:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
}
.megamenu-feature:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.megamenu-feature:hover .megamenu-feature-icon {
    background: rgba(37, 99, 235, 0.14);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.06);
}
.megamenu-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 17px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.megamenu-feature-text { display: flex; flex-direction: column; gap: 3px; }
.megamenu-feature-title {
    font-size: 15px; font-weight: 600; color: var(--text-primary);
    letter-spacing: -0.01em;
}
.megamenu-feature-desc {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.4;
}

/* Mobile section accordion */
.mobile-section { display: flex; flex-direction: column; }
.mobile-section-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}
.mobile-section-main:hover { color: var(--accent); }
.mobile-section.expanded .mobile-section-main { border-bottom-color: transparent; }
.mobile-section-chevron {
    font-size: 13px;
    color: var(--text-secondary);
    transition: transform 0.25s ease;
    opacity: 0.7;
}
.mobile-section.expanded .mobile-section-chevron {
    transform: rotate(180deg);
    color: var(--accent);
    opacity: 1;
}
.mobile-section-subs {
    display: flex; flex-direction: column;
    padding-left: 20px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.25s ease;
}
.mobile-section.expanded .mobile-section-subs {
    max-height: 400px;
    opacity: 1;
    margin: 8px 0 12px;
}
.mobile-section-subs a {
    font-size: 15px !important;
    color: var(--text-secondary) !important;
    padding: 8px 0 !important;
    display: flex; align-items: center; gap: 10px;
}
.mobile-section-subs a i { font-size: 12px; color: var(--accent); width: 16px; }
.mobile-section-subs a.mobile-lang-active { color: var(--text-primary) !important; font-weight: 600; }

@media (max-width: 991px) {
    .megamenu { display: none; }
}

.lang-dropdown {
    position: relative;
    display: inline-flex;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    margin-top: 8px;
    background: rgba(22, 22, 25, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 0 24px rgba(37, 99, 235, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-dropdown:hover .lang-dropdown-menu,
.lang-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.lang-dropdown-menu a:last-child {
    border-bottom: none;
}

.lang-dropdown-menu a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.lang-dropdown-menu a.active {
    color: var(--accent);
}

/* Mobile Language Section */

/* ----------------------------------------
   Modal
   ---------------------------------------- */

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.modal-form input.error,
.modal-form textarea.error {
    border-color: var(--redteam);
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: var(--text-muted);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-form .error-message {
    display: none;
    color: var(--redteam);
    font-size: 12px;
    margin-top: 6px;
}

.modal-form .error-message:not(:empty) {
    display: block;
}

.modal-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 48px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
}

/* ----------------------------------------
   Page Hero (Internal Pages)
   ---------------------------------------- */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 200px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 0% 0%, rgba(220, 38, 38, 0.12), transparent 50%),
                radial-gradient(ellipse 60% 40% at 100% 0%, rgba(37, 99, 235, 0.14), transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.page-hero .hero-container {
    position: relative;
    z-index: 1;
}

.page-hero .hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 auto 20px;
    max-width: 1100px;
    white-space: normal;
}

.page-hero .hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Reduce spacing between page-hero and next section */
.page-hero + section {
    padding-top: 60px;
}

/* ----------------------------------------
   Legal Content Pages
   ---------------------------------------- */
.legal-section {
    background: var(--bg-primary);
    padding: 80px 0 120px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content {
    color: var(--text-secondary);
    line-height: 1.9;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--text-primary);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-content table th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-weight: 600;
}

.legal-content table td {
    background: var(--bg-secondary);
}

.legal-content .last-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-muted);
}

/* ----------------------------------------
   Responsive - Tablet & Below
   ---------------------------------------- */
@media (max-width: 1200px) {
    .hero h1,
    .page-hero .hero-content h1 {
        font-size: 42px;
        white-space: normal;
        max-width: 700px;
    }

    .nav-container,
.hero-container,
.section-container {
        padding: 0 48px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    /* Grid layouts now handled by Bootstrap responsive classes */

    .pricing-grid {
        max-width: 440px;
        margin: 0 auto;
    }

    .steps-grid::before {
        display: none;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    

    
}

/* Tablet-first navigation: use hamburger up to 1199px for stability */
@media (max-width: 1300px) {
    .nav-links,
.nav-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    body .nav-container {
        padding: 0 32px;
    }
}

/* iPad/tablet fine-tuning */
@media (min-width: 768px) and (max-width: 1199px) {
    body .navbar {
        padding: 16px 0;
    }

    body .navbar.scrolled {
        padding: 12px 0;
    }

    body .nav-logo img {
        height: 14px;
    }
}

@media (max-width: 768px) {
    .nav-container,
.hero-container,
.section-container {
        padding: 0 24px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1,
    .page-hero .hero-content h1 {
        font-size: 32px;
        white-space: normal;
        max-width: 100%;
        line-height: 1.2;
    }

    .hero h1 br,
    .page-hero .hero-content h1 br {
        display: none;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Grid layouts now handled by Bootstrap responsive classes */

    .step-card {
        padding: 28px 24px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .diff-header h2 {
        font-size: 32px;
    }

    .comparison-wrapper {
        max-width: 100%;
    }

    .comparison-header,
.comparison-row {
        padding: 14px 16px;
        font-size: 13px;
    }

    

    .feature-card,
.step-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 28px;
    }

    .pricing-name {
        font-size: 24px;
    }

    

    /* Footer grid layout now handled by Bootstrap responsive classes */

    .hero-cta {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .signup-container {
        padding: 32px 24px;
        max-width: 100%;
    }

    .signup-header h2 {
        font-size: 24px;
    }

    

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .comparison-header,
.comparison-row {
        font-size: 12px;
        padding: 12px 8px;
    }

    .frameworks-strip {
        flex-wrap: wrap;
        gap: 12px;
    }

    .frameworks-strip-label {
        width: 100%;
        text-align: center;
    }

    .frameworks-strip-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 600px) {

    .modal-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container,
.hero-container,
.section-container {
        padding: 0 16px;
    }

    .hero h1,
    .page-hero .hero-content h1 {
        font-size: 26px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .signup-container {
        padding: 28px 20px;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-name {
        font-size: 22px;
    }

    .diff-header h2 {
        font-size: 26px;
    }

    .diff-header p {
        font-size: 15px;
    }

    

    

    .comparison-header,
.comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* ----------------------------------------
   About Page Styles
   ---------------------------------------- */

/* Timeline Section */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, var(--border-color) 100%);
}

/* Values Grid */

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.about-intro-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.about-intro-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}

/* Quote Block */
.quote-block {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.quote-block blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.quote-block blockquote::before {
    content: '"';
    font-size: 80px;
    color: var(--accent);
    display: block;
    margin-bottom: -30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-block cite {
    display: block;
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-secondary);
    font-style: normal;
}

/* ----------------------------------------
   Services Page Styles
   ---------------------------------------- */

/* Service Cards Grid - layout now handled by Bootstrap row/col-* classes */

/* Environments Showcase */
.environments-showcase {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.environments-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.env-grid {
    margin-top: 60px;
}

.env-card {
    position: relative;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0;
    padding: 40px 24px 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.env-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
    background-position:
        top left, top right, bottom left, bottom right;
    background-size: 7px 7px;
    background-repeat: no-repeat;
}

.env-card:hover {
    background: rgba(255, 255, 255, 0.015);
    border-top-color: rgba(255, 255, 255, 0.18);
}

.env-card:hover::before {
    opacity: 1;
}

.env-card i {
    font-size: 40px;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

.env-card:hover i {
    transform: scale(1.04);
}

.env-card span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

/* CTA Banner */

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* Grid layout now handled by Bootstrap row/col-* classes */
.gallery-grid {
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Gallery grid layout now handled by Bootstrap responsive classes */

@media (max-width: 576px) {
    .gallery-item {
        border-radius: 6px;
    }
}

/* Locations Map Style */
.locations-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

/* Grid layout now handled by Bootstrap row/col-* classes */

/* About/Services page mobile responsive */
@media (max-width: 1024px) {
    /* Grid layouts now handled by Bootstrap responsive classes */

    .timeline::before {
        left: 20px;
    }
}

@media (max-width: 768px) {
    /* Grid layouts now handled by Bootstrap responsive classes */

    .env-card {
        padding: 24px 16px;
    }

    .env-card i {
        font-size: 24px;
    }

    .about-intro-content p {
        font-size: 16px;
        padding: 0 10px;
    }

    .quote-block blockquote {
        font-size: 20px;
        padding: 0 20px;
    }

    .quote-block blockquote::before {
        font-size: 50px;
        margin-bottom: -20px;
    }

    

}

/* ----------------------------------------
   Mobile Specific Adjustments
   ---------------------------------------- */
@media (max-width: 576px) {
    /* Logo: smaller on mobile */
    body .nav-logo img {
        height: 12px;
    }

    /* Navbar: logo flush left, menu button flush right */
    body .nav-container {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        padding-right: 0;
    }

    /* Smaller navbar when scrolled on mobile */
    body .navbar.scrolled {
        padding: 6px 0;
    }

    /* Cards: force single column on small mobile screens */
    .env-grid .col-6,
    .gallery-grid .col-6,
    .features-grid .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Mobile menu adjustments */
    .mobile-menu {
        padding: 80px 24px 32px;
    }

    .mobile-menu-close {
        top: 20px;
        right: 24px;
    }

    /* Form row: stack fields vertically */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Center stats on index.php mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-stats > [class*="col"] {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .hero-stats .stat-item,
.hero-stats .stat-number,
.hero-stats .stat-label {
        text-align: center;
    }
}

/* ----------------------------------------
   Platform Page — Asset Types
   ---------------------------------------- */

/* ----------------------------------------
   Platform Page — Pentest AI-First Section
   ---------------------------------------- */

/* ----------------------------------------
   Platform Tour Mockup — Navattic style
   ---------------------------------------- */

/* Progress bar */

/* Browser URL bar */
.mockup-url-bar {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 3px 10px;
    flex: 1;
    margin-left: 12px;
}

.mockup-url-bar i {
    font-size: 9px;
    color: #4ade80;
}

/* HAS app — top-nav layout (matches real HAS) */

/* Top navbar — bg-hackersec = #161616, border #2a2a2a */

/* Main body below navbar */

/* Breadcrumb inside body */

/* ── Mock vvuln.php — exact replica of real HAS detail page ── */

/* Breadcrumb — matching vvuln.php .vuln-breadcrumb */

/* Vuln hero — matching vvuln.php .vuln-hero (critical severity) */

/* Title — matching .vuln-title */

/* Severity badge — matching .badge-sev (solid bg, not translucent) */

/* Status badges — matching Bootstrap .badge with inline bg color */

/* Meta panel — matching hs.css .meta-panel */

/* Section cards — matching hs.css .section-card */

/* Bootstrap btn-outline-light btn-sm for inside mockup */

/* Alterar Status — matching Bootstrap btn-outline-light btn-sm dropdown-toggle */

/* Meta panel — matching real HAS .meta-panel from hs.css */

/* Section cards — matching real HAS .section-card from hs.css */

/* Timeline */

/* Verified fixed banner */

/* ── Mock test list (painel_testes.php) ── */

/* ── Mock new test form (new.php) ── */

/* ── Mock status dropdown (vvuln.php) ── */

/* Screens container */

@keyframes hasFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hotspot indicator (Navattic style) */

@keyframes hs-ring {
    0% { box-shadow: 0 0 0 0   rgba(59,130,246,0.8); }
    65% { box-shadow: 0 0 0 14px rgba(59,130,246,0); }
    100% { box-shadow: 0 0 0 0   rgba(59,130,246,0); }
}

/* Callout bubble */

/* Callout positions — edge touches the dot */
/* When callout is bottom: dot+ring sit at top-center of callout, callout hangs below */

/* nav-advance rows get pointer cursor */

/* Final screen complete indicator */

/* Navigation dots bar */

/* ── Platform mockup — responsive ── */

@media (max-width: 576px) {
    .mockup-header {
        padding: 10px 14px;
    }
    .mockup-dot {
        width: 9px;
        height: 9px;
    }
    .mockup-url-bar {
        font-size: 9px;
    }
}

/* Metric cards */

/* Panel (card) */

/* List table */

/* Recent vuln rows (dashboard panel) */

/* Reference links */

/* ----------------------------------------
   Platform Page — Benefits Section
   ---------------------------------------- */

/* ----------------------------------------
   Stat cards — matching real HAS painel_tecnico.php Bootstrap cards
   ---------------------------------------- */

/* ----------------------------------------
   Vuln list table — matching real HAS Bootstrap dark table
   ---------------------------------------- */

/* Action panel (status change screen) */

/* Retest highlight */

