 /* ================================================================
   DLP PAGE — iBatyr Monitor
   Enterprise SaaS style, premium quality
   ================================================================ */

/* ─── Text gradient helper ─── */
.text-gradient-blue {
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dp-page, .dlp-page {
    --dlp-primary: #7C3AED;
    --dlp-secondary: #3B82F6;
    --dlp-accent: #8B5CF6;
    --dlp-surface: #FFFFFF;
    --dlp-bg: #F8FAFF;
    --dlp-text: #0F172A;
    --dlp-text-muted: #475569;
    --dlp-border: #E2E8F0;
    --dlp-radius: 20px;
    --dlp-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --dlp-shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.1);
    --dlp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override global full-viewport section rule for DLP page */
.dlp-page section:not(.header):not(.footer):not(.dlp-hero) {
    min-height: auto !important;
    display: block !important;
}

/* ================================================================
    DLP CTA FORM - Checkbox Styles
    ================================================================ */
.dlp-cta-form-group--checkbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.dlp-cta-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.dlp-cta-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.dlp-cta-checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.2s ease;
}

.dlp-cta-checkbox:checked + .dlp-cta-checkbox-custom {
    background: #8B5CF6;
    border-color: #8B5CF6;
}

.dlp-cta-checkbox:checked + .dlp-cta-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.dlp-cta-checkbox.error + .dlp-cta-checkbox-custom {
    border-color: #ef4444;
}

.dlp-cta-checkbox-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.dlp-cta-privacy-link {
    color: #A78BFA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dlp-cta-privacy-link:hover {
    color: #C4B5FD;
    text-decoration: underline;
}

.dlp-cta-error-msg--checkbox {
    padding-left: 28px;
    font-size: 12px;
    color: #ef4444;
    margin-top: -4px;
}

/* ================================================================
   DLP CASES SLIDER (Swiper)
   ================================================================ */
.dlp-cases-slider {
  padding: 8px 0 48px 0 !important;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.dlp-cases-slider .swiper-wrapper {
  overflow: visible;
}

.dlp-cases-slider .swiper-slide {
  width: 42% !important;
  height: auto !important;
  display: block !important;
  position: relative !important;
  opacity: 0.4 !important;
  transform: scale(0.93) !important;
  background: transparent !important;
  transition: opacity 0.4s ease, transform 0.4s ease !important;
}

.dlp-cases-slider .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* FORCE case cards inside slider to be visible - OVERRIDE fade-up animation */
.dlp-cases-slider .dlp-case-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

.dlp-cases-slider .slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.dlp-cases-slider .swiper-button-prev-custom,
.dlp-cases-slider .swiper-button-next-custom {
  width: 44px;
  height: 44px;
  border: 1px solid #e1e4e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dlp-text);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.dlp-cases-slider .swiper-button-prev-custom:hover,
.dlp-cases-slider .swiper-button-next-custom:hover {
  border-color: var(--dlp-primary);
  color: var(--dlp-primary);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.dlp-cases-slider .swiper-pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.dlp-cases-slider .swiper-pagination-custom .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d1d6;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dlp-cases-slider .swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--dlp-primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .dlp-cases-slider .swiper-slide {
    width: 82% !important;
  }
}

@media (max-width: 768px) {
  .dlp-cases-slider .swiper-slide {
    width: 94% !important;
  }
  .dlp-case-card {
    padding: 18px;
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .dlp-case-card {
    padding: 16px;
  }
  .dlp-case-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .dlp-case-card h3 {
    font-size: .95rem;
  }
}

/* DLP CASES — large monitors: keep the card narrow so text lines don't
   stretch out thin */
@media (min-width: 1600px) {
  .dlp-cases-slider .swiper-slide {
    width: 36% !important;
  }
  .dlp-case-card {
    padding: 34px;
  }
  .dlp-case-card h3 {
    font-size: 1.25rem;
  }
}

/* ================================================================
    SECTION 1: HERO
    ================================================================ */

.dlp-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, #0A1628 0%, #0F2447 40%, #1A2D5A 100%);
}

.dlp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.dlp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.dlp-hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    animation: dlpGlowPulse 6s ease-in-out infinite;
}

@keyframes dlpGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.dlp-hero-particles {
    position: absolute;
    inset: 0;
}

.dlp-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
}

.dlp-hero-left {
    max-width: 600px;
}

.dlp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    color: #A78BFA;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dlp-hero-title {
    font-size: clamp(2.0rem, 3vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.dlp-hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 520px;
}

.dlp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.dlp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.dlp-trust-item i {
    color: #A78BFA;
    font-size: 0.9rem;
}

.dlp-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dlp-btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4) !important;
}

.dlp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5) !important;
}

.dlp-btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
}

.dlp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ─── Hero Image ─── */

.dlp-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dlp-hero-image {
    width: 122%;
    max-width: 920px;
    height: auto;
    border-radius: 16px;
    /* box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3); */
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.5s ease;
    display: block;
}

/* .dlp-hero-image:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
} */

.dlp-dashboard-mockup {
    width: 100%;
    max-width: 680px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dlp-dashboard-mockup:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.dlp-dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dlp-dash-dots {
    display: flex;
    gap: 6px;
}

.dlp-dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.dlp-dash-dots span:nth-child(1) { background: #EF4444; }
.dlp-dash-dots span:nth-child(2) { background: #F59E0B; }
.dlp-dash-dots span:nth-child(3) { background: #10B981; }

.dlp-dash-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.dlp-dash-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dlp-dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dlp-dash-row:last-child {
    grid-template-columns: 1.2fr 0.8fr 1fr;
}

.dlp-dash-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
}

.dlp-dash-card-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.dlp-dash-card-body {
    position: relative;
}

/* Pie chart */
.dlp-pie-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dlp-pie-svg {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.dlp-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dlp-pie-legend div {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
}

.dlp-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Line chart */
.dlp-line-chart {
    width: 100%;
    height: 60px;
}

/* Incidents table */
.dlp-dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dlp-dash-table tr td {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dlp-dash-table tr:last-child td {
    border-bottom: none;
}

.dlp-dash-table td {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dlp-dash-table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dlp-time {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.7rem;
}

.dlp-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dlp-status.critical { background: #EF4444; }
.dlp-status.high { background: #F59E0B; }
.dlp-status.medium { background: #3B82F6; }
.dlp-status.low { background: #10B981; }

/* Risk circle */
.dlp-risk-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
}

.dlp-risk-circle svg {
    width: 100%;
    height: 100%;
}

.dlp-risk-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EF4444;
    font-size: 1.5rem;
    font-weight: 800;
}

.dlp-risk-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

/* Widgets */
.dlp-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

.dlp-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
}

.dlp-widget i {
    font-size: 1rem;
    color: #A78BFA;
}

/* ================================================================
   SECTION 2: PROBLEMS
   ================================================================ */

.dlp-problems {
    padding: 120px 0;
    background: var(--dlp-bg);
}

/* ─── Radial Problems Layout ─── */
.dlp-problems-radial {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Circle */
.dlp-problems-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.dlp-center-circle {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlp-center-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dlp-center-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.dlp-center-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.dlp-center-text {
    font-size: 0.85rem;
    color: var(--dlp-text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* Corner Cards Grid */
.dlp-problems-grid {
    position: relative;
    width: 100%;
    height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    padding: 20px;
}

.dlp-problem-card {
    position: relative;
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: 28px 24px;
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.dlp-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dlp-shadow-hover);
}

/* Ray/Line from card to center */
.dlp-problem-ray {
    position: absolute;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.2));
    height: 2px;
    z-index: 1;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* Top Left card - ray goes from right-bottom to center */
.dlp-problem-card--tl {
    grid-column: 1;
    grid-row: 1;
}
.dlp-problem-card--tl .dlp-problem-ray {
    right: -40px;
    bottom: -20px;
    width: 60px;
    transform: rotate(45deg);
    transform-origin: right center;
}

/* Top Right card - ray goes from left-bottom to center */
.dlp-problem-card--tr {
    grid-column: 2;
    grid-row: 1;
}
.dlp-problem-card--tr .dlp-problem-ray {
    left: -40px;
    bottom: -20px;
    width: 60px;
    transform: rotate(-45deg);
    transform-origin: left center;
}

/* Bottom Left card - ray goes from right-top to center */
.dlp-problem-card--bl {
    grid-column: 1;
    grid-row: 2;
}
.dlp-problem-card--bl .dlp-problem-ray {
    right: -40px;
    top: -20px;
    width: 60px;
    transform: rotate(-45deg);
    transform-origin: right center;
}

/* Bottom Right card - ray goes from left-top to center */
.dlp-problem-card--br {
    grid-column: 2;
    grid-row: 2;
}
.dlp-problem-card--br .dlp-problem-ray {
    left: -40px;
    top: -20px;
    width: 60px;
    transform: rotate(45deg);
    transform-origin: left center;
}

.dlp-problem-card {
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: 28px 24px;
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dlp-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dlp-shadow-hover);
}

.dlp-problem-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-accent);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.dlp-problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dlp-text);
    line-height: 1.3;
}

.dlp-problem-card p {
    font-size: 0.88rem;
    color: var(--dlp-text-muted);
    line-height: 1.6;
    flex: 1;
}

.dlp-problem-solution {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 999px;
    color: var(--dlp-primary);
    font-size: 0.78rem;
    font-weight: 600;
    align-self: flex-start;
}

/* ─── Responsive Problems ─── */
@media (max-width: 900px) {
    .dlp-problems-radial {
        min-height: auto;
        flex-direction: column;
        gap: 40px;
    }
    
    .dlp-problems-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: -1;
    }
    
    .dlp-center-circle {
        width: 220px;
        height: 220px;
    }
    
    .dlp-center-number {
        font-size: 3rem;
    }
    
    .dlp-problems-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }
    
    .dlp-problem-card--tl,
    .dlp-problem-card--tr,
    .dlp-problem-card--bl,
    .dlp-problem-card--br {
        grid-column: auto;
        grid-row: auto;
    }
    
    .dlp-problem-ray {
        display: none;
    }
}

/* ─── Problems: human-factor dashboard ─── */
.dlp-problems {
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 12% 18%, rgba(59, 130, 246, .10), transparent 28%),
        radial-gradient(circle at 91% 82%, rgba(16, 185, 129, .08), transparent 26%),
        #f6f8fc;
    overflow: hidden;
}

.dlp-problems .section-header {
    max-width: 1320px;
    margin: 0 auto 48px;
}

.dlp-problems .section-title {
    max-width: none;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.dlp-problems-layout {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.dlp-threat-panel {
    position: relative;
    min-height: 620px;
    padding: 34px 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 39%, rgba(59,130,246,.25), transparent 32%),
        linear-gradient(155deg, #17233a 0%, #0b1223 70%, #101b31 100%);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .16);
    color: #fff;
}

.dlp-threat-panel::before,
.dlp-threat-panel::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(96,165,250,.13);
    border-radius: 50%;
}

.dlp-threat-panel::before { width: 420px; height: 420px; top: 94px; }
.dlp-threat-panel::after { width: 330px; height: 330px; top: 139px; }

.dlp-threat-kicker {
    position: relative;
    z-index: 2;
    max-width: 260px;
    color: #dbeafe;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.dlp-threat-chart {
    --threat-neutral: #3c475b;
    position: relative;
    z-index: 2;
    width: 258px;
    height: 258px;
    margin: 38px 0 34px;
    padding: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        #67b7ff 0%,
        #6797ff 28%,
        #7b72f5 46%,
        #9b5de5 60%,
        var(--threat-neutral) 60% 100%
    );
    box-shadow: 0 0 0 8px rgba(255,255,255,.045), 0 0 46px rgba(59,130,246,.32);
}

.dlp-threat-chart::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.dlp-threat-chart-core {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: #101a2e;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(59,130,246,.16);
}

.dlp-threat-chart-core strong {
    display: block;
    font-size: 4.35rem;
    line-height: .95;
    letter-spacing: -.07em;
    background: linear-gradient(135deg, #fff, #60a5fa 72%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dlp-threat-chart-core strong span { font-size: 2rem; margin-left: 3px; }
.dlp-threat-chart-core small { margin-top: 12px; color: #aab8cd; font-size: .7rem; line-height: 1.45; }

.dlp-threat-caption {
    position: relative;
    z-index: 2;
    max-width: 275px;
    margin: -12px 0 0;
    color: #aab8cd;
    font-size: .72rem;
    line-height: 1.55;
    text-align: center;
}

.dlp-threat-legend {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
}

.dlp-threat-legend div {
    display: grid;
    grid-template-columns: 9px auto;
    column-gap: 8px;
    align-items: center;
}

.dlp-threat-legend div > span { grid-row: 1 / 3; width: 8px; height: 28px; border-radius: 8px; }
.dlp-threat-legend strong { font-size: .88rem; }
.dlp-threat-legend small { color: #91a0b6; font-size: .66rem; }
.dlp-threat-legend .is-insider { background: #60a5fa; }
.dlp-threat-legend .is-careless { background: #8b5cf6; }
.dlp-threat-legend .is-time { background: #14b8a6; }
.dlp-threat-legend .is-other { background: #536077; }

.dlp-threat-note {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding: 13px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(96,165,250,.18);
    border-radius: 13px;
    background: rgba(96,165,250,.08);
    color: #c6d2e4;
    font-size: .7rem;
    line-height: 1.45;
}
.dlp-threat-note i { color: #60a5fa; font-size: 1.05rem; }

.dlp-threat-source {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-top: 10px;
    color: #91a0b6;
    font-size: .62rem;
    line-height: 1.35;
    text-decoration: none;
}

.dlp-threat-source:hover,
.dlp-threat-source:focus-visible {
    color: #93c5fd;
    text-decoration: underline;
}

.dlp-problems-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dlp-problems .dlp-problem-card {
    position: relative;
    min-height: 300px;
    padding: 24px 24px 22px;
    gap: 10px;
    overflow: hidden;
    border: 1px solid #e3e9f2;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 30px rgba(15,23,42,.055);
    outline: none;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.dlp-problems .dlp-problem-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(#3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity .3s ease;
}

.dlp-problems .dlp-problem-card:hover,
.dlp-problems .dlp-problem-card:focus-visible,
.dlp-problems .dlp-problem-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(59,130,246,.35);
    box-shadow: 0 18px 44px rgba(37,99,235,.13);
}

.dlp-problems .dlp-problem-card:hover::before,
.dlp-problems .dlp-problem-card:focus-visible::before,
.dlp-problems .dlp-problem-card.is-active::before { opacity: 1; }

.dlp-problem-card-head { display: flex; align-items: center; gap: 10px; }
.dlp-problem-card-head > span { color: #b3becc; font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.dlp-problem-card-head em {
    margin-left: auto;
    padding: 5px 9px;
    border: 1px solid #dbe5f2;
    border-radius: 99px;
    color: #5d6b80;
    font-size: .59rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.dlp-problems .dlp-problem-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,130,246,.13), rgba(139,92,246,.08));
    color: #3977ec;
    font-size: 1.05rem;
}

.dlp-problems .dlp-problem-card h3 { margin-top: 2px; font-size: 1.02rem; line-height: 1.28; }
/* Body copy floor: was a flat .76rem (12.16px) at every viewport — below the
   comfortable-reading floor on phones and never grew on large screens. */
.dlp-problems .dlp-problem-card > p { color: #68758a; font-size: clamp(0.85rem, 1.5vw, 0.92rem); line-height: 1.55; }

.dlp-problems .dlp-problem-solution {
    width: 100%;
    margin-top: auto;
    padding: 12px 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(16,185,129,.18);
    border-radius: 13px;
    background: rgba(16,185,129,.07);
    color: #36584f;
    font-size: clamp(0.78rem, 1.2vw, 0.85rem);
    font-weight: 500;
    line-height: 1.4;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.dlp-problems .dlp-problem-solution i {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    flex: 0 0 19px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: .56rem;
}

.dlp-problems .dlp-problem-solution b { display: block; margin-bottom: 2px; color: #07865f; font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }
.dlp-problems .dlp-problem-card:hover .dlp-problem-solution,
.dlp-problems .dlp-problem-card:focus-visible .dlp-problem-solution,
.dlp-problems .dlp-problem-card.is-active .dlp-problem-solution {
    background: rgba(16,185,129,.13);
    border-color: rgba(16,185,129,.34);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .dlp-problems-layout { grid-template-columns: 320px minmax(0, 1fr); }
    .dlp-threat-panel { min-height: 650px; padding-left: 24px; padding-right: 24px; }
    .dlp-threat-chart { width: 230px; height: 230px; }
}

@media (max-width: 980px) {
    .dlp-problems-layout { grid-template-columns: 1fr; }
    .dlp-threat-panel { min-height: auto; }
    .dlp-threat-chart { margin: 30px 0; }
    .dlp-threat-caption { margin-top: -8px; }
    .dlp-threat-note { margin-top: 28px; max-width: 520px; }
    .dlp-threat-source { align-self: center; }
}

@media (max-width: 680px) {
    .dlp-problems { padding: 72px 0 78px; }
    .dlp-problems .section-header { margin-bottom: 32px; }
    .dlp-problems-right { grid-template-columns: 1fr; }
    .dlp-threat-panel { padding: 28px 20px 22px; border-radius: 22px; }
    .dlp-threat-chart { width: 218px; height: 218px; }
    .dlp-threat-chart-core strong { font-size: 3.7rem; }
    .dlp-problems .dlp-problem-card { min-height: 0; padding: 21px 19px; }
}

/* ================================================================
   SECTION 3: ARCHITECTURE — THREE CARD FLOW
   ================================================================ */

.dlp-architecture {
    padding: 96px 0 100px;
    background:
        radial-gradient(circle at 12% 12%, rgba(139, 92, 246, .13), transparent 26%),
        radial-gradient(circle at 88% 48%, rgba(124, 58, 237, .10), transparent 30%),
        #f8f7fc;
    overflow: hidden;
}

.dlp-arch-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 48px;
}

.dlp-arch-container .section-header.section-header--center {
    width: 100%;
    max-width: none;
    margin: 0 auto 52px;
    padding: 0;
    text-align: center;
    align-items: center;
}

.dlp-arch-container .section-header--center .section-badge {
    display: inline-flex;
    align-self: center;
    border-color: rgba(124, 58, 237, .18);
    background: rgba(124, 58, 237, .08);
    color: #7C3AED;
}

.dlp-arch-container .section-header--center .section-title {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    color: #17132a;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    text-align: center;
}

.dlp-architecture .text-green {
    color: transparent;
    background: linear-gradient(100deg, #6d28d9, #a855f7 55%, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
}

.dlp-arch-container .section-header--center .dlp-arch-lead {
    width: 100%;
    max-width: 900px;
    margin: 22px auto 0;
    color: #665f77;
    font-size: 1.02rem;
    line-height: 1.65;
    text-align: center;
}

/* ─── GRID LAYOUT: 3 cards + 2 arrows ─── */
.dlp-arch-flow {
    position: relative;
}

.dlp-arch-top-row {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 100px minmax(320px, 1fr) 100px minmax(320px, 1fr);
    align-items: stretch;
    gap: 0;
}

/* ─── CARDS ─── */
.dlp-arch-card-1,
.dlp-arch-card-2,
.dlp-arch-card-3 {
    width: 100%;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(139,92,246,0.15);
    box-shadow: 0 10px 40px rgba(15,23,42,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

/* Number badges */
.dlp-arch-num-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 18px rgba(124, 58, 237, .28);
}

/* Titles */
.dlp-arch-card-title,
.dlp-arch-card-sub {
    padding-left: 52px;
    text-align: left;
}

.dlp-arch-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 3px;
    line-height: 1.2;
}

.dlp-arch-card-sub {
    font-size: 0.8rem;
    color: #64748B;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ─── CONNECTOR / ARROWS ─── */
.dlp-arch-connector {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dlp-arch-connector svg {
    width: 100px;
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, .22));
}

/* ─── CARD 1: Laptops ─── */
.dlp-arch-laptops {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
}

.dlp-arch-lap-item {
    display: grid;
    grid-template-columns: 30px 98px minmax(105px, 1fr);
    gap: 10px;
    min-height: 73px;
    justify-content: stretch;
}

.dlp-arch-os {
    font-size: 1.65rem;
    text-align: center;
}
.dlp-arch-os-windows { color: #149ee4; }
.dlp-arch-os-linux { color: #111827; }
.dlp-arch-os-apple { color: #98a0a9; }

.dlp-arch-lap {
    width: 86px;
    height: 59px;
    position: relative;
    flex-shrink: 0;
}

.dlp-arch-lap-screen {
    width: 100%;
    height: 48px;
    background: linear-gradient(145deg, #17324b, #3b82f6);
    border-radius: 5px 5px 0 0;
    border: 2px solid #475569;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #eef2ff;
    letter-spacing: .03em;
    text-shadow: 0 1px 5px rgba(0,0,0,.45);
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.3);
}

.dlp-arch-lap-base {
    width: 118%;
    height: 7px;
    background: #7c8794;
    border-radius: 0 0 3px 3px;
    position: absolute;
    bottom: 0;
    left: -9%;
}

.dlp-arch-lap-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18%;
    height: 3px;
    background: #334155;
    border-radius: 0 0 2px 2px;
}

.dlp-arch-agent {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, .15);
    border-radius: 11px;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .07);
    color: #26323d;
    font-size: .66rem;
    text-align: center;
}

.dlp-arch-agent i { color: #7C3AED; font-size: 1.25rem; }

/* ─── CARD 2: Server ─── */
.dlp-arch-server-wrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.dlp-arch-server-svg {
    width: 190px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
}

.dlp-arch-server-shield {
    position: absolute;
    top: 83px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 58px;
    height: 65px;
    color: #ede9fe;
    font-size: 2.8rem;
    animation: dlpVioletServerGlow 2.8s ease-in-out infinite;
}

@keyframes dlpVioletServerGlow {
    0%, 100% { filter: drop-shadow(0 3px 8px rgba(76, 29, 149, .24)); }
    50% { filter: drop-shadow(0 3px 18px rgba(139, 92, 246, .68)); }
}

/* ─── CARD 3: Monitor ─── */
.dlp-arch-monitor-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    flex: 1;
}

.dlp-arch-soc-monitor {
    width: 90%;
    background: #0F172A;
    border-radius: 8px 8px 0 0;
    border: 2px solid #334155;
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    min-height: 176px;
}

.dlp-arch-soc-top {
    display: flex;
    gap: 5px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dlp-arch-soc-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.dlp-arch-soc-top span:nth-child(1) { background: #EF4444; }
.dlp-arch-soc-top span:nth-child(2) { background: #F59E0B; }
.dlp-arch-soc-top span:nth-child(3) { background: #10B981; }

.dlp-arch-soc-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dlp-arch-soc-row-top {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dlp-arch-soc-pie {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.dlp-arch-soc-pie svg {
    width: 100%;
    height: 100%;
}

.dlp-arch-soc-stats {
    display: flex;
    gap: 12px;
    flex: 1;
}

.dlp-arch-soc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dlp-arch-soc-stat-num {
    font-size: 1rem;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
}

.dlp-arch-soc-stat-lbl {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dlp-arch-soc-row-bot {
    height: 24px;
}

.dlp-arch-soc-row-bot svg {
    width: 100%;
    height: 100%;
}

.dlp-arch-soc-stand {
    width: 25%;
    height: 8px;
    background: #475569;
    border-radius: 0 0 2px 2px;
}

.dlp-arch-operator {
    position: absolute;
    bottom: 78px;
    right: 1px;
    width: 74px;
    height: 125px;
}

.dlp-arch-op-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #26384a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(203, 213, 225, 0.3);
}

.dlp-arch-op-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 88px;
    background: #17324b;
    border-radius: 12px 12px 0 0;
    opacity: .95;
}

.dlp-arch-inline-notice {
    position: absolute;
    z-index: 4;
    width: 96%;
    min-height: 72px;
    left: 2%;
    bottom: 0;
    margin-top: 0;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f1ff, #fff);
    box-shadow: 0 7px 20px rgba(91, 33, 182, .09);
}

.dlp-arch-inline-notice-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #fff;
}

.dlp-arch-inline-notice-icon > span {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #ef4444;
    font-size: .5rem;
    font-weight: 800;
}

.dlp-arch-inline-notice strong,
.dlp-arch-inline-notice small { display: block; }
.dlp-arch-inline-notice strong { color: #352451; font-size: .66rem; }
.dlp-arch-inline-notice small { margin-top: 3px; color: #756b86; font-size: .55rem; line-height: 1.3; }
.dlp-arch-notice-channels { display: flex; gap: 5px; color: #7C3AED; }
.dlp-arch-notice-channels i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #ede9fe; font-size: .66rem; }

/* ─── INFO BLOCK ─── */
.dlp-arch-info-block {
    margin-top: auto;
    background: #faf7ff;
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.dlp-arch-info-block p {
    margin: 0;
    font-size: clamp(0.85rem, 1vw, 0.92rem);
    color: #4a3a6b;
    line-height: 1.55;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .dlp-arch-container { padding: 0 28px; }
    .dlp-arch-top-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .dlp-arch-connector {
        width: 44px;
        height: 44px;
        transform: rotate(90deg);
        overflow: hidden;
    }
    .dlp-arch-connector svg { width: 44px; }
    .dlp-arch-card-1,
    .dlp-arch-card-2,
    .dlp-arch-card-3 {
        max-width: 420px;
        width: 100%;
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .dlp-architecture { padding: 72px 0 78px; }
    .dlp-arch-container { padding: 0 16px; }
    .dlp-arch-container .section-header--center .section-title { font-size: 1.85rem; }
    .dlp-arch-container .section-header--center .dlp-arch-lead { font-size: .84rem; }
    .dlp-arch-lap-item { grid-template-columns: 25px 82px minmax(92px, 1fr); gap: 6px; }
    .dlp-arch-agent { font-size: .58rem; }
    .dlp-arch-card-1,
    .dlp-arch-card-2,
    .dlp-arch-card-3 { padding: 24px 18px; min-height: auto; }
    .dlp-arch-info-block { padding: 16px; }
    /* font-size no longer overridden here — base clamp() already floors at
       0.85rem; this used to shrink it further to .75rem (12px) on mobile. */
}

/* Small phones (~340-400px): the SOC monitor's incident stats were
   overflowing and getting clipped by .dlp-arch-soc-monitor's own
   overflow:hidden ("28 ЗАБЛОКИРОВАНО" was cut off mid-word). Shrink the
   pie, gap and label so both stats fit inside the monitor screen. */
@media (max-width: 400px) {
    .dlp-arch-soc-content { padding: 10px; }
    .dlp-arch-soc-row-top { gap: 6px; }
    .dlp-arch-soc-pie { width: 44px; height: 44px; }
    .dlp-arch-soc-stats { gap: 4px; }
    .dlp-arch-soc-stat-num { font-size: 0.8rem; }
    .dlp-arch-soc-stat-lbl { font-size: 0.42rem; letter-spacing: 0; }
}

/* ================================================================
   SECTION 4: MODULES
   ================================================================ */

.dlp-modules {
    padding: 120px 0;
    background: var(--dlp-bg);
}

.dlp-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.dlp-module-card {
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: 32px 28px;
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
}

.dlp-module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dlp-shadow-hover);
}

.dlp-module-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.dlp-module-card:hover .dlp-module-icon {
    transform: scale(1.1) rotate(-5deg);
}

.dlp-module-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dlp-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dlp-module-card p {
    font-size: 0.88rem;
    color: var(--dlp-text-muted);
    line-height: 1.7;
}

/* ================================================================
   SECTION 5: ANALYTICS
   ================================================================ */

.dlp-analytics {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 118px 0 126px;
    background:
        radial-gradient(circle at 15% 18%, rgba(96, 165, 250, .26), transparent 27%),
        radial-gradient(circle at 87% 80%, rgba(168, 85, 247, .28), transparent 32%),
        linear-gradient(135deg, #07152d 0%, #102b5d 48%, #302060 100%);
}

.dlp-analytics::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .38;
    background-image: linear-gradient(rgba(191,219,254,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(191,219,254,.12) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.dlp-analytics .container { position: relative; z-index: 1; }

.dlp-analytics-orbit {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: max(100%, 1440px);
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
}

.dlp-analytics-orbit-dot { animation: analyticsOrbit 7s linear infinite; transform-origin: 1200px 100px; }

@keyframes analyticsOrbit { to { transform: rotate(360deg); } }

.dlp-analytics .section-header {
    max-width: 780px;
    margin: 0 auto 48px;
    align-items: center;
    text-align: center;
}

.dlp-analytics .section-badge {
    border-color: rgba(191, 219, 254, .24);
    background: rgba(255,255,255,.08);
    color: #bfdbfe;
    box-shadow: 0 8px 24px rgba(2, 8, 23, .16);
}

.dlp-analytics .section-title { color: #f8fbff; }

.dlp-analytics .text-gradient-blue {
    background: linear-gradient(100deg, #93c5fd, #c4b5fd 52%, #e9d5ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.dlp-analytics-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    counter-reset: analytics-step;
}

/* .dlp-analytics-cards::before {
    content: '';
    position: absolute;
    top: 55px;
    right: 16.666%;
    left: 16.666%;
    height: 1px;
    background: linear-gradient(90deg, rgba(96,165,250,.15), rgba(196,181,253,.9), rgba(96,165,250,.15));
    box-shadow: 0 0 18px rgba(167,139,250,.55);
} */

.dlp-analytic-card {
    position: relative;
    min-height: 372px;
    padding: 26px 46px 18px;
    display: flex;
    flex-direction: column;
    text-align: left;
    counter-increment: analytics-step;
    transition: transform .35s ease;
}

.dlp-analytic-card + .dlp-analytic-card { border-left: 1px solid rgba(219, 234, 254, .2); }
.dlp-analytic-card:nth-child(2) { margin-top: 66px; }
.dlp-analytic-card:nth-child(3) { margin-top: 24px; }

.dlp-analytic-card::before {
    content: '0' counter(analytics-step);
    position: absolute;
    top: -12px;
    left: 42px;
    color: rgba(191,219,254,.16);
    font-size: 5.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}

.dlp-analytic-card:hover {
    transform: translateY(-10px);
}

.dlp-analytic-icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    margin: 16px 0 32px;
    filter: drop-shadow(0 0 9px rgba(167,139,250,.5));
}

.dlp-analytic-icon svg { width: 32px; height: 32px; }

.dlp-analytic-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.dlp-analytic-card p {
    position: relative;
    z-index: 1;
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    color: #d5e3f8;
    line-height: 1.6;
    max-width: 310px;
    margin-bottom: 24px;
}

.dlp-analytic-chart {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: 110px;
    margin-top: auto;
    padding: 16px 0 0;
    border-top: 1px solid rgba(219, 234, 254, .2);
}

.dlp-analytic-chart svg {
    width: 100%;
    height: 100%;
}

.dlp-heatmap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    height: 100%;
}

.dlp-network-svg {
    width: 100%;
    height: 100%;
    max-height: 80px;
    display: block;
}

.dlp-report-line {
    stroke-dasharray: 460;
    stroke-dashoffset: 460;
    animation: analyticsDraw 2.8s ease-out infinite alternate;
}

.dlp-report-point { animation: analyticsPulse 1.8s ease-in-out infinite; transform-origin: 320px 25px; }

.dlp-bars rect { transform-box: fill-box; transform-origin: center bottom; animation: analyticsBars 2.2s ease-in-out infinite alternate; }
.dlp-bars rect:nth-child(2n) { animation-delay: .35s; }
.dlp-bars rect:nth-child(3n) { animation-delay: .7s; }

.dlp-network-link { stroke-dasharray: 6 5; animation: analyticsFlow 1.8s linear infinite; }
.dlp-network-svg circle { animation: analyticsPulse 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.dlp-network-svg circle:nth-of-type(2n) { animation-delay: .55s; }

@keyframes analyticsDraw { to { stroke-dashoffset: 0; } }
@keyframes analyticsPulse { 50% { transform: scale(1.35); opacity: .72; } }
@keyframes analyticsBars { to { transform: scaleY(.64); } }
@keyframes analyticsFlow { to { stroke-dashoffset: -22; } }

@media (prefers-reduced-motion: reduce) {
    .dlp-analytics *, .dlp-analytics *::before, .dlp-analytics *::after { animation: none !important; }
}

@media (max-width: 900px) {
    .dlp-analytics-cards { gap: 24px; max-width: 560px; }
    .dlp-analytic-card,
    .dlp-analytic-card:nth-child(2),
    .dlp-analytic-card:nth-child(3) { min-height: 300px; margin: 0; padding: 20px 0 18px 70px; width: 100%; }
    .dlp-analytic-card + .dlp-analytic-card { border-top: 1px solid rgba(219, 234, 254, .2); border-left: 0; }
    .dlp-analytic-card::before { top: 18px; left: 0; font-size: 3.7rem; }
    .dlp-analytic-icon { margin-top: 10px; margin-bottom: 20px; }
}

/* OLAP Mockup */
.dlp-olap-mockup {
    background: var(--dlp-bg);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    overflow: hidden;
    box-shadow: var(--dlp-shadow);
    max-width: 1400px;
    margin: 0 auto;
}

.dlp-olap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--dlp-surface);
    border-bottom: 1px solid var(--dlp-border);
}

.dlp-olap-tabs {
    display: flex;
    gap: 4px;
}

.dlp-olap-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dlp-text-muted);
    cursor: default;
    transition: background var(--dlp-transition), color var(--dlp-transition);
}

.dlp-olap-tab.active {
    background: rgba(139, 92, 246, 0.1);
    color: var(--dlp-primary);
    font-weight: 600;
}

.dlp-olap-actions {
    display: flex;
    gap: 8px;
}

.dlp-olap-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--dlp-bg);
    border: 1px solid var(--dlp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-text-muted);
    font-size: 0.85rem;
    cursor: default;
    transition: background var(--dlp-transition);
}

.dlp-olap-btn:hover {
    background: var(--dlp-border);
}

.dlp-olap-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 200px;
}

.dlp-olap-sidebar {
    padding: 16px;
    border-right: 1px solid var(--dlp-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dlp-olap-dim {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dlp-text-muted);
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    cursor: default;
    transition: background var(--dlp-transition), color var(--dlp-transition);
}

.dlp-olap-dim:hover {
    background: rgba(139, 92, 246, 0.06);
    color: var(--dlp-primary);
}

.dlp-olap-content {
    padding: 16px;
}

.dlp-olap-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dlp-olap-tr {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr 0.8fr 1fr;
    gap: 12px;
    padding: 12px 16px;
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--dlp-text);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
}

.dlp-olap-tr:hover {
    transform: translateX(4px);
    box-shadow: var(--dlp-shadow);
}

.dlp-olap-tr span:last-child {
    font-weight: 600;
}

.dlp-olap-tr:nth-child(1) span:last-child { color: #EF4444; }
.dlp-olap-tr:nth-child(2) span:last-child { color: #F59E0B; }
.dlp-olap-tr:nth-child(3) span:last-child { color: #10B981; }
.dlp-olap-tr:nth-child(4) span:last-child { color: #F59E0B; }
.dlp-olap-tr:nth-child(5) span:last-child { color: #10B981; }

/* ================================================================
   SECTION 6: CASES
   ================================================================ */

.dlp-cases {
    padding: clamp(48px, 6vw, 64px) 0;
    background: var(--dlp-bg);
}

.dlp-cases .section-header {
    margin-bottom: clamp(20px, 3vw, 32px);
}

.dlp-cases-grid {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #8B5CF6 transparent;
}

.dlp-cases-grid::-webkit-scrollbar {
    height: 6px;
}

.dlp-cases-grid::-webkit-scrollbar-track {
    background: transparent;
}

.dlp-cases-grid::-webkit-scrollbar-thumb {
    background: #8B5CF6;
    border-radius: 3px;
}

.dlp-cases-grid::-webkit-scrollbar-thumb:hover {
    background: #7C3AED;
}

.dlp-case-card {
    scroll-snap-align: start;
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: clamp(20px, 2.4vw, 28px);
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    box-sizing: border-box;
}

.dlp-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dlp-shadow-hover);
}

.dlp-case-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.dlp-case-card h3 {
    font-size: clamp(0.95rem, 1.5vw, 1.08rem);
    font-weight: 700;
    color: var(--dlp-text);
    line-height: 1.3;
}

.dlp-case-detail {
    padding: 10px 14px;
    background: var(--dlp-bg);
    border-radius: 12px;
}

.dlp-case-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dlp-text-muted);
    margin-bottom: 3px;
}

.dlp-case-detail p {
    font-size: clamp(0.8rem, 1vw, 0.86rem);
    color: var(--dlp-text);
    line-height: 1.45;
    margin: 0;
}

.dlp-case-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #059669;
    margin-top: auto;
}


.dlp-case-result-icon {
    color: #10B981;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* ================================================================
   SECTION 7: TECHNICAL REQUIREMENTS
   ================================================================ */

.dlp-tech {
    padding: 120px 0;
    background: var(--dlp-surface);
}

.dlp-tech-table-wrap {
    overflow-x: auto;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--dlp-radius);
    border: 1px solid var(--dlp-border);
    box-shadow: var(--dlp-shadow);
}

.dlp-tech-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.dlp-tech-table thead {
    background: linear-gradient(135deg, #0A1628, #0F2447);
}

.dlp-tech-table thead th {
    padding: 20px 24px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.dlp-tech-table thead th i {
    margin-right: 8px;
    color: #A78BFA;
}

.dlp-tech-table thead th:first-child {
    border-radius: 0;
}

.dlp-tech-table tbody tr {
    border-bottom: 1px solid var(--dlp-border);
    transition: background var(--dlp-transition);
}

.dlp-tech-table tbody tr:last-child {
    border-bottom: none;
}

.dlp-tech-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.03);
}

.dlp-tech-table tbody td {
    padding: 18px 24px;
    color: var(--dlp-text);
    font-size: 0.88rem;
}

.dlp-tech-param {
    font-weight: 600;
    color: var(--dlp-primary) !important;
}

.dlp-tech-param i {
    margin-right: 8px;
    color: var(--dlp-accent);
    width: 18px;
}

/* ================================================================
   SECTION 8: COMPLIANCE
   ================================================================ */

.dlp-compliance {
    padding: 120px 0;
    background: var(--dlp-bg);
}

.dlp-compliance-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.dlp-compliance-card {
    flex: 1 1 300px;
    max-width: 400px;
}

.dlp-compliance-card {
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
}

.dlp-compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dlp-shadow-hover);
}

.dlp-compliance-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-accent);
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.dlp-compliance-card:hover .dlp-compliance-icon {
    transform: scale(1.1) rotate(10deg);
}

.dlp-compliance-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dlp-text);
    margin-bottom: 12px;
}

.dlp-compliance-card p {
    font-size: clamp(0.85rem, 1vw, 0.92rem);
    color: var(--dlp-text-muted);
    line-height: 1.6;
}

/* ================================================================
   SECTION 9: WHY CHOOSE US
   ================================================================ */

.dlp-why {
    padding: 112px 0 120px; overflow: hidden;
    background: radial-gradient(circle at 50% 52%, rgba(99,102,241,.10), transparent 27%), radial-gradient(circle at 18% 50%, rgba(59,130,246,.06), transparent 19%), var(--dlp-surface);
}
.dlp-why-header { text-align: center; margin: 0 auto 38px; max-width: none; }
.dlp-why-header .section-badge { margin-inline: auto; }
.dlp-why-header .section-title { max-width: none; }

/* Center section-badge in all DLP sections */
.dlp-page .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dlp-page .section-header .section-badge {
    align-self: center;
}
.dlp-why-diagram { position: relative; max-width: 1220px; height: 550px; margin: 0 auto; }
.dlp-why-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.dlp-why-lines path { fill: none; stroke: url(#dlpWhyLine); stroke-width: 1.6; }
.dlp-why-lines__ring { stroke-width: 1 !important; opacity: .38; }
.dlp-why-lines__dots circle { fill: #3b82f6; filter: drop-shadow(0 0 5px #60a5fa); }
.dlp-why-card { position: absolute; display: flex; align-items: center; gap: 18px; width: 320px; z-index: 2; text-align: left; background: transparent; border: 0; padding: 10px; box-shadow: none; transition: transform .3s ease; }
.dlp-why-card--top { top: 40px; left: calc(50% - 45px); width: 350px; }
.dlp-why-card--left { top: 170px; left: 0; text-align: right; }
.dlp-why-card--right { top: 170px; right: 0; }
.dlp-why-card--bottom-left { bottom: 8px; left: 78px; text-align: right; }
.dlp-why-card--bottom-right { bottom: 8px; right: 78px; }
.dlp-why-card:hover { transform: translateY(-5px); }
.dlp-why-card:hover .dlp-why-icon { transform: scale(1.08); box-shadow: 0 12px 28px rgba(79,70,229,.22); }
.dlp-why-icon { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(145deg,#fff,#eef3ff); border: 1px solid rgba(148,163,184,.2); box-shadow: 0 10px 26px rgba(68,85,150,.16), inset 0 2px 2px rgba(255,255,255,.9); display: grid; place-items: center; color: #7068f7; font-size: 1.8rem; transition: transform .3s ease, box-shadow .3s ease; }
.dlp-why-card h3 { font-size: .98rem; font-weight: 700; color: var(--dlp-text); margin: 0 0 9px; line-height: 1.3; }
.dlp-why-card p { font-size: .82rem; color: var(--dlp-text-muted); line-height: 1.65; margin: 0; }
.dlp-why-core { position:absolute; left:50%; top:51%; z-index:1; width:210px; height:225px; transform:translate(-50%,-50%); clip-path:polygon(50% 0,91% 18%,91% 58%,75% 85%,50% 100%,25% 85%,9% 58%,9% 18%); background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(229,235,255,.92)); box-shadow:0 20px 42px rgba(59,82,170,.18), inset 0 1px 0 #fff; display:flex; flex-direction:column; align-items:center; justify-content:center; padding-top:12px; color:#102d75; }
.dlp-why-core::before { content:''; position:absolute; inset:2px; clip-path:inherit; border:1px solid rgba(99,102,241,.15); }
.dlp-why-core__halo { position:absolute; width:285px; height:285px; border:1px solid rgba(99,102,241,.14); border-radius:50%; z-index:-1; }
.dlp-why-core__shield { color:#4f6ef7; font-size:3.35rem; line-height:1; filter:drop-shadow(0 6px 8px rgba(59,130,246,.18)); margin-bottom:10px; }
.dlp-why-core strong { font-size:1.3rem; line-height:1; letter-spacing:-.04em; }
.dlp-why-core span { font-size:1.12rem; font-weight:700; line-height:1.15; }

@media (max-width: 1050px) {
    .dlp-why-diagram { height: 620px; max-width: 850px; }
    .dlp-why-card { width: 255px; gap: 12px; }
    .dlp-why-card--top { left: calc(50% - 35px); width: 300px; }
    .dlp-why-card--left { left: 0; }
    .dlp-why-card--right { right: 0; }
    .dlp-why-card--bottom-left { left: 0; }
    .dlp-why-card--bottom-right { right: 0; }
    .dlp-why-icon { flex-basis: 68px; width: 68px; height: 68px; font-size: 1.45rem; }
}

@media (max-width: 720px) {
    .dlp-why { padding: 76px 0; }
    .dlp-why-header { margin-bottom: 24px; }
    .dlp-why-diagram { height: auto; display: grid; gap: 14px; }
    .dlp-why-lines { display: none; }
    .dlp-why-core { position: relative; left: auto; top: auto; transform: none; order: -1; margin: 22px auto 34px; width: 180px; height: 195px; }
    .dlp-why-core__halo { width: 235px; height: 235px; }
    .dlp-why-card, .dlp-why-card--top, .dlp-why-card--left, .dlp-why-card--right, .dlp-why-card--bottom-left, .dlp-why-card--bottom-right { position: relative; inset: auto; width: 100%; padding: 18px; text-align: left; background: rgba(248,250,255,.85); border: 1px solid var(--dlp-border); border-radius: 18px; box-shadow: var(--dlp-shadow); }
    .dlp-why-card--left, .dlp-why-card--bottom-left { flex-direction: row-reverse; justify-content: flex-end; }
    .dlp-why-card--left > div:first-child, .dlp-why-card--bottom-left > div:first-child { text-align: left; }
}


/* ================================================================
   ARCHITECTURE ANIMATIONS
   ================================================================ */

/* Architecture section entrance */
.dlp-architecture.fade-up {
    opacity: 1;
    transform: none;
}

.dlp-architecture.fade-up .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .section-header {
    opacity: 1;
    transform: translateY(0);
}

/* Architecture cards entrance */
.dlp-arch-card-1,
.dlp-arch-card-2,
.dlp-arch-card-3 {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-card-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.dlp-architecture.fade-up.show .dlp-arch-card-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.dlp-architecture.fade-up.show .dlp-arch-card-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Connector animation */
.dlp-arch-connector {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-connector {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

/* Connector SVG line draw animation */
.dlp-arch-connector svg path,
.dlp-arch-connector svg polyline {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.2s ease;
}

.dlp-architecture.fade-up.show .dlp-arch-connector svg path,
.dlp-architecture.fade-up.show .dlp-arch-connector svg polyline {
    stroke-dashoffset: 0;
}

.dlp-architecture.fade-up.show .dlp-arch-connector:nth-child(1) svg path,
.dlp-architecture.fade-up.show .dlp-arch-connector:nth-child(1) svg polyline {
    transition-delay: 0.3s;
}

.dlp-architecture.fade-up.show .dlp-arch-connector:nth-child(3) svg path,
.dlp-architecture.fade-up.show .dlp-arch-connector:nth-child(3) svg polyline {
    transition-delay: 0.5s;
}

/* On mobile the cards stack vertically, so the connector must point down.
   The entrance animation above sets `transform: scale(...)` unconditionally,
   which clobbers the rotate(90deg) from the 1100px layout breakpoint since
   transform has no per-axis longhand — redeclare both together here. */
@media (max-width: 1100px) {
    .dlp-arch-connector {
        transform: rotate(90deg) scale(0.8);
    }
    .dlp-architecture.fade-up.show .dlp-arch-connector {
        transform: rotate(90deg) scale(1);
    }
}

/* Arrow down bounce */
.dlp-arch-arrow-down {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-arrow-down {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.dlp-architecture.fade-up.show .dlp-arch-arrow-down svg {
    animation: dlpArrowBounce 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes dlpArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Lock box */
.dlp-arch-lock-row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-lock-row {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* Notice */
.dlp-arch-notice {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-notice {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
}

/* Explain cards stagger */
.dlp-arch-explain-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-architecture.fade-up.show .dlp-arch-explain-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.dlp-architecture.fade-up.show .dlp-arch-explain-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}

.dlp-architecture.fade-up.show .dlp-arch-explain-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.95s;
}

/* Shield box pulse */
.dlp-arch-shield-box {
    animation: dlpShieldPulse 3s ease-in-out infinite;
}

@keyframes dlpShieldPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08); }
    50% { box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2); }
}

/* Server shield glow */
.dlp-arch-server-shield {
    animation: dlpServerGlow 2.5s ease-in-out infinite;
}

@keyframes dlpServerGlow {
    0%, 100% { filter: drop-shadow(0 3px 8px rgba(0,0,0,.25)); }
    50% { filter: drop-shadow(0 3px 16px rgba(16, 185, 129, 0.4)); }
}

/* Alert badge pulse */
.dlp-arch-alert-badge {
    animation: dlpAlertPulse 2s ease-in-out infinite;
}

@keyframes dlpAlertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mini card hover enhancement */
.dlp-arch-mini-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dlp-arch-card-2:hover .dlp-arch-mini-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}


/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card animations */
.dlp-problem-card,
.dlp-module-card,
.dlp-analytic-card,
.dlp-case-card,
.dlp-compliance-card,
.dlp-why-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dlp-problem-card.visible,
.dlp-module-card.visible,
.dlp-analytic-card.visible,
.dlp-case-card.visible,
.dlp-compliance-card.visible,
.dlp-why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Why diagram: the old card observer reveals each benefit in sequence. */
.dlp-why .dlp-why-lines path {
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    opacity: 0;
    transition: stroke-dashoffset 1.15s cubic-bezier(.22,.7,.2,1), opacity .25s ease;
}

.dlp-why.show .dlp-why-lines path { stroke-dashoffset: 0; opacity: 1; }
.dlp-why.show .dlp-why-lines__ring { transition-delay: .18s; }
.dlp-why-lines__dots circle { opacity: 0; transform: scale(0); transform-origin: center; transition: opacity .25s ease, transform .38s cubic-bezier(.34,1.56,.64,1); }
.dlp-why.show .dlp-why-lines__dots circle { opacity: 1; transform: scale(1); }
.dlp-why.show .dlp-why-lines__dots circle:nth-child(1) { transition-delay: .4s; }
.dlp-why.show .dlp-why-lines__dots circle:nth-child(2) { transition-delay: .54s; }
.dlp-why.show .dlp-why-lines__dots circle:nth-child(3) { transition-delay: .64s; }
.dlp-why.show .dlp-why-lines__dots circle:nth-child(4) { transition-delay: .74s; }
.dlp-why.show .dlp-why-lines__dots circle:nth-child(5) { transition-delay: .84s; }

.dlp-why .dlp-why-core { opacity: 0; transform: translate(-50%, -50%) scale(.82); transition: opacity .55s ease .26s, transform .7s cubic-bezier(.34,1.56,.64,1) .26s; }
.dlp-why.show .dlp-why-core { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.dlp-why.show .dlp-why-core__halo { animation: dlpWhyHalo 2.8s ease-in-out infinite .9s; }
.dlp-why.show .dlp-why-core__shield { animation: dlpWhyShield 2.8s ease-in-out infinite .9s; }

.dlp-why .dlp-why-card { opacity: 0; transform: translateY(22px) scale(.96); transition: opacity .5s ease, transform .65s cubic-bezier(.34,1.56,.64,1); }
.dlp-why .dlp-why-card.visible { opacity: 1; transform: translateY(0) scale(1); }
.dlp-why .dlp-why-card.visible:hover { transform: translateY(-5px) scale(1); }
.dlp-why-card.visible .dlp-why-icon { animation: dlpWhyIconIn .55s cubic-bezier(.34,1.56,.64,1) both; }
.dlp-why-card--top.visible .dlp-why-icon { animation-delay: .05s; }
.dlp-why-card--left.visible .dlp-why-icon { animation-delay: .1s; }
.dlp-why-card--right.visible .dlp-why-icon { animation-delay: .15s; }
.dlp-why-card--bottom-left.visible .dlp-why-icon { animation-delay: .2s; }
.dlp-why-card--bottom-right.visible .dlp-why-icon { animation-delay: .25s; }

@keyframes dlpWhyHalo { 50% { transform: scale(1.08); opacity: .35; } }
@keyframes dlpWhyShield { 50% { transform: translateY(-4px); filter: drop-shadow(0 10px 12px rgba(59,130,246,.3)); } }
@keyframes dlpWhyIconIn { from { transform: scale(.55) rotate(-14deg); } to { transform: scale(1) rotate(0); } }

/* Symmetrical five-node network and travelling data pulses. */
.dlp-why-diagram::before,
.dlp-why-diagram::after { content: ''; position: absolute; z-index: 0; pointer-events: none; width: 210px; height: 210px; background-image: radial-gradient(rgba(76,118,255,.24) 1.1px, transparent 1.1px); background-size: 9px 9px; mask-image: radial-gradient(circle, #000 0%, transparent 70%); -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 70%); opacity: .52; }
.dlp-why-diagram::before { top: 55px; left: 2%; }
.dlp-why-diagram::after { top: 210px; right: 2%; }
.dlp-why-lines__pulse circle { fill: #3b82f6; opacity: 0; filter: drop-shadow(0 0 5px rgba(37,99,235,.9)); }
.dlp-why.show .dlp-why-lines__pulse circle { opacity: 1; transition: opacity .35s ease 1s; }

.dlp-why-icon { position: relative; z-index: 1; }
.dlp-why-icon::before, .dlp-why-icon::after { content: ''; position: absolute; border: 1px solid rgba(95,112,245,.16); border-radius: inherit; pointer-events: none; }
.dlp-why-icon::before { inset: -9px; }
.dlp-why-icon::after { inset: -18px; border-color: rgba(95,112,245,.09); }
.dlp-why-card--top { left: calc(50% - 42px); }
.dlp-why-card--left { left: 18px; }
.dlp-why-card--right { right: 18px; }
.dlp-why-card--bottom-left { left: 78px; }
.dlp-why-card--bottom-right { right: 78px; }

@media (max-width: 1050px) {
    .dlp-why-card--top { left: calc(50% - 35px); }
    .dlp-why-card--left { left: 0; }
    .dlp-why-card--right { right: 0; }
    .dlp-why-card--bottom-left { left: 0; }
    .dlp-why-card--bottom-right { right: 0; }
}

@media (max-width: 720px) {
    .dlp-why-card--top, .dlp-why-card--left, .dlp-why-card--right, .dlp-why-card--bottom-left, .dlp-why-card--bottom-right { top: auto; right: auto; bottom: auto; left: auto; }
}

@media (max-width: 720px) {
    .dlp-why .dlp-why-core { transform: scale(.82); }
    .dlp-why.show .dlp-why-core { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .dlp-why *, .dlp-why *::before, .dlp-why *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* Architecture cards - always visible */
.dlp-arch-card {
    opacity: 1;
    transform: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1200px) {
    .dlp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dlp-hero-left {
        max-width: 100%;
    }
    .dlp-dashboard-mockup {
        transform: none;
    }
    .dlp-dashboard-mockup:hover {
        transform: none;
    }
    .dlp-problems-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .dlp-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dlp-compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dlp-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dlp-cta-left p {
        margin: 0 auto 32px;
    }
    .dlp-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .dlp-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dlp-analytics-cards {
        grid-template-columns: 1fr;
    }
    .dlp-cases-grid {
        flex-direction: column;
        overflow-x: hidden;
        scroll-snap-type: none;
    }
    .dlp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dlp-problems-right {
        grid-template-columns: 1fr;
    }
    .dlp-dash-row:last-child {
        grid-template-columns: 1fr;
    }
    .dlp-dash-row {
        grid-template-columns: 1fr;
    }
    .dlp-olap-body {
        grid-template-columns: 1fr;
    }
    .dlp-olap-sidebar {
        display: none;
    }
}

@media (max-width: 600px) {
    .dlp-materials-grid {
        grid-template-columns: 1fr;
    }
    .dlp-compliance-grid {
        grid-template-columns: 1fr;
    }
    .dlp-why-grid {
        grid-template-columns: 1fr;
    }
    .dlp-hero-trust {
        flex-direction: column;
    }
    .dlp-hero-buttons {
        flex-direction: column;
    }
    .dlp-cta-buttons {
        flex-direction: column;
    }
    .dlp-tech-table {
        font-size: 0.8rem;
    }
    .dlp-tech-table thead th,
    .dlp-tech-table tbody td {
        padding: 12px 16px;
    }
}

/* ================================================================
   PREMIUM BENEFITS NETWORK
   Strict geometric grid: a regular pentagon around one fixed centre.
   ================================================================ */
.dlp-why {
    padding: 132px 0 140px;
    background:
        radial-gradient(ellipse 42% 34% at 50% 51%, rgba(96,165,250,.10), transparent 72%),
        radial-gradient(ellipse 24% 22% at 9% 37%, rgba(96,165,250,.07), transparent 72%),
        radial-gradient(ellipse 22% 20% at 91% 66%, rgba(37,99,235,.045), transparent 72%),
        #fff;
}
.dlp-why-header { position: relative; z-index: 2; margin-bottom: 20px; }
.dlp-why-diagram { position: relative; isolation: isolate; width: 100%; max-width: 1240px; height: 800px; margin: 0 auto; }
.dlp-why-diagram::before, .dlp-why-diagram::after { width: 260px; height: 260px; opacity: .42; z-index: -1; }
.dlp-why-diagram::before { left: 0; top: 131px; }
.dlp-why-diagram::after { right: 0; top: 397px; }

.dlp-why-network { position: absolute; left: 50%; top: 50%; width: min(600px, 54vw); aspect-ratio: 1; transform: translate(-50%, -50%); }
.dlp-why-network__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.dlp-why-network__glow use { fill: none; stroke: #60A5FA; stroke-width: 4; opacity: .25; filter: url(#premiumNetworkGlow); }
.dlp-why-network__lines > *, .dlp-why-network__perimeter { fill: none; stroke: #60A5FA; stroke: url(#premiumNetworkLine); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.dlp-why-network__lines .link--left-top { stroke: url(#premiumLineLeftTop); }
.dlp-why-network__lines .link--right-top { stroke: url(#premiumLineRightTop); }
.dlp-why-network__lines .link--left-bottom { stroke: url(#premiumLineLeftBottom); }
.dlp-why-network__lines .link--right-bottom { stroke: url(#premiumLineRightBottom); }
.dlp-why-network__perimeter { opacity: .52; stroke-width: 1; }
.dlp-why-network__orbit { fill: none; stroke: #60A5FA; stroke-width: 1; stroke-dasharray: 2 5; opacity: .46; vector-effect: non-scaling-stroke; }
.dlp-why-network__particles circle { fill: #2563EB; filter: drop-shadow(0 0 6px rgba(37,99,235,.95)); }

.dlp-why-node { --node-x: 50%; --node-y: 12%; position: absolute; left: var(--node-x); top: var(--node-y); z-index: 3; width: 88px; height: 88px; padding: 0; transform: translate(-50%, -50%); border: 1px solid rgba(96,165,250,.38); border-radius: 50%; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,248,255,.96)); box-shadow: 0 12px 30px rgba(30,64,175,.12), 0 0 0 8px rgba(255,255,255,.72), 0 0 0 9px rgba(96,165,250,.13), 0 0 0 17px rgba(96,165,250,.06); color: #3B82F6; font-size: 1.8rem; cursor: default; display: grid; place-items: center; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, color .35s ease; }
.dlp-why-node::before, .dlp-why-node::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(99,102,241,.12); border-radius: inherit; }
.dlp-why-node::after { inset: -13px; border-color: rgba(96,165,250,.12); }
.dlp-why-node i { position: relative; z-index: 1; }
.dlp-why-node--top { --node-x: 50%; --node-y: 12%; }
.dlp-why-node--left-top { --node-x: 13.8667%; --node-y: 38.25%; }
.dlp-why-node--right-top { --node-x: 86.1333%; --node-y: 38.25%; }
.dlp-why-node--left-bottom { --node-x: 27.6667%; --node-y: 79.25%; }
.dlp-why-node--right-bottom { --node-x: 72.3333%; --node-y: 79.25%; }
.dlp-why-node:hover, .dlp-why-node:focus-visible { transform: translate(-50%, -50%) scale(1.1); color: #2563EB; outline: none; box-shadow: 0 16px 36px rgba(37,99,235,.22), 0 0 0 8px rgba(255,255,255,.8), 0 0 0 10px rgba(96,165,250,.24), 0 0 30px rgba(96,165,250,.34); }

.dlp-why-core { position: absolute; left: 50%; top: 50%; z-index: 4; width: 204px; height: 204px; transform: translate(-50%, -50%); clip-path: none; border-radius: 50%; background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.98), rgba(240,246,255,.78) 62%, rgba(219,234,254,.62)); border: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 20px 50px rgba(37,99,235,.15), 0 0 36px rgba(96,165,250,.14); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); color: #123a91; }
.dlp-why-core::before { inset: 5px; clip-path: none; border: 1px solid rgba(96,165,250,.23); border-radius: 50%; }
.dlp-why-core__halo { width: 292px; height: 292px; border: 1px dashed rgba(96,165,250,.46); box-shadow: 0 0 28px rgba(96,165,250,.10); }
.dlp-why-core__shield { color: #2563EB; font-size: 3.25rem; }
.dlp-why .dlp-why-core,
.dlp-why.show .dlp-why-core { opacity: 1; transform: translate(-50%, -50%); transition: box-shadow .35s ease, filter .35s ease; }
.dlp-why.show .dlp-why-core { animation: dlpPremiumCoreIn .8s cubic-bezier(.2,.85,.2,1) both; }
@keyframes dlpPremiumCoreIn { from { opacity: 0; transform: translate(-50%, -50%) scale(.86); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.dlp-why-copy { position: absolute; z-index: 5; width: 280px; margin: 0; opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.dlp-why-copy h3 { margin: 0 0 10px; color: #0F2147; font-size: 1.2rem; line-height: 1.3; font-weight: 750; }
.dlp-why-copy p { max-height: none; margin: 0; overflow: visible; opacity: 1; transform: none; color: #58708f; font-size: .88rem; line-height: 1.65; }
.dlp-why-diagram:has(.dlp-why-node:hover) .dlp-why-copy h3 { color: #0F2147; transition: color .25s ease; }
.dlp-why-diagram:has(.dlp-why-node--top:hover) .dlp-why-copy--top h3, .dlp-why-diagram:has(.dlp-why-node--left-top:hover) .dlp-why-copy--left-top h3, .dlp-why-diagram:has(.dlp-why-node--right-top:hover) .dlp-why-copy--right-top h3, .dlp-why-diagram:has(.dlp-why-node--left-bottom:hover) .dlp-why-copy--left-bottom h3, .dlp-why-diagram:has(.dlp-why-node--right-bottom:hover) .dlp-why-copy--right-bottom h3 { color: #2563EB; }
.dlp-why-copy--top { top: 15px; left: calc(50% - 200px); width: 400px; text-align: center; }
.dlp-why-copy--left-top { top: 283px; left: 0; text-align: right; }
.dlp-why-copy--right-top { top: 283px; right: 0; }
.dlp-why-copy--left-bottom { top: 557px; left: 55px; width: 320px; text-align: right; }
.dlp-why-copy--right-bottom { top: 557px; right: 55px; width: 320px; }
.dlp-why.show .dlp-why-copy { opacity: 1; transform: translateY(0); }
.dlp-why.show .dlp-why-copy--top { transition-delay: .22s; }.dlp-why.show .dlp-why-copy--left-top { transition-delay: .34s; }.dlp-why.show .dlp-why-copy--right-top { transition-delay: .46s; }.dlp-why.show .dlp-why-copy--left-bottom { transition-delay: .58s; }.dlp-why.show .dlp-why-copy--right-bottom { transition-delay: .7s; }

.dlp-why-network:has(.dlp-why-node--top:hover) .link--top, .dlp-why-network:has(.dlp-why-node--left-top:hover) .link--left-top, .dlp-why-network:has(.dlp-why-node--right-top:hover) .link--right-top, .dlp-why-network:has(.dlp-why-node--left-bottom:hover) .link--left-bottom, .dlp-why-network:has(.dlp-why-node--right-bottom:hover) .link--right-bottom { stroke: #2563EB; stroke-width: 2.4; filter: drop-shadow(0 0 9px rgba(37,99,235,.45)); }
.dlp-why-network:has(.dlp-why-node:hover) .dlp-why-core { box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 20px 50px rgba(37,99,235,.20), 0 0 48px rgba(96,165,250,.30); }
.dlp-why-network__lines > * { animation: dlpPremiumLineBreathe 3.8s ease-in-out infinite; }
@keyframes dlpPremiumLineBreathe { 50% { opacity: .63; } }

@media (max-width: 1050px) { .dlp-why-diagram { height: 650px; }.dlp-why-network { width: min(560px, 62vw); }.dlp-why-copy { width: 200px; font-size: .92rem; }.dlp-why-copy--left-bottom { left: 0; }.dlp-why-copy--right-bottom { right: 0; } }
@media (max-width: 760px) { .dlp-why { padding: 84px 0; }.dlp-why-diagram { height: auto; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }.dlp-why-network { position: relative; left: auto; top: auto; width: min(520px, 92vw); margin: 6px auto 36px; transform: none; order: -1; }.dlp-why-copy, .dlp-why-copy--top, .dlp-why-copy--left-top, .dlp-why-copy--right-top, .dlp-why-copy--left-bottom, .dlp-why-copy--right-bottom { position: relative; inset: auto; width: 100%; padding: 18px 20px; text-align: left; background: #fff; border: 1px solid #e7eef9; border-radius: 16px; box-shadow: 0 8px 24px rgba(30,64,175,.05); }.dlp-why-copy p { max-height: 130px; margin-top: 10px; opacity: 1; transform: none; }.dlp-why-node { width: 68px; height: 68px; font-size: 1.35rem; }.dlp-why-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); margin: 0; order: 0; width: 164px; height: 164px; border-radius: 50%; }.dlp-why-core::before { border-radius: 50%; }.dlp-why-core__halo { width: 222px; height: 222px; }.dlp-why-core__shield { font-size: 2.55rem; } }
@media (prefers-reduced-motion: reduce) { .dlp-why-network__lines > * { animation: none; }.dlp-why-network__particles { display: none; } }

/* ================================================================
   NAVIGATION — ACTIVE LINK (scroll spy)
   ================================================================ */

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dlp-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--dlp-primary) !important;
    font-weight: 700;
}

/* ================================================================
   SECTION 11: DOWNLOAD MATERIALS
   ================================================================ */

.dlp-materials {
    padding: 120px 0;
    background: var(--dlp-bg);
}

.dlp-materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.dlp-material-card {
    background: var(--dlp-surface);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    padding: 32px 28px;
    box-shadow: var(--dlp-shadow);
    transition: transform var(--dlp-transition), box-shadow var(--dlp-transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dlp-material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dlp-shadow-hover);
}

.dlp-material-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dlp-accent);
    font-size: 1.3rem;
}

.dlp-material-icon svg {
    width: 24px;
    height: 24px;
}

.dlp-material-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dlp-text);
    line-height: 1.3;
}

.dlp-material-card p {
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    color: var(--dlp-text-muted);
    line-height: 1.6;
    flex: 1;
}

.dlp-material-btn {
    align-self: flex-start;
}

/* ================================================================
   SECTION 12: FAQ
   ================================================================ */

.dlp-faq {
    padding: 120px 0;
    background: var(--dlp-surface);
}

.dlp-faq .section-header--center {
    max-width: 800px;
    margin: 0 auto 48px;
}

.dlp-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dlp-faq-item {
    background: var(--dlp-bg);
    border: 1px solid var(--dlp-border);
    border-radius: var(--dlp-radius);
    overflow: hidden;
    transition: box-shadow var(--dlp-transition), border-color var(--dlp-transition);
}

.dlp-faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

.dlp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: var(--dlp-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--dlp-transition);
}

.dlp-faq-question:hover {
    color: var(--dlp-primary);
}

.dlp-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    color: var(--dlp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--dlp-transition), background var(--dlp-transition);
}

.dlp-faq-item.is-open .dlp-faq-icon {
    transform: rotate(45deg);
    background: var(--dlp-primary);
    color: #fff;
}

.dlp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.dlp-faq-item.is-open .dlp-faq-answer {
    max-height: 300px;
}

.dlp-faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    color: var(--dlp-text-muted);
    line-height: 1.7;
}

/* ================================================================
   SECTION 10: CTA — FORM CARD
   Glassmorphism + floating label inputs, premium look
   ================================================================ */

.dlp-cta {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: linear-gradient(160deg, #0A1628 0%, #0F2447 40%, #1A2D5A 100%);
}

.dlp-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.dlp-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.dlp-cta-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.3);
    animation: ctaFloat linear infinite;
}

@keyframes ctaFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

.dlp-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── Left side ─── */

.dlp-cta-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dlp-cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    color: #A78BFA;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
}

.dlp-cta-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0;
}

.dlp-cta-left p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 500px;
}

.dlp-cta-left .dlp-cta-text-highlighted {
    padding: 16px 20px !important;
    background: rgba(139, 92, 246, 0.08) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 100% !important;
    margin: 32px 0 0 0 !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1) !important;
}

.dlp-cta-text-highlighted strong {
    color: #A78BFA;
    font-weight: 700;
}

.dlp-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.dlp-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.dlp-cta-feature i {
    color: #A78BFA;
    font-size: 0.85rem;
}

.dlp-cta-shield {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.dlp-cta-shield-rings {
    position: absolute;
    inset: 0;
}

.dlp-cta-shield-rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    animation: ringPulse 3s ease-out infinite;
}

.dlp-cta-shield-rings span:nth-child(1) { animation-delay: 0s; }
.dlp-cta-shield-rings span:nth-child(2) { animation-delay: 0.8s; }
.dlp-cta-shield-rings span:nth-child(3) { animation-delay: 1.6s; }

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0.2; }
    100% { transform: scale(1.6); opacity: 0; }
}

.dlp-cta-shield i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: #8B5CF6;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

/* ─── Right side — Form Card ─── */

.dlp-cta-right {
    display: flex;
    justify-content: center;
}

.dlp-cta-form-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 22px 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.dlp-cta-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}

/* ─── Form Header ─── */

.dlp-cta-form-header {
    text-align: center;
    margin-bottom: 14px;
}

.dlp-cta-form-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #A78BFA;
    font-size: 1.3rem;
}

.dlp-cta-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.dlp-cta-form-header p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ─── Floating Label Inputs ─── */

.dlp-cta-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.dlp-cta-form-group {
    position: relative;
}

.dlp-cta-form-group--textarea .dlp-cta-label {
    top: 14px;
    transform: none;
}

.dlp-cta-form-group--textarea .dlp-cta-input:focus ~ .dlp-cta-label,
.dlp-cta-form-group--textarea .dlp-cta-input:not(:placeholder-shown) ~ .dlp-cta-label {
    top: -8px;
    transform: scale(0.82);
    padding: 0 6px;
}

.dlp-cta-input {
    width: 100%;
    padding: 13px 16px 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.dlp-cta-input::placeholder {
    color: transparent;
}

.dlp-cta-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.dlp-cta-input:focus {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.dlp-cta-input.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.06);
}

.dlp-cta-input.error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.dlp-cta-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    padding: 0 4px;
    z-index: 2;
}

.dlp-cta-input:focus ~ .dlp-cta-label,
.dlp-cta-input:not(:placeholder-shown) ~ .dlp-cta-label {
    top: -8px;
    transform: scale(0.82);
    color: #A78BFA;
    background: #0F2447;
    padding: 0 6px;
}

.dlp-cta-input.error ~ .dlp-cta-label {
    color: #EF4444;
}

.dlp-cta-input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 3;
}

.dlp-cta-input:focus ~ .dlp-cta-input-highlight {
    width: 80%;
}

/* ─── Textarea ─── */

.dlp-cta-textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 18px;
    line-height: 1.5;
}

/* ─── Error Messages ─── */

.dlp-cta-error-msg {
    display: none;
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 4px;
    padding-left: 4px;
    font-weight: 500;
}

.dlp-cta-input.error ~ .dlp-cta-error-msg {
    display: block;
}

/* ─── Submit Button ─── */

.dlp-cta-submit {
    width: 100%;
    padding: 13px 24px;
    background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
}

.dlp-cta-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dlp-cta-submit:hover::before {
    opacity: 1;
}

.dlp-cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.dlp-cta-submit:active {
    transform: translateY(0);
}

.dlp-cta-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dlp-cta-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.dlp-cta-submit.loading .spinner {
    display: block;
}

.dlp-cta-submit.loading .btn-text {
    display: none;
}

.dlp-cta-submit.loading .fa-arrow-right {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.dlp-cta-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.dlp-cta-submit:hover i {
    transform: translateX(4px);
}

/* ─── Form Note ─── */

.dlp-cta-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

.dlp-cta-form-note i {
    font-size: 0.7rem;
}

/* ─── Success State ─── */

.dlp-cta-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
    animation: fadeInUp 0.5s ease;
}

.dlp-cta-success.visible {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dlp-cta-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
    animation: successScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successScale {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.dlp-cta-success-icon i {
    color: #fff;
    font-size: 1.6rem;
}

.dlp-cta-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px;
}

.dlp-cta-success p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
    margin: 0 auto;
}

/* ─── Responsive ─── */

@media (max-width: 968px) {
    .dlp-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .dlp-cta-left {
        align-items: center;
    }

    .dlp-cta-left p {
        max-width: 100%;
    }

    .dlp-cta-badge {
        margin: 0 auto;
    }

    .dlp-cta-features {
        justify-content: center;
    }

    .dlp-cta-shield {
        display: none;
    }

    .dlp-cta-form-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .dlp-cta {
        padding: 72px 0;
    }

    .dlp-cta-form-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .dlp-cta-form-header h3 {
        font-size: 1.2rem;
    }

    .dlp-cta-form {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   RESPONSIVE — NEW SECTIONS
   ================================================================ */

@media (max-width: 1200px) {
    .dlp-materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .dlp-materials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .dlp-materials {
        padding: 72px 0 78px;
    }
    .dlp-faq {
        padding: 72px 0 78px;
    }
    .dlp-faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }
    .dlp-faq-answer p {
        padding: 0 18px 16px;
        /* font-size no longer overridden — base clamp() already floors at
           0.88rem; this used to shrink it further to .85rem on mobile. */
    }
}

/* ================================================================
   DLP RESPONSIVE POLISH
   Breakpoints: desktop, laptop/tablet, phone and compact phone.
   ================================================================ */

.dlp-page img,
.dlp-page svg {
    max-width: 100%;
}

/* Единая типографика заголовков секций DLP. */
.dlp-page .section-title,
.dlp-page .dlp-cta-left h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
}

@media (max-width: 768px) {
    .dlp-page .section-title,
    .dlp-page .dlp-cta-left h2 {
        font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
    }
}

@media (max-width: 1200px) {
    .dlp-page .container {
        width: min(100% - 48px, 1120px);
    }

    .dlp-hero {
        padding: 112px 0 80px;
    }

    .dlp-hero-image {
        width: 100%;
        transform: none;
    }

    .dlp-modules,
    .dlp-analytics,
    .dlp-tech,
    .dlp-compliance {
        padding: 96px 0;
    }
}

@media (max-width: 768px) {
    .dlp-page .container {
        width: min(100% - 40px, 680px);
    }

    .dlp-page .section-header,
    .dlp-page .section-header--center {
        margin-bottom: 32px;
    }

    .dlp-page .section-title {
        font-size: clamp(1.85rem, 8vw, 2.45rem);
        line-height: 1.15;
    }

    .dlp-page .section-subtitle {
        font-size: clamp(.95rem, 3.8vw, 1.08rem);
        line-height: 1.6;
    }

    .dlp-hero {
        padding: 96px 0 64px;
    }

    .dlp-hero-inner {
        gap: 32px;
        text-align: center;
    }

    .dlp-hero-left,
    .dlp-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .dlp-hero-title {
        font-size: clamp(2rem, 9vw, 2.9rem);
        margin-bottom: 18px;
    }

    .dlp-hero-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .dlp-hero-trust,
    .dlp-hero-buttons {
        justify-content: center;
    }

    .dlp-hero-image {
        border-radius: 12px;
    }

    .dlp-modules,
    .dlp-analytics,
    .dlp-tech,
    .dlp-compliance,
    .dlp-materials,
    .dlp-faq {
        padding: 72px 0;
    }

    .dlp-modules-grid,
    .dlp-compliance-grid,
    .dlp-materials-grid {
        gap: 16px;
    }

    .dlp-module-card,
    .dlp-compliance-card,
    .dlp-material-card {
        padding: 22px 20px;
    }

    .dlp-module-icon,
    .dlp-case-icon,
    .dlp-compliance-icon,
    .dlp-material-icon,
    .dlp-analytic-icon {
        transform: scale(.9);
        transform-origin: left top;
    }

    .dlp-tech-table-wrap {
        margin-left: -4px;
        margin-right: -4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dlp-tech-table {
        min-width: 620px;
    }

    .dlp-cta {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .dlp-page .container {
        width: min(100% - 32px, 480px);
    }

    .dlp-hero {
        padding: 88px 0 56px;
    }

    .dlp-hero-badge,
    .dlp-trust-item,
    .dlp-cta-feature {
        font-size: .82rem;
    }

    .dlp-hero-trust,
    .dlp-hero-buttons {
        align-items: stretch;
    }

    .dlp-hero-buttons .btn,
    .dlp-hero-buttons a {
        width: 100%;
    }

    .dlp-module-card,
    .dlp-case-card,
    .dlp-compliance-card,
    .dlp-material-card,
    .dlp-faq-item {
        border-radius: 16px;
    }

    .dlp-cta-form-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .dlp-cta-feature {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   LARGE / WIDE MONITORS (>=1600px, e.g. 1920/2560/4K/ultrawide)
   The shared .container (and several DLP section wrappers) cap out
   at 1400px max-width, so above ~1650px viewport width the page just
   grows side whitespace. This modestly widens the page container and
   scales a curated set of fixed-px decorative visuals (icons, badges,
   the SOC monitor stats, the "why" network diagram, the threat chart)
   by roughly 10-20% so they don't look undersized on very large
   screens. Anything already using clamp()/relative units is left as-is.
   ================================================================ */
@media (min-width: 1600px) {
    .dlp-page .container {
        max-width: 1600px;
    }

    .dlp-hero-inner,
    .dlp-analytics-cards,
    .dlp-cases-grid,
    .dlp-materials-grid,
    .dlp-compliance-grid,
    .dlp-tech-table-wrap,
    .dlp-modules-grid {
        max-width: 1600px;
    }

    .dlp-hero-image { max-width: 1050px; }

    .dlp-hero-left { max-width: 680px; }
    .dlp-hero-title { font-size: clamp(2.6rem, 3.4vw, 4.6rem); }
    .dlp-hero-desc { font-size: clamp(1.1rem, 1.3vw, 1.35rem); max-width: 600px; }
    .dlp-hero-badge { font-size: 0.9rem; padding: 9px 20px; }
    .dlp-trust-item { font-size: 0.95rem; padding: 9px 18px; }

    .dlp-arch-container { max-width: 1680px; }

    .dlp-why-diagram { max-width: 1400px; }
    .dlp-why-network { width: min(680px, 46vw); }

    .dlp-cta-inner { max-width: 1360px; }

    .dlp-problems-layout { max-width: 1440px; }
    .dlp-faq-list { max-width: 1000px; }

    /* ─── Decorative icon / badge scaling (~12-18%) ─── */
    .dlp-problem-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    .dlp-module-icon { width: 64px; height: 64px; font-size: 1.7rem; }
    .dlp-case-icon { width: 60px; height: 60px; font-size: 1.6rem; }
    .dlp-compliance-icon { width: 74px; height: 74px; font-size: 1.85rem; }
    .dlp-material-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    .dlp-cta-form-icon { width: 64px; height: 64px; font-size: 1.5rem; }
    .dlp-arch-num-badge { width: 40px; height: 40px; font-size: 1.15rem; }

    .dlp-cta-shield { width: 118px; height: 118px; }
    .dlp-cta-shield i { font-size: 2.9rem; }

    .dlp-why-node { width: 102px; height: 102px; font-size: 2.05rem; }
    .dlp-why-core { width: 236px; height: 236px; }
    .dlp-why-core__halo { width: 336px; height: 336px; }
    .dlp-why-core__shield { font-size: 3.75rem; }

    .dlp-threat-chart { width: 296px; height: 296px; }
    .dlp-threat-chart-core strong { font-size: 5rem; }

    .dlp-analytic-icon { width: 38px; height: 38px; }
    .dlp-analytic-icon svg { width: 36px; height: 36px; }
}

/* Cookie Banner for DLP pages */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #0F172A;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 20px 24px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    font-size: 0.875rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.cookie-btn-secondary {
    background: #1E293B;
    color: #E2E8F0;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.cookie-btn-secondary:hover {
    border-color: #7C3AED;
    color: #A78BFA;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
