/* ============================================================
   PENTASYSAI — CYBERSECURITY PAGE STYLES
   ============================================================ */

/* ——— CYBER HERO ——— */
.cyber-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + var(--space-16));
    position: relative;
    overflow: hidden;
}

.cyber-hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.cyber-hero h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    margin-bottom: var(--space-5);
    background: linear-gradient(135deg, var(--text-white), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-hero p {
    font-size: var(--fs-body-lg);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--lh-relaxed);
}

/* Radar decoration */
.radar-container {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.08;
    pointer-events: none;
}

.radar-ring {
    position: absolute;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
}

.radar-ring:nth-child(1) {
    inset: 0;
}
.radar-ring:nth-child(2) {
    inset: 25%;
}
.radar-ring:nth-child(3) {
    inset: 50%;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    transform-origin: left center;
    animation: radarSweep 4s linear infinite;
}


/* ——— CYBER SERVICES GRID ——— */
.cyber-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-8);
}

.cyber-service-card {
    background: var(--bg-deep);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.cyber-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.cyber-service-card:hover {
    border-color: rgba(var(--neon-cyan-rgb), 0.35);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 0 30px rgba(var(--neon-cyan-rgb), 0.03);
}

.cyber-service-card:hover::after {
    transform: scaleX(1);
}

.cyber-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--neon-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.cyber-service-card:hover .cyber-card-icon {
    box-shadow: 0 0 20px rgba(var(--neon-cyan-rgb), 0.25);
    border-color: rgba(var(--neon-cyan-rgb), 0.35);
}

.cyber-service-card h3 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-4);
    letter-spacing: 1px;
}

.cyber-service-card p {
    color: var(--text-muted);
    font-size: var(--fs-body);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-4);
}

.cyber-service-card .cyber-features {
    margin-top: var(--space-4);
}

.cyber-service-card .cyber-features li {
    color: var(--text-muted);
    font-size: var(--fs-small);
    padding: var(--space-2) 0;
    padding-left: var(--space-5);
    position: relative;
}

.cyber-service-card .cyber-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: 700;
}


/* ——— METHODOLOGY TIMELINE ——— */
.methodology-section .method-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    position: relative;
    counter-reset: method-step;
}

.method-step {
    text-align: center;
    padding: var(--space-8) var(--space-4);
    position: relative;
    counter-increment: method-step;
}

.method-step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(var(--neon-cyan-rgb), 0.08);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.method-step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--neon-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    border-radius: var(--radius-full);
    color: var(--neon-cyan);
    font-size: 1.25rem;
    margin: 0 auto var(--space-5);
}

.method-step h4 {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-3);
}

.method-step p {
    font-size: var(--fs-small);
    color: var(--text-muted);
}


/* ——— PLATFORM PTaaS MOCK DASHBOARD ——— */
.ptaas-container {
    background: var(--bg-void);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--glow-cyan);
    margin: var(--space-12) auto;
    overflow: hidden;
    position: relative;
}

.ptaas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-6);
}

.ptaas-title-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.status-blip {
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

.ptaas-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-6);
}

@media (max-width: 992px) {
    .ptaas-body {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Menu */
.ptaas-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.ptaas-menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: var(--fs-small);
    font-weight: 600;
    transition: all var(--transition-base);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.ptaas-menu-item:hover, .ptaas-menu-item.active {
    background: rgba(var(--neon-cyan-rgb), 0.08);
    color: var(--neon-cyan);
    border-left: 3px solid var(--neon-cyan);
}

/* Dashboard Panel */
.ptaas-main {
    background: rgba(10, 15, 30, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.ptaas-panel {
    display: none;
}

.ptaas-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Vulnerabilities Severity Feed */
.severity-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

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

.severity-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    text-align: center;
}

.severity-card.critical { border-top: 3px solid #ef4444; }
.severity-card.high { border-top: 3px solid #f97316; }
.severity-card.medium { border-top: 3px solid #eab308; }
.severity-card.low { border-top: 3px solid #3b82f6; }

.severity-count {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}
.critical .severity-count { color: #ef4444; }
.high .severity-count { color: #f97316; }
.medium .severity-count { color: #eab308; }
.low .severity-count { color: #3b82f6; }

.severity-label {
    font-size: var(--fs-xs);
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

/* Vuln Log Table */
.vuln-log {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.vuln-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    transition: all var(--transition-base);
}

.vuln-item:hover {
    border-color: rgba(var(--neon-cyan-rgb), 0.25);
    background: var(--glass-bg-hover);
}

.vuln-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.severity-badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.severity-badge.critical { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.severity-badge.high { background: rgba(249, 115, 22, 0.15); color: #f97316; border: 1px solid rgba(249, 115, 22, 0.3); }
.severity-badge.medium { background: rgba(234, 179, 8, 0.15); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.3); }
.severity-badge.low { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }

.vuln-name {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--text-white);
}

.vuln-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.status-badge {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}
.status-badge.open { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.status-badge.remediation { background: rgba(234, 179, 8, 0.1); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.2); }
.status-badge.resolved { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }


/* ——— INTERACTIVE SERVICES CONSOLE ——— */
.console-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

@media (max-width: 992px) {
    .console-container {
        grid-template-columns: 1fr;
    }
}

.console-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

@media (max-width: 992px) {
    .console-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: var(--space-3);
    }
}

.console-tab {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 700;
    font-size: var(--fs-small);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
}

.console-tab:hover, .console-tab.active {
    background: var(--glass-bg-hover);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.console-tab i {
    font-size: 1.1rem;
}

.console-tab-content {
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    animation: fadeIn 0.4s ease;
}

.console-tab-content.active {
    display: block;
}

.console-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

@media (max-width: 768px) {
    .console-content-grid {
        grid-template-columns: 1fr;
    }
}

.console-info h3 {
    font-size: var(--fs-h3);
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.console-info p {
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-6);
}

.console-checklist h5, .console-tools h5 {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: var(--fs-small);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
}

.console-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-6);
}

.console-checklist li {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    padding: var(--space-2) 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.console-checklist li i {
    color: var(--neon-green);
    font-size: 0.9rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tool-tag {
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    font-weight: 600;
}


/* ——— COMPARISON MATRIX ——— */
.comparison-section {
    background: var(--bg-deep);
    padding: var(--space-20) 0;
}

.comparison-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
}

@media (max-width: 768px) {
    .comparison-matrix {
        grid-template-columns: 1fr;
    }
}

.comp-col {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
}

.comp-col.scanner {
    opacity: 0.75;
}

.comp-col.manual {
    border-color: rgba(var(--neon-cyan-rgb), 0.3);
    box-shadow: var(--glow-cyan);
}

.comp-col.manual::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-cyan);
    color: var(--text-black);
    font-size: 0.65rem;
    font-weight: 900;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.comp-header {
    margin-bottom: var(--space-6);
}

.comp-header h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-2);
}
.scanner .comp-header h3 { color: var(--text-muted); }
.manual .comp-header h3 { color: var(--neon-cyan); }

.comp-header p {
    font-size: var(--fs-small);
    color: var(--text-dim);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.comp-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.comp-icon {
    font-size: 1.1rem;
    margin-top: 3px;
}
.scanner .comp-icon { color: #ef4444; }
.manual .comp-icon { color: var(--neon-green); }

.comp-text h5 {
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-1);
}

.comp-text p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}


/* ——— METHODOLOGY ANIMATED TIMELINE ——— */
.methodology-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
    position: relative;
}

@media (max-width: 992px) {
    .methodology-timeline {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

.timeline-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
    transition: all var(--transition-base);
}

.timeline-step:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.timeline-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(var(--neon-cyan-rgb), 0.08);
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--neon-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--neon-cyan-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--neon-cyan);
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
}

.timeline-step h4 {
    font-size: var(--fs-body);
    margin-bottom: var(--space-2);
}

.timeline-step p {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    line-height: var(--lh-relaxed);
}


/* ——— SCOPING CALCULATOR ——— */
.calculator-container {
    background: var(--bg-void);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), var(--glow-cyan);
    margin-top: var(--space-10);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-8);
}

@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.input-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-label {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    font-weight: 700;
}

.input-val {
    font-family: var(--font-display);
    font-size: var(--fs-body);
    font-weight: 800;
    color: var(--text-white);
}

.calc-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.calc-select:focus {
    border-color: var(--neon-cyan);
    outline: none;
    box-shadow: var(--glow-cyan);
}

/* Range input styling */
.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 0.3s;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--neon-cyan);
    cursor: pointer;
    box-shadow: var(--glow-cyan);
    transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-6);
}

.result-header h4 {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    margin-bottom: var(--space-1);
}

.result-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-small);
}

.breakdown-label {
    color: var(--text-muted);
}

.breakdown-val {
    font-weight: 700;
    color: var(--text-white);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

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


/* ——— RESPONSIVE CODES ——— */
@media (max-width: 768px) {
    .cyber-hero {
        min-height: 50vh;
    }

    .radar-container {
        display: none;
    }

    .cyber-services-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   VAPT DELIVERABLES — FULL WHITE THEME PREMIUM REDESIGN
   ============================================================ */

/* Section wrapper */
.dlv-section {
    background: #f8fafc;
    padding: 100px 0 110px;
    position: relative;
}

.dlv-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 400px at 50% 0%, rgba(180,128,8,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.dlv-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 72px;
}

.dlv-label-chip {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: #b48008;
    background: rgba(180,128,8,0.08);
    border: 1px solid rgba(180,128,8,0.2);
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.dlv-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.dlv-heading-accent {
    color: #b48008;
}

.dlv-subheading {
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ── Grid ── */
.dlv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Card ── */
.dlv-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 4px rgba(15,23,42,0.04), 0 4px 20px rgba(15,23,42,0.04);
}

.dlv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15,23,42,0.10);
    border-color: #cbd5e1;
}

/* Card top row: icon + number side by side */
.dlv-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* ── Large Icon Box ── */
.dlv-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dlv-card:hover .dlv-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* Icon colour variants */
.dlv-icon-gold   { background: rgba(180,128,8,0.1);  color: #b48008; border: 2px solid rgba(180,128,8,0.2); }
.dlv-icon-red    { background: rgba(220,38,38,0.08); color: #dc2626; border: 2px solid rgba(220,38,38,0.18); }
.dlv-icon-green  { background: rgba(22,163,74,0.08); color: #16a34a; border: 2px solid rgba(22,163,74,0.18); }
.dlv-icon-blue   { background: rgba(2,132,199,0.08); color: #0284c7; border: 2px solid rgba(2,132,199,0.18); }
.dlv-icon-purple { background: rgba(124,58,237,0.08);color: #7c3aed; border: 2px solid rgba(124,58,237,0.18); }
.dlv-icon-amber  { background: rgba(217,119,6,0.08); color: #d97706; border: 2px solid rgba(217,119,6,0.18); }

/* Step number badge */
.dlv-num {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
    transition: color 0.3s ease;
}

.dlv-card:hover .dlv-num {
    color: #cbd5e1;
}

/* ── Card Title ── */
.dlv-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* ── Card Description ── */
.dlv-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.72;
    flex-grow: 1;
    margin-bottom: 24px;
}

/* ── Tag Chips (replaces plain checklist) ── */
.dlv-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.dlv-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    width: fit-content;
}

.dlv-tag i {
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Tag colour variants */
.dlv-tag-gold   { background: rgba(180,128,8,0.08);  color: #92650a; border: 1px solid rgba(180,128,8,0.18); }
.dlv-tag-red    { background: rgba(220,38,38,0.07);  color: #b91c1c; border: 1px solid rgba(220,38,38,0.15); }
.dlv-tag-green  { background: rgba(22,163,74,0.07);  color: #15803d; border: 1px solid rgba(22,163,74,0.15); }
.dlv-tag-blue   { background: rgba(2,132,199,0.07);  color: #0369a1; border: 1px solid rgba(2,132,199,0.15); }
.dlv-tag-purple { background: rgba(124,58,237,0.07); color: #6d28d9; border: 1px solid rgba(124,58,237,0.15); }
.dlv-tag-amber  { background: rgba(217,119,6,0.07);  color: #b45309; border: 1px solid rgba(217,119,6,0.15); }

/* ── CTA Banner ── */
.dlv-cta-banner {
    margin-top: 72px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 44px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}

/* Top rainbow border line */
.dlv-cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b48008 0%, #16a34a 35%, #0284c7 65%, #7c3aed 100%);
    border-radius: 20px 20px 0 0;
}

/* Left side */
.dlv-cta-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

/* Gold shield icon circle */
.dlv-cta-shield {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(180,128,8,0.12), rgba(180,128,8,0.04));
    border: 2px solid rgba(180,128,8,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #b48008;
    flex-shrink: 0;
}

.dlv-cta-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.dlv-cta-body {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 460px;
}

.dlv-cta-body strong {
    color: #b48008;
    font-weight: 700;
}

/* Right side buttons */
.dlv-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.dlv-cta-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.dlv-cta-link:hover {
    color: #b48008;
}

.dlv-cta-link i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dlv-cta-link:hover i {
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .dlv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .dlv-section {
        padding: 70px 0 80px;
    }
    .dlv-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 28px;
    }
    .dlv-cta-left {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }
    .dlv-cta-body {
        max-width: 100%;
    }
    .dlv-cta-right {
        width: 100%;
    }
    .dlv-cta-right .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .dlv-grid {
        grid-template-columns: 1fr;
    }
    .dlv-header {
        margin-bottom: 48px;
    }
}

