﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ROISA TECH SOLUTIONS â€“ Brand-Aligned Stylesheet
   Manual de Marca:
     Azul claro:  #63A3E1
     Navy medio:  #5588C8
     Navy oscuro: #272B5F / #212A69
     Gris:        #9197A4
     Negro:       #000000
   TipografÃ­a: Bebas Neue (tÃ­tulos) Â· Poppins/Arial (cuerpo)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --blue:        #63A3E1;
  --blue-light:  #89bef0;
  --blue-mid:    #5588C8;
  --blue-deep:   #272B5F;
  --blue-navy:   #212A69;
  --gray:        #9197A4;

  /* Brand gradient (shop.roisa.tech) */
  --brand-gradient: linear-gradient(84deg, #63A3E1 3%, #272B5F 57%);
  --brand-gradient-rev: linear-gradient(264deg, #63A3E1 3%, #272B5F 57%);
  --brand-gradient-v: linear-gradient(180deg, #63A3E1 0%, #272B5F 100%);

  /* Coral accent */
  --cyan:        #FF4D6D;
  --cyan-dim:    rgba(255,77,109,0.10);
  --cyan-border: rgba(255,77,109,0.28);
  --cyan-glow:   0 0 32px rgba(255,77,109,0.30);

  /* Backgrounds â€“ deep navy blue (brand #272B5F derived, NOT black) */
  --bg-0:        #0d1138;
  --bg-1:        #101540;
  --bg-2:        #131948;
  --bg-card:     #192056;
  --bg-card-alt: #151c4e;

  /* Utility */
  --dim:         rgba(99,163,225,0.12);
  --dim-deep:    rgba(39,43,95,0.50);
  --border:      rgba(99,163,225,0.12);
  --border-blue: rgba(99,163,225,0.28);
  --glow:        0 0 32px rgba(99,163,225,0.22);
  --glow-strong: 0 0 56px rgba(99,163,225,0.35);

  /* Text */
  --text:        #ffffff;
  --text-muted:  #b8c8e8;
  --text-faint:  #5a6a9a;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', Arial, sans-serif;
  --font:         'Poppins', Arial, sans-serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  /* Layout */
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 40%, var(--bg-2) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

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

/* â”€â”€â”€ Scrollbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* â”€â”€â”€ Typography helpers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(255,77,109,0.4);
}
.section-tag--gray { color: var(--gray); background: rgba(145,151,164,0.08); border-color: rgba(145,151,164,0.2); }
.section-tag--gold { color: #f0c040; background: rgba(240,192,64,0.08); border-color: rgba(240,192,64,0.2); }
/* Blue badge with brand gradient fill */
.section-tag--blue {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  text-shadow: none;
  box-shadow: 0 2px 16px rgba(99,163,225,0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; /* Bebas Neue is display, no need for bold */
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: #fff;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 60px; }

.text-accent { color: var(--cyan); text-shadow: 0 0 20px rgba(255,77,109,0.3); }

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn:hover::after {
  animation: btn-shine 0.55s ease forwards;
}
@keyframes btn-shine {
  0%   { left: -120%; }
  100% { left: 160%; }
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 4px 20px rgba(99,163,225,0.25);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  box-shadow: 0 8px 40px rgba(99,163,225,0.55), 0 0 0 3px rgba(99,163,225,0.15);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--dim);
  box-shadow: 0 4px 24px rgba(99,163,225,0.18), inset 0 0 20px rgba(99,163,225,0.05);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  transition: var(--transition);
}
.btn-plan:hover { background: var(--dim); border-color: var(--blue); }

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

.link-btn {
  background: none; border: none;
  color: var(--blue); cursor: pointer;
  font-family: var(--font); font-size: inherit;
  text-decoration: underline; padding: 0;
}

/* â”€â”€â”€ Reveal animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.15s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(13,17,56,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 110px; width: auto; object-fit: contain; }
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.logo-sub {
  display: block;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(99,163,225,0.06); }
.nav-link.active { color: var(--blue); }

.nav-highlight { color: var(--cyan) !important; text-shadow: 0 0 10px rgba(255,77,109,0.4); }
.nav-highlight:hover { background: var(--cyan-dim) !important; }

.nav-cta {
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.nav-cta:hover::after { animation: btn-shine 0.5s ease forwards; }
.nav-cta:hover {
  background: var(--blue-light);
  box-shadow: 0 4px 28px rgba(99,163,225,0.5), 0 0 0 2px rgba(99,163,225,0.2);
  transform: translateY(-1px) scale(1.02);
}

/* ── Emergency CTA ── */
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,77,109,0.08);
  border: 1px solid rgba(255,77,109,0.35);
  color: #FF4D6D !important;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-left: 6px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.nav-emergency:hover {
  background: rgba(255,77,109,0.16);
  border-color: rgba(255,77,109,0.6);
  transform: none;
}
.emergency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4D6D;
  flex-shrink: 0;
  animation: emergencyPulse 1.5s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,109,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(255,77,109,0); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Full-bleed bg */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-0);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: -100px;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,163,225,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,163,225,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(39,43,95,0.6) 0%, transparent 70%);
  top: -100px; right: -50px;
  animation: pulse-glow 10s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,163,225,0.08) 0%, transparent 70%);
  bottom: 100px; left: 0;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-particles { position: absolute; inset: 0; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 7px 14px;
  background: var(--dim);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.1s both;
}
.hero-title-accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fade-up 0.8s ease 0.2s both;
}
.hero-subtitle strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 22px 28px;
  background: rgba(99,163,225,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  animation: fade-up 0.8s ease 0.4s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 22px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
}
.stat-plus { color: var(--blue); font-size: 1.4rem; }
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
  text-align: center;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero visual (right column) */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  animation: fade-up 1s ease 0.5s both;
}
.hero-visual-img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow: var(--glow-strong), 0 30px 60px rgba(0,0,0,0.5);
}
.hero-visual-img svg { display: block; width: 100%; height: auto; }

/* â”€â”€â”€ Hero SOC Viz Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-soc-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(99,163,225,0.32);
  box-shadow:
    0 0 60px rgba(99,163,225,0.22),
    0 0 120px rgba(99,163,225,0.08),
    0 0 32px rgba(99,163,225,0.10) inset,
    0 30px 70px rgba(0,0,0,0.65);
  background: #060C1A;
}
.hero-soc-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.hero-soc-wrap .hc-corner { opacity: 0.65; }
.hero-soc-wrap:hover .hc-corner { opacity: 1; }

/* â”€â”€â”€ Hero Matrix Visual (legacy) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-matrix-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(99,163,225,0.3);
  box-shadow: 0 0 80px rgba(99,163,225,0.18), 0 0 32px rgba(99,163,225,0.1) inset, 0 30px 70px rgba(0,0,0,0.6);
  background: #04070f;
}

.hero-matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.hc-circuits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Corner brackets */
.hc-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #63A3E1;
  border-style: solid;
  opacity: 0.75;
  z-index: 10;
  transition: opacity 0.3s;
}
.hc-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hc-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.hc-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.hc-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }
.hero-matrix-wrap:hover .hc-corner { opacity: 1; }

/* Horizontal scan line */
.hc-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,77,109,0.4) 20%, rgba(255,77,109,0.95) 50%, rgba(255,77,109,0.4) 80%, transparent 100%);
  box-shadow: 0 0 18px rgba(255,77,109,0.6), 0 0 4px rgba(255,255,255,0.4);
  z-index: 8;
  animation: hc-scan 5s linear infinite;
}
@keyframes hc-scan {
  0%   { top: 0%; opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Status bar */
.hc-statusbar {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(4,7,15,0.88);
  border: 1px solid rgba(99,163,225,0.3);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  z-index: 10;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.hc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27c93f;
  box-shadow: 0 0 8px #27c93f, 0 0 2px #27c93f;
  flex-shrink: 0;
  animation: hc-blink 2.5s ease-in-out infinite;
}
@keyframes hc-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #27c93f; }
  50% { opacity: 0.35; box-shadow: 0 0 3px #27c93f; }
}
.hc-mono {
  font-family: var(--font-mono);
  color: rgba(99,163,225,0.8);
}
.hc-status-ok {
  font-family: var(--font-mono);
  color: #27c93f;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

/* Center shield wrap */
.hc-center-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-shield-svg {
  width: 230px;
  height: auto;
  position: relative;
  z-index: 6;
  filter: drop-shadow(0 0 24px rgba(99,163,225,0.45));
}

/* Pulse rings */
.hc-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(99,163,225,0.55);
  transform: translate(-50%, -50%);
  animation: hc-pulse 3.5s ease-out infinite;
  pointer-events: none;
}
.hc-pulse-ring.ring1 { width: 170px; height: 170px; animation-delay: 0s; border-color: rgba(255,77,109,0.7); }
.hc-pulse-ring.ring2 { width: 240px; height: 240px; animation-delay: 1.1s; border-color: rgba(99,163,225,0.35); }
.hc-pulse-ring.ring3 { width: 310px; height: 310px; animation-delay: 2.2s; border-color: rgba(255,77,109,0.15); }
@keyframes hc-pulse {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(0.75); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.45); }
}

/* Metric cards */
.hc-card {
  position: absolute;
  background: rgba(4,7,15,0.90);
  border: 1px solid rgba(99,163,225,0.28);
  border-radius: 10px;
  padding: 10px 14px;
  z-index: 10;
  backdrop-filter: blur(10px);
  animation: hc-float 4s ease-in-out infinite;
}
.hc-card-tl { top: 72px; left: 14px; animation-delay: 0s; }
.hc-card-br { bottom: 46px; right: 14px; animation-delay: 2s; }
@keyframes hc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hc-card-label {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: rgba(99,163,225,0.65);
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.hc-card-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}
.hc-card-value small {
  font-size: 0.65rem;
  color: var(--blue);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.hc-card-sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.hc-green { color: #27c93f; }

/* Hex data nodes */
.hc-hex-node {
  position: absolute;
  width: 38px;
  height: 38px;
  background: rgba(99,163,225,0.06);
  border: 1px solid rgba(99,163,225,0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(99,163,225,0.75);
  z-index: 9;
  animation: hc-node-pulse 3s ease-in-out infinite;
}
.hc-hex-node.n1 { top: 88px; right: 18px; animation-delay: 0s; }
.hc-hex-node.n2 { bottom: 96px; left: 18px; animation-delay: 1s; }
.hc-hex-node.n3 { top: 46%; right: 18px; animation-delay: 2s; }
@keyframes hc-node-pulse {
  0%, 100% { border-color: rgba(99,163,225,0.35); box-shadow: none; color: rgba(99,163,225,0.75); }
  50% { border-color: rgba(99,163,225,0.85); box-shadow: 0 0 14px rgba(99,163,225,0.3); color: rgba(137,190,240,1); }
}

/* Bottom typing stream */
.hc-stream {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.5rem;
  color: rgba(99,163,225,0.55);
  letter-spacing: 0.06em;
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
}
.hc-cursor {
  font-family: var(--font-mono);
  color: rgba(99,163,225,0.7);
  animation: hc-blink-cursor 1s step-end infinite;
}
@keyframes hc-blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  animation: fade-in 1.5s ease 1s both;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100%{opacity:0.4; transform:scaleY(1);}
  50%{opacity:1; transform:scaleY(1.2);}
}
@keyframes fade-up { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:none;} }
@keyframes fade-in { from{opacity:0;} to{opacity:1;} }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES OVERVIEW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-overview {
  padding: 100px 0;
  min-height: 100vh;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Gradient top border stripe */
.services-overview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.service-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--glow), 0 20px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: var(--border-blue);
  background: linear-gradient(135deg, rgba(99,163,225,0.07) 0%, var(--bg-card) 60%);
}
.service-card--featured::after {
  content: 'Principal';
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--dim);
  border: 1px solid var(--border-blue);
  padding: 3px 10px;
  border-radius: 100px;
}

.card-icon { flex-shrink: 0; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.service-svg { width: 66px; height: 66px; color: var(--blue); transition: color 0.3s; }
.service-card:hover .service-svg { color: var(--blue-light); }

.card-body { flex: 1; position: relative; }
.card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #fff;
}
.card-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }
.card-link span { transition: transform 0.2s; }
.card-link:hover span { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CYBERSOC SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cybersoc-section {
  position: relative;
  padding: 100px 0;
  min-height: 100vh;
  background: var(--bg-0);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Gradient left-edge accent â€” inspired by Cisco's section design */
.cybersoc-section::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brand-gradient-v);
  border-radius: 0 2px 2px 0;
}
.cybersoc-bg { position: absolute; inset: 0; pointer-events: none; }
.cybersoc-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,163,225,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,163,225,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cybersoc-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(39,43,95,0.5) 0%, transparent 70%);
  filter: blur(60px);
}

/* SOC visual image */
.soc-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.soc-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow: var(--glow-strong);
}
.soc-image-wrap svg { display: block; width: 100%; height: auto; }
.soc-image-text .section-header { text-align: left; margin-bottom: 24px; }
.soc-image-text .section-header .section-desc { margin: 0; }

.soc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.soc-feature {
  background: rgba(99,163,225,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
}
.soc-feature:hover {
  border-color: var(--border-blue);
  background: rgba(99,163,225,0.05);
  transform: translateY(-2px);
}
.soc-feature-icon { width: 48px; height: 48px; color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; }
.soc-feature-icon svg { width: 48px; height: 48px; }
.soc-feature h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 8px;
  color: #fff;
}
.soc-feature p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* â”€â”€ Plans â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.plans-section { position: relative; }
.plans-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: #fff;
}
.plans-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 56px;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { border-color: var(--border-blue); transform: translateY(-4px); box-shadow: var(--glow); }
.plan-card--featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, rgba(99,163,225,0.10) 0%, var(--bg-card) 60%);
  box-shadow: var(--glow);
}
.plan-card--enterprise {
  border-color: rgba(252,211,77,0.4);
  background: linear-gradient(160deg, rgba(252,211,77,0.06) 0%, var(--bg-card) 60%);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--bg-0);
  background: var(--blue);
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-badge--gold { background: #FCD34D; color: #1a1400; }
.plan-header { display: flex; flex-direction: column; gap: 6px; }
.plan-num {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); font-weight: 700;
}
.plan-tier {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: #fff;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.plan-price .plan-cents { font-size: 1rem; }
.plan-price .plan-per { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-body); letter-spacing: 0; }
.plan-icon { color: var(--blue); }
.plan-icon svg { width: 34px; height: 34px; }
.plan-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: var(--text-muted); line-height: 1.4; }
.check { color: #4ADE80; font-weight: 700; flex-shrink: 0; }
.cross { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.feat-no { opacity: 0.45; }
.feat-addon { font-size: 0.78rem !important; color: rgba(99,163,225,0.6) !important; }

/* Plan price display */
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; padding: 14px 0 14px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plan-price-amount { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.04em; color: #fff; line-height: 1; }
.plan-price-cents { font-size: 1.2rem; }
.plan-price-period { font-size: 0.78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* Plan button variants */
.btn-plan--gold {
  background: linear-gradient(84deg, #FCD34D, #f59e0b) !important;
  color: #1a1400 !important;
  border-color: transparent !important;
}
.btn-plan--gold:hover { filter: brightness(1.1); }

/* â”€â”€ Plans comparison table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.plans-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.plans-table-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 20px 28px 16px;
  border-bottom: 1px solid var(--border);
}
.plans-table-scroll { overflow-x: auto; }
.plans-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}
.plans-table th {
  padding: 12px 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.plans-table th:first-child { text-align: left; }
.plans-table .th-featured {
  background: rgba(99,163,225,0.08);
  color: var(--blue);
  border-left: 1px solid rgba(99,163,225,0.2);
  border-right: 1px solid rgba(99,163,225,0.2);
}
.plans-table td {
  padding: 10px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.plans-table td:first-child { text-align: left; color: rgba(255,255,255,0.75); font-weight: 500; }
.plans-table .td-featured {
  background: rgba(99,163,225,0.04);
  border-left: 1px solid rgba(99,163,225,0.12);
  border-right: 1px solid rgba(99,163,225,0.12);
}
.plans-table .td-yes { color: #4ADE80; font-weight: 600; }
.plans-table .td-no { color: rgba(255,255,255,0.2); }
.plans-table .td-addon { color: var(--blue); font-size: 0.78rem; }
.plans-table .tr-price td {
  background: rgba(99,163,225,0.06);
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid var(--border);
}
.plans-table .tr-price .td-featured { background: rgba(99,163,225,0.12); color: var(--blue); }
.plans-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.plans-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 12px 28px;
  border-top: 1px solid var(--border);
  opacity: 0.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   OTHER SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.other-services { padding: 100px 0; min-height: 100vh; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; }

/* Hacking visual */
.hacking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.hacking-text .section-header { text-align: left; margin-bottom: 0; }
.hacking-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(99,163,225,0.15);
  box-shadow: 0 0 40px rgba(99,163,225,0.12);
}
.hacking-image-wrap svg { display: block; width: 100%; height: auto; }

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.other-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  transition: var(--transition);
}
.other-card:hover { border-color: var(--border-blue); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.other-card-icon { flex-shrink: 0; width: 52px; height: 52px; color: var(--blue); display: flex; align-items: flex-start; padding-top: 2px; }
.other-card-icon svg { width: 50px; height: 50px; }
.other-card-body { flex: 1; }
.other-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}
.other-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.other-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.other-tags span {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--dim);
  border: 1px solid var(--border-blue);
  padding: 3px 10px; border-radius: 100px;
}
.other-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.other-card-link:hover { color: var(--blue-light); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PARTNERS TICKER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* ── Case study cards ── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }
.case-mini-wrap {
  border: 1px solid rgba(255,77,109,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,77,109,0.04);
  padding: 36px 40px;
}
.case-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF4D6D;
  margin-bottom: 20px;
}
.case-mini-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.case-mini-sector {
  font-size: 0.8rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.case-mini-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.case-mini-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 540px;
}
.case-mini-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FF4D6D;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.case-mini-link:hover { opacity: 0.75; }
.case-mini-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 160px;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.case-stat { display: flex; flex-direction: column; gap: 3px; }
.case-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  line-height: 1;
}
.case-stat-label {
  font-size: 0.73rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .case-mini-grid { grid-template-columns: 1fr; }
  .case-mini-stats { flex-direction: row; flex-wrap: wrap; border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
  .case-mini-wrap { padding: 24px 20px; }
}

/* Secondary services (Tier 2) */
.secondary-services { margin-top: 40px; }
.secondary-services-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.secondary-services-label::before,
.secondary-services-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.secondary-services-label span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* More services compact strip */
.more-services-strip {
  padding: 32px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.more-services-strip .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.more-services-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
.more-services-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.more-services-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.more-services-links a:hover { color: var(--blue-light); }
.ms-dot { color: var(--border-blue); font-size: 1.1rem; line-height: 1; }

.partners-section {
  padding: 44px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.partners-track { overflow: hidden; position: relative; }
.partners-track::before,
.partners-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
}
.partners-track::before { left: 0; background: linear-gradient(to right, var(--bg-1), transparent); }
.partners-track::after { right: 0; background: linear-gradient(to left, var(--bg-1), transparent); }
.partners-inner { display: flex; animation: ticker 30s linear infinite; width: max-content; }
.partner-item {
  padding: 0 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.3s;
}
.partner-item:hover { color: var(--text-muted); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT / NOSOTROS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-section {
  padding: 100px 0;
  min-height: 100vh;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Brand gradient background accent on right side */
.about-section::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(270deg, rgba(99,163,225,0.07) 0%, transparent 100%);
  pointer-events: none;
}
.about-section::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brand-gradient-v);
  border-radius: 2px 0 0 2px;
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content .section-header { text-align: left; margin-bottom: 20px; }
.about-text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.about-values { margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text-muted); }
.value-item strong { color: var(--text); }
.value-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

.about-visual { display: flex; flex-direction: column; gap: 20px; position: relative; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: var(--transition);
}
.about-stat:hover { border-color: var(--border-blue); transform: translateY(-2px); }
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-number span { font-size: 1.4rem; }
.about-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.about-certs { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.certs-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.cert-badge {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
}
.cert-badge:hover { border-color: var(--border-blue); transform: translateX(4px); }
.cert-icon { color: var(--blue); font-size: 0.5rem; margin-top: 5px; flex-shrink: 0; }
.cert-info { display: flex; flex-direction: column; gap: 2px; }
.cert-info strong { font-size: 0.82rem; color: var(--text); font-weight: 600; }
.cert-info span { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }

.about-countries {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.countries-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 12px; }
.countries-list { display: flex; gap: 8px; flex-wrap: wrap; }
.country-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  background: rgba(99,163,225,0.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px;
}
.flag { font-size: 1rem; }
.flag-img {
    width: 20px !important; height: 15px !important;
    border-radius: 0 !important;
    vertical-align: middle;
    margin-right: 6px;
    object-fit: cover;
    box-shadow: none !important;
    display: inline-block;
  }

.about-deco {
  position: absolute; top: -20px; right: -20px;
  width: 140px; height: 140px;
  opacity: 0.4; pointer-events: none;
  animation: spin-slow 30s linear infinite;
}
.deco-svg { width: 100%; height: 100%; }
@keyframes spin-slow { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* WhatsApp CTA in contact section */
.contact-whatsapp-cta {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 24px;
  background: rgba(37, 211, 102, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.18);
  border-radius: var(--radius-lg);
}
.contact-whatsapp-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact-divider span {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-section { position: relative; padding: 100px 0; min-height: 100vh; background: var(--bg-2); overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.contact-bg { position: absolute; inset: 0; pointer-events: none; }
.contact-glow {
  position: absolute; bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(39,43,95,0.4) 0%, transparent 70%);
  filter: blur(80px);
}

.contact-layout { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 3px; }
.contact-item span { font-size: 0.92rem; color: var(--text); }
.contact-social { display: flex; gap: 10px; padding-top: 6px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.83rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--dim); }
.social-btn--wa { flex-wrap: nowrap; }
.social-btn--wa:hover { border-color: #25D366 !important; color: #25D366 !important; background: rgba(37,211,102,0.08) !important; }
.contact-social { flex-wrap: wrap; }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  font-size: 0.9rem; font-family: var(--font);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(99,163,225,0.1);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239197A4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--text-muted); }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); flex-shrink: 0; }
.form-success {
  display: none; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 18px;
  background: rgba(99,163,225,0.05); border: 1px solid var(--border-blue); border-radius: 10px;
}
.form-success.show { display: flex; }
.form-success p { color: var(--blue); font-weight: 500; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer { background: var(--bg-0); border-top: 1px solid var(--border); }
.footer-top { padding: 60px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand { max-width: 260px; }
.footer-logo { margin-bottom: 14px; display: inline-flex; }
.footer-logo-img { height: 62px; width: auto; }
.footer-tagline { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--blue); color: var(--blue); background: var(--dim); }
/* WhatsApp hover green */
.footer-social a[aria-label*="WhatsApp"]:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.08); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.88rem; color: var(--text-faint);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-cert { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.cert-badge {
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--blue);
  background: var(--dim);
  border: 1px solid var(--border-blue);
  padding: 4px 10px; border-radius: 6px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-faint);
  flex-wrap: wrap; gap: 10px;
}
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links a,
.footer-links button { font-size: 0.8rem; color: var(--text-faint); }
.footer-links a:hover,
.footer-links button:hover { color: var(--text); text-decoration: none; }
.sep { color: var(--text-faint); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRIVACY MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 700px; width: 100%;
  max-height: 85vh; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer; transition: var(--transition); z-index: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.modal-content {
  padding: 36px; overflow-y: auto; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--border-blue) transparent;
}
.modal-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; letter-spacing: 0.06em; margin-bottom: 4px; color: #fff; }
.modal-date { font-size: 0.78rem; color: var(--text-faint); margin-bottom: 28px; }
.modal-content h3 { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.08em; font-weight: 400; color: var(--blue); margin: 22px 0 8px; }
.modal-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 10px; }
.modal-content ul { list-style: disc; padding-left: 18px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
.modal-content ul li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.modal-content strong { color: var(--text); }
.modal-content .btn { margin-top: 20px; }

/* â”€â”€â”€ Side section dot navigation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
  padding: 12px 6px;
  background: rgba(13,17,56,0.55);
  border: 1px solid rgba(99,163,225,0.12);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(99,163,225,0.25);
  border: 1px solid rgba(99,163,225,0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: block;
}
.s-dot::before {
  content: attr(title);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,17,56,0.95);
  border: 1px solid rgba(99,163,225,0.25);
  color: #e2e8f0;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.62rem;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.s-dot:hover::before { opacity: 1; }
.s-dot:hover {
  background: rgba(99,163,225,0.5);
  border-color: var(--blue);
  box-shadow: 0 0 10px rgba(99,163,225,0.35);
  transform: scale(1.3);
}
.s-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 14px rgba(255,77,109,0.7);
  height: 22px;
  border-radius: 4px;
}

/* â”€â”€â”€ Section structural improvements â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Ensure .container fills section height */
.services-overview > .container,
.cybersoc-section > .container,
.about-section > .container,
.contact-section > .container {
  width: 100%;
}

/* Section label accent line */
.section-header {
  position: relative;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE DETAIL SECTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-detail-section {
  padding: 90px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.svc-detail-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0.45;
}
.svc-detail-alt { background: var(--bg-2); }

.svc-detail-inner { display: flex; flex-direction: column; gap: 52px; }

.svc-detail-header { max-width: 680px; }
.svc-detail-header .section-title { margin-top: 10px; margin-bottom: 14px; }
.svc-detail-header .section-desc { font-size: 1.05rem; line-height: 1.75; }

.svc-detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.svc-sub-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}
.svc-sub-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Process steps */
.svc-process { display: flex; flex-direction: column; gap: 0; }
.svc-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.svc-step:last-child { border-bottom: none; }
.svc-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
  opacity: 0.4;
  min-width: 36px;
  line-height: 1;
  margin-top: 2px;
}
.svc-step-content { display: flex; flex-direction: column; gap: 4px; }
.svc-step-content strong { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.svc-step-content span { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* Benefits list */
.svc-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.svc-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
}
.svc-benefit:hover { border-color: rgba(99,163,225,0.3); background: var(--dim); }
.svc-benefit-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(99,163,225,0.12);
  border: 1px solid rgba(99,163,225,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--blue);
  margin-top: 1px;
}
.svc-benefit > div { display: flex; flex-direction: column; gap: 3px; }
.svc-benefit strong { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.svc-benefit span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* Phases (IR) */
.svc-phases { display: flex; flex-direction: column; gap: 0; }
.svc-phase {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.svc-phase:last-child { border-bottom: none; }
.phase-badge {
  min-width: 32px; height: 32px;
  background: var(--brand-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; color: #fff;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.svc-phase > div { display: flex; flex-direction: column; gap: 4px; }
.svc-phase strong { font-size: 0.93rem; font-weight: 600; color: var(--text); }
.svc-phase p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Included cards */
.svc-inc-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.svc-inc-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}
.svc-inc-card:hover { border-color: rgba(99,163,225,0.35); }
.svc-inc-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(99,163,225,0.1);
  border: 1px solid rgba(99,163,225,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.svc-inc-icon svg { width: 18px; height: 18px; }
.svc-inc-card > div { display: flex; flex-direction: column; gap: 4px; }
.svc-inc-card strong { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.svc-inc-card span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* Tech grid */
.svc-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.svc-tech-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.svc-tech-item span:last-child { font-size: 0.78rem; color: var(--text-muted); }
.svc-tech-badge {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(99,163,225,0.1);
  border: 1px solid rgba(99,163,225,0.2);
  padding: 2px 8px; border-radius: 4px;
  display: inline-block; width: fit-content;
}

/* Highlight box */
.svc-highlight-box {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 16px;
  background: rgba(99,163,225,0.05);
  border: 1px solid rgba(99,163,225,0.2);
  border-radius: 10px;
  font-size: 0.84rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.svc-highlight-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--blue);
}
.svc-highlight-sep { color: var(--border); }

/* CTA button */
.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { padding-left: 0; margin-top: 40px; }
  .hero-visual-img { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .soc-features { grid-template-columns: repeat(2, 1fr); }
  .soc-image-row { grid-template-columns: 1fr; }
  .soc-image-wrap { order: -1; }
  .plans-grid { grid-template-columns: repeat(3, 1fr); }
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .hacking-row { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-social { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; max-width: 100%; }
  /* Service detail sections */
  .svc-detail-body { grid-template-columns: 1fr; gap: 32px; }
  .svc-tech-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(13,17,56,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; padding: 18px 24px 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link, .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .soc-features { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .other-grid { grid-template-columns: 1fr; }
  .secondary-grid { grid-template-columns: 1fr; }
  .more-services-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-social { grid-column: unset; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { width: calc(50% - 10px); padding: 0 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 2rem; }
  .service-card { flex-direction: column; }
  .other-card { flex-direction: column; }
  .contact-form { padding: 24px 18px; }
  /* Service detail mobile */
  .svc-tech-grid { grid-template-columns: 1fr; }
  .svc-detail-section { padding: 60px 0; }
  .svc-highlight-box { flex-direction: column; align-items: flex-start; gap: 6px; }
}

