/* Cyber Security page-specific styles */

.cyber-hero { background: radial-gradient(circle at 78% 42%, rgba(237, 16, 34, 0.12), transparent 32%), rgb(255, 255, 255); }
.hero-copy h1, .page-hero h1{font-size: 60px;}
.hero-points{flex-wrap: nowrap;}
@media (max-width: 900px) {
  .hero-copy h1, .page-hero h1 { font-size: 42px; }
  .hero-points { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero-copy h1, .page-hero h1 { font-size: 32px; }
}
/* Hero visual: central shield with floating capability badges */
.cyber-visual { position: relative; min-height: 460px; display: grid; place-items: center; }
.cyber-shield-core { position: relative; width: 190px; height: 190px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(237, 16, 34, 0.16), transparent 70%); }
.cyber-shield-core::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 1px dashed rgba(237, 16, 34, 0.35); animation: cyber-spin 26s linear infinite; }
.cyber-shield-core .icon-file { width: 92px; height: 92px; padding: 26px; border-radius: 50%; background: linear-gradient(145deg, var(--red), var(--red-dark)); color: rgb(255, 255, 255); box-shadow: rgba(237, 16, 34, 0.35) 0px 22px 48px; }
@keyframes cyber-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cyber-badge { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 172px; padding: 12px 16px; background: rgb(255, 255, 255); border: 1px solid var(--line); border-radius: 14px; box-shadow: rgba(16, 22, 41, 0.1) 0px 16px 32px; }
.cyber-badge .icon-file { width: 34px; height: 34px; flex: 0 0 auto; padding: 8px; border-radius: 10px; background: rgb(255, 240, 242); color: var(--red); }
.cyber-badge strong { display: block; font-size: 12.5px; line-height: 1.2; color: var(--ink); }
.cyber-badge small { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; }
.cyber-badge-1 { left: 2%; top: 6%; }
.cyber-badge-2 { right: 0%; top: 4%; }
.cyber-badge-3 { left: -2%; top: 46%; }
.cyber-badge-4 { right: -2%; top: 48%; }
.cyber-badge-5 { left: 50%; bottom: 2%; transform: translateX(-50%); }

/* Why choose strip */
.cyber-why-band { padding: 40px 0px; margin-block: 0px; background: linear-gradient(180deg, rgba(237, 16, 34, 0.06), rgba(237, 16, 34, 0.02)); border-block: 1px solid rgba(237, 16, 34, 0.12); }
.cyber-why-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px 22px; margin-top: 28px; }
.cyber-why-strip span { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 120px; text-align: center; }
.cyber-why-strip .icon-file { width: 46px; height: 46px; padding: 12px; border-radius: 50%; background: rgb(255, 255, 255); color: var(--red); box-shadow: rgba(237, 16, 34, 0.14) 0px 10px 24px; }
.cyber-why-strip b { font-size: 12.5px; color: var(--ink); line-height: 1.3; }
@media (min-width: 1181px) {
  .cyber-page .metric-band { grid-template-columns: repeat(4, 1fr); }
}


/* Process row */
.cyber-process-row { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; margin-top: 30px; }
.cyber-process-row::before { content: ""; position: absolute; left: 8%; right: 8%; top: 30px; border-top: 2px dashed var(--line); z-index: 0; }
.cyber-process-row article { position: relative; z-index: 1; text-align: center; padding: 0px 6px; }
.cyber-process-row .step-circle { width: 60px; height: 60px; margin: 0px auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: rgb(255, 255, 255); box-shadow: rgba(237, 16, 34, 0.28) 0px 14px 28px; }
.cyber-process-row .step-circle .icon-file { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.cyber-process-row b { display: block; margin-bottom: 6px; font-size: 12px; color: var(--red); letter-spacing: 0.06em; }
.cyber-process-row h3 { margin: 0px 0px 8px; font-size: 15px; }
.cyber-process-row p { margin: 0px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }

/* Bottom CTA */
.cyber-cta { margin-top: 28px; padding: 46px; border-radius: var(--radius); color: rgb(255, 255, 255); background: radial-gradient(circle at 12% 30%, rgba(237, 16, 34, 0.35), transparent 30%), linear-gradient(120deg, rgb(15, 8, 30), rgb(7, 19, 44) 60%, rgb(33, 6, 12)); }
.cyber-cta-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.cyber-cta h2 { margin: 0px 0px 10px; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.18; }
.cyber-cta p { margin: 0px 0px 24px; color: rgba(255, 255, 255, 0.78); max-width: 480px; }
.cyber-cta .actions { margin-top: 0px; }
.cyber-cta-panel { padding: 26px; border-radius: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); }
.cyber-cta-panel .check-list { margin: 0px; }
.cyber-cta-panel .check-list li { margin-bottom: 14px; font-size: 14px; font-weight: 600; }
.cyber-cta-panel .check-list li:last-child { margin-bottom: 0px; }

@media (min-width: 1181px) {
  .cyber-page .logo-grid, .cyber-page .industry-grid-v2, .cyber-page .app-type-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Technologies & Tools We Work With — bordered logo-strip on desktop, boxed grid on smaller screens */
.cyber-page .service-tech-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 0px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.cyber-page .service-tech-strip span { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px 10px; border-right: 1px solid var(--line); border-radius: 0px; background: rgb(255, 255, 255); box-shadow: none; font-size: 13px; }
.cyber-page .service-tech-strip span:last-child { border-right: 0px; }
.cyber-page .service-tech-strip .icon-file { width: 22px; height: 22px; padding: 0px; border-radius: 0px; background: none; }

@media (max-width: 1180px) {
  .cyber-process-row { grid-template-columns: repeat(4, 1fr); gap: 26px 16px; }
  .cyber-process-row::before { display: none; }
  .cyber-cta-grid { grid-template-columns: 1fr; }
  .cyber-visual { min-height: 380px; }
  .cyber-page .service-tech-strip { grid-template-columns: repeat(4, 1fr); border: 0px; gap: 12px; }
  .cyber-page .service-tech-strip span { border: 1px solid var(--line); border-radius: 12px; }
}
@media (max-width: 900px) {
  .cyber-badge { min-width: 148px; padding: 10px 12px; }
  .cyber-badge strong { font-size: 11.5px; }
}
@media (max-width: 640px) {
  .cyber-process-row { grid-template-columns: repeat(2, 1fr); }
  .cyber-visual { min-height: 640px; transform: scale(0.82); }
  .cyber-why-strip span { width: 100px; }
  .cyber-page .service-tech-strip { grid-template-columns: repeat(2, 1fr); }
}
